:root {
    --primary-blue: #0052ff;
    --dark-blue: #001a4d;
    --text-white: #ffffff;
    --text-muted: #d1d5db;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section with Your Background Image */
.hero {
   
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    padding-bottom: 120px;
}

/* Navbar */
.navbar { padding: 30px 0; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { color: white; text-decoration: none; opacity: 0.8; transition: 0.3s; }
.nav-links a:hover { opacity: 1; }

/* Branding Header */
.branding { text-align: center; padding: 20px 0 40px; }
.branding .logo-icon { font-size: 3.5rem; margin-bottom: 5px; }
.branding h1 { font-size: 4.5rem; letter-spacing: 3px; text-transform: uppercase; margin: 0; line-height: 1; }
.branding .tagline { font-size: 0.85rem; letter-spacing: 5px; opacity: 0.9; margin-top: 10px; }

/* Hero Layout */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    gap: 50px;
}

.hero-text { flex: 1; }
.hero-text h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; font-weight: 700; }
.hero-text p { font-size: 1.2rem; margin-bottom: 35px; color: var(--text-muted); max-width: 520px; }

/* Buttons */
.cta-group { display: flex; gap: 20px; }
.btn { padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: 0.3s; border: 2px solid transparent; }
.btn-primary { background: var(--primary-blue); color: white; }
.btn-primary:hover { background: #0044d6; transform: translateY(-2px); }
.btn-outline { border-color: white; color: white; }
.btn-outline:hover { background: white; color: var(--dark-blue); }

/* Phone Image Container */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.phone-final-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(30px 50px 60px rgba(0,0,0,0.5));
    transform: rotate(-2deg); 
}

/* Wave Background Transition */
.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: ellipse(75% 100% at 50% 100%);
}

/* Features Section */
.features { text-align: center; }
.features h3 { font-size: 2.2rem; margin-bottom: 60px; color: var(--dark-blue); font-weight: 700; }

/* Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    padding: 40px 30px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--card-shadow);
    transition: 0.4s ease;
    border: 1px solid #f8f8f8;
}

.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.card .icon {
    width: 60px;
    height: 60px;
    background: #0052ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s ease;
    color: #fff;
}

.card .icon i { color: var(--primary-blue); width: 28px; }
.card:hover .icon { background: var(--primary-blue); }
.card:hover .icon i { color: white; }

.card h4 { margin-bottom: 15px; color: var(--dark-blue); font-size: 1.25rem; }
.card p { color: #666; font-size: 0.95rem; }

/* Trust & Stats */
.trust-element { margin-top: 40px; }

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f4f7ff;
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 50px;
}

.trust-icon {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.trust-icon i { color: var(--primary-blue); width: 18px; }
.trust-badge p { font-size: 0.9rem; font-weight: 500; color: #555; }

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat strong { display: block; font-size: 1.8rem; color: var(--dark-blue); }
.stat span { color: #888; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text p { margin: 0 auto 35px; }
    .cta-group { justify-content: center; }
    .hero-image-container { justify-content: center; }
    .branding h1 { font-size: 3rem; }
    .stats-bar { gap: 40px; flex-wrap: wrap; }
}

/* Unified Social Proof Bar */
.social-proof-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8faff;
    padding: 20px 40px;
    border-radius: 100px; /* Capsule shape */
    margin-top: 80px;
    border: 1px solid #edf2ff;
}

/* Left side: Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 82, 255, 0.1);
}

.trust-icon i {
    color: var(--primary-blue);
    width: 20px;
}

.trust-badge p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    max-width: 250px;
    text-align: left;
    line-height: 1.3;
}

/* Right side: Stats Group */
.stats-group {
    display: flex;
    gap: 60px;
    padding-left: 40px;
    border-left: 2px solid #e2e8f0; /* Divider line */
}

.stat {
    text-align: left;
}

.stat strong {
    display: block;
    font-size: 1.4rem;
    color: var(--dark-blue);
    line-height: 1.2;
}

.stat span {
    color: #888;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive: Stack them on mobile */
@media (max-width: 992px) {
    .social-proof-bar {
        flex-direction: column;
        border-radius: 24px;
        padding: 30px;
        gap: 30px;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
    }

    .trust-badge p {
        text-align: center;
    }

    .stats-group {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding-left: 0;
        padding-top: 30px;
        width: 100%;
        justify-content: center;
        gap: 30px;
    }
    
    .stat {
        text-align: center;
    }
}

/* About Section Base */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Image is slightly wider than text */
    align-items: center;
    gap: 80px;
	margin-bottom: 30px;
}

/* Image Styling */
.about-image-wrapper {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about-image {
    width: 100%;
    height: 550px;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03); /* Subtle zoom effect */
}

/* Content Styling */
.about-heading {
    font-size: 3rem;
    color: #111;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-divider {
    width: 50px;
    height: 2px;
    background-color: #0052ff; /* Light blue/teal divider */
    margin-bottom: 35px;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Teal Button */
.btn-teal {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0052ff; /* Teal color from image */
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: #2e8282;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(61, 165, 165, 0.2);
}

/* Floating Scroll Top */
.floating-top {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 45px;
    height: 45px;
    background-color: #3da5a5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 50px;
    }
    
    .about-heading {
        font-size: 2.2rem;
    }
    
    .about-image-wrapper {
        order: -1; /* Keep image on top for mobile */
    }
}

/* Final App Download Section Styling */
.download-app-hero {
    /* Full-screen background using your provided interior image */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('../images/bg.jpg');
    background-size: cover;
    background-position: center center;
    color: white; /* Ensures readability against the dimmed background */
    
    /* Breathing room */
    padding: 100px 0 150px 0; /* extra padding on bottom for the phone tilt */
    position: relative;
    overflow: hidden; /* prevents phone from creating horizontal scroll */
}

/* Grid Layout for the Content */
.download-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* splits 50/50 left and right */
    align-items: center; /* vertically centers text against image */
    gap: 60px;
}

/* 1. Left Column: Text & Icons */
.download-content {
    max-width: 550px;
}

.download-content .section-heading {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

/* Matching the divider style from the original hero */
.download-content .heading-divider {
    width: 60px;
    height: 3px;
    background-color: white; /* light divider against the dark image */
    margin-bottom: 30px;
}

.download-content .section-paragraph {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #fff; /* use a slightly faded color for body text */
}

/* The Store Icons Container */
.store-icons-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.store-link img {
    height: 45px; /* Sets a standard height for the store badges */
    width: auto;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); /* grounded depth */
}

.store-link img:hover {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.4));
}

/* 2. Right Column: The Phone Image */
.download-image-container {
    display: flex;
    justify-content: flex-end; /* right-align the image in its column */
    position: relative;
    z-index: 2;
}

/* Reusing and slightly increasing the specific phone styles from earlier */
.download-app-hero .phone-final-image {
    width: 100%;
    max-width: 440px; /* matched to the previous scale */
    height: auto;
    filter: drop-shadow(40px 60px 70px rgba(0,0,0,0.6)); /* deeper shadow for PNG */
    transform: rotate(2deg) translateY(20px); /* consistent tilt from original image */
    transition: transform 0.4s ease;
}

.download-app-hero .phone-final-image:hover {
    transform: rotate(1deg) translateY(10px);
}

/* Responsive Tweak for Mobile */
@media (max-width: 992px) {
    .download-app-grid {
        grid-template-columns: 1fr; /* stack content vertically */
        text-align: center; /* center all elements */
        gap: 50px;
    }
    
    .download-content { margin: 0 auto; }
    .download-content .section-heading { font-size: 2.2rem; }
    .download-content .heading-divider { margin: 0 auto 30px auto; }
    
    .store-icons-wrapper { justify-content: center; }
    
    .download-image-container { justify-content: center; }
    .download-app-hero .phone-final-image {
        transform: rotate(0deg) translateY(0); /* remove tilt on mobile for clarity */
        max-width: 300px; /* downscale phone for smaller screens */
    }
}

/* Footer Styles */
.main-footer {
    background-color: #1a1a1a; /* Dark gray background */
    color: #ffffff;
    padding: 80px 0 30px 0;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 1fr; /* Custom widths for columns */
    gap: 40px;
    margin-bottom: 60px;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
}

.footer-text {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-list i {
    width: 18px;
    height: 18px;
    color: #3da5a5; /* Teal accent from your "About" button */
    margin-top: 3px;
}

/* Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3da5a5;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: #fff;
    background: #333;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: #3da5a5;
}

.footer-social i {
    width: 18px;
    height: 18px;
}

/* Subscribe Form */
.footer-subscribe {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-subscribe input {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    outline: none;
}

.footer-subscribe button {
    padding: 12px;
    background-color: #3da5a5;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-subscribe button:hover {
    background-color: #2e8282;
}

/* Copyright Bar */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact-list li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Video Hero Styles */
.video-hero {
    padding: 100px 0;
    background-color: #fbfaf8; /* Match your About section background */
    text-align: center;
}

.video-content {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.video-heading {
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 15px;
    font-weight: 700;
}

.video-subtext {
    font-size: 1.2rem;
    color: #555;
}

/* Responsive Video Container */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-img h1{
    font-size: 45px;
    text-align: center;
}