

/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f9ff;
    overflow-x:hidden;
    color:#0f172a;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* ================= TOPBAR ================= */

.topbar{
    width:100%;
    background:#07162f;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.topbar-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.topbar-left{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.topbar-right{
    color:#7effc7;
    font-weight:600;
}

/* ================= HEADER ================= */

header{
    width:100%;
    position:fixed;
    top:42px;
    left:0;
    z-index:999;
}

.navbar{
    width:92%;
    max-width:1400px;
    margin:auto;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(18px);
    border-radius:24px;
    padding:16px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:
    0 10px 35px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);

    position:relative;
}

/* ================= LOGO ================= */

.logo{
    display:flex;
    align-items:center;
    gap:16px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.logo-text h2{
    font-size:34px;
    line-height:1;
    font-weight:800;
    color:#108659;
}

.logo-text h2 span{
    color:#024F98;
}

.logo-text small{
    color:#64748b;
    font-size:11px;
    letter-spacing:2px;
    font-weight:600;
}

/* ================= NAVIGATION ================= */

.nav-links{
    display:flex;
    gap:34px;
}

.nav-links a{
    color:#0f172a;
    font-size:17px;
    font-weight:600;
    position:relative;
    transition:0.3s;
}

.nav-links a:hover{
    color:#10b981;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:3px;
    border-radius:20px;
    background:linear-gradient(90deg,#10b981,#2563eb);
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* ================= BUTTONS ================= */

.header-btn{
    display:flex;
    gap:14px;
}

.btn{
    padding:15px 28px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
    display:inline-block;
}

.btn-light{
    background:#eef4ff;
    color:#0f172a;
}

.btn-primary{
    background:linear-gradient(135deg,#10b981,#2563eb);
    color:#fff;
    box-shadow:0 12px 30px rgba(37,99,235,0.22);
}

.btn-primary:hover{
    transform:translateY(-4px);
}

/* ================= MOBILE MENU ================= */

.menu-toggle{
    display:none;
    width:50px;
    height:50px;
    border-radius:14px;
    background:linear-gradient(135deg,#10b981,#2563eb);
    color:#fff;
    font-size:28px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/* ================= HERO ================= */

.hero{
    min-height:115vh;
    background:
    linear-gradient(rgba(5,16,35,0.82),rgba(5,16,35,0.82)),
    url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?q=80&w=1800&auto=format&fit=crop') center/cover;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(16,185,129,0.08);
    border-radius:50%;
    top:-250px;
    right:-150px;
}

.hero::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(37,99,235,0.08);
    border-radius:50%;
    bottom:-200px;
    left:-120px;
}

.hero-content{
    width:92%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
    padding-top:190px;
}

.hero-left{
    flex:1;
    min-width:320px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 28px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:50px;
    color:#fff;
    font-size:15px;
    margin-bottom:30px;
    backdrop-filter:blur(10px);
}

.hero-left h1{
    font-size:78px;
    line-height:1.08;
    color:#fff;
    margin-bottom:28px;
    font-weight:800;
}

.hero-left h1 span{
    color:#7effc7;
}

.hero-left p{
    font-size:20px;
    line-height:2;
    color:rgba(255,255,255,0.88);
    max-width:760px;
    margin-bottom:42px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.hero-stats{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.stat-box{
    min-width:220px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
    border-radius:28px;
    padding:28px;
}

.stat-box h3{
    font-size:54px;
    color:#7effc7;
    margin-bottom:12px;
    font-weight:800;
}

.stat-box p{
    color:#fff;
    line-height:1.8;
    font-size:16px;
}

/* ================= HERO IMAGE ================= */

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    position:relative;
    min-width:320px;
}

.mobile-frame{
    width:390px;
    background:rgba(255,255,255,0.08);
    padding:18px;
    border-radius:48px;
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.1);
    box-shadow:0 35px 80px rgba(0,0,0,0.4);
    position:relative;
    z-index:2;
}

.mobile-frame img{
    border-radius:34px;
}

.floating-card{
    position:absolute;
    background:rgba(255,255,255,0.96);
    border-radius:24px;
    padding:20px 24px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
    z-index:3;
    min-width:270px;
}

.floating-card.one{
    left:-40px;
    top:120px;
}

.floating-card.two{
    right:-40px;
    bottom:90px;
}

.floating-card h4{
    font-size:22px;
    margin-bottom:8px;
}

.floating-card p{
    color:#64748b;
}

/* ================= SECTION ================= */

section{
    padding:110px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:58px;
    margin-bottom:20px;
}

.section-title p{
    max-width:850px;
    margin:auto;
    color:#64748b;
    line-height:1.9;
    font-size:18px;
}

/* ================= SERVICES ================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    width:90px;
    height:90px;
    border-radius:25px;
    background:linear-gradient(135deg,#10b981,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:#fff;
    margin-bottom:25px;
}

.service-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.service-card p{
    color:#64748b;
    line-height:1.9;
}

/* ================= HEALTH ================= */

.health{
    background:linear-gradient(135deg,#eff9ff,#ecfff5);
}

.rules-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:25px;
}

.rule-box{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 12px 35px rgba(0,0,0,0.05);
}

.rule-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.rule-number{
    width:60px;
    height:60px;
    border-radius:20px;
    background:linear-gradient(135deg,#10b981,#2563eb);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
}

.rule-box h3{
    font-size:24px;
}

.rule-box p{
    color:#64748b;
    line-height:1.9;
}

/* ================= FRANCHISE ================= */

.franchise{
    background:
    linear-gradient(rgba(5,15,30,0.85),rgba(5,15,30,0.85)),
    url('https://images.unsplash.com/photo-1516549655169-df83a0774514?q=80&w=1800&auto=format&fit=crop') center/cover fixed;
    color:#fff;
}

.franchise-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;
}

.franchise-left{
    flex:1;
    min-width:320px;
}

.franchise-left h2{
    font-size:68px;
    line-height:1.2;
    margin-bottom:25px;
}

.franchise-left p{
    font-size:19px;
    line-height:2;
    color:rgba(255,255,255,0.88);
    margin-bottom:40px;
}

.franchise-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.point{
    background:rgba(255,255,255,0.08);
    padding:22px;
    border-radius:22px;
    backdrop-filter:blur(10px);
}

.point h4{
    font-size:20px;
    margin-bottom:10px;
}

.point p{
    margin:0;
    font-size:15px;
}

.franchise-box{
    background:#fff;
    padding:45px;
    border-radius:35px;
    color:#111;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.franchise-box h3{
    font-size:38px;
    margin-bottom:20px;
}

.franchise-box ul{
    list-style:none;
    margin-bottom:35px;
}

.franchise-box ul li{
    padding:14px 0;
    border-bottom:1px solid #eef2ff;
    color:#475569;
}

/* ================= APP ================= */

.app-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.app-left{
    flex:1;
}

.app-left h2{
    font-size:60px;
    margin-bottom:25px;
}

.app-left p{
    font-size:18px;
    color:#64748b;
    line-height:2;
    margin-bottom:35px;
}

.store-btn{
    display:inline-block;
    background:#0f172a;
    color:#fff;
    padding:20px 34px;
    border-radius:22px;
    transition:0.3s;
}

.store-btn:hover{
    transform:translateY(-5px);
}

.app-phone{
    width:360px;
    background:#fff;
    padding:15px;
    border-radius:45px;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.app-phone img{
    border-radius:35px;
}

/* ================= CTA ================= */

.cta{
    background:linear-gradient(135deg,#10b981,#2563eb);
    color:#fff;
    border-radius:45px;
    padding:70px;
    text-align:center;
}

.cta h2{
    font-size:60px;
    margin-bottom:25px;
}

.cta p{
    max-width:900px;
    margin:auto auto 40px;
    line-height:2;
    font-size:19px;
}

/* ================= FOOTER ================= */

footer{
    background:#071224;
    color:#fff;
    padding:100px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:45px;
    margin-bottom:60px;
}

.footer-box h3{
    font-size:28px;
    margin-bottom:25px;
}

.footer-box p{
    color:rgba(255,255,255,0.75);
    line-height:2;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.footer-links a{
    color:rgba(255,255,255,0.75);
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:30px;
    color:rgba(255,255,255,0.55);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .menu-toggle{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:95px;
        left:0;
        width:100%;
        background:#fff;
        border-radius:24px;
        padding:25px;
        flex-direction:column;
        gap:20px;
        box-shadow:0 20px 50px rgba(0,0,0,0.12);

        opacity:0;
        visibility:hidden;
        transform:translateY(-20px);
        transition:0.4s;
    }

    .nav-links.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-links a{
        border-bottom:1px solid #eef2ff;
        padding:10px 0;
    }

    .hero-left h1{
        font-size:55px;
    }

    .franchise-left h2{
        font-size:45px;
    }

    .app-left h2{
        font-size:42px;
    }
}

@media(max-width:768px){

    header{
        top:54px;
    }

    .header-btn{
        display:none;
    }

    .hero-content{
        padding-top:160px;
    }

    .hero-left h1{
        font-size:42px;
    }

    .hero-left p{
        font-size:17px;
    }

    .section-title h2{
        font-size:36px;
    }

    .franchise-points{
        grid-template-columns:1fr;
    }

    .mobile-frame{
        width:100%;
        max-width:350px;
    }

    .floating-card{
        position:relative;
        left:auto !important;
        right:auto !important;
        top:auto !important;
        bottom:auto !important;
        margin-top:20px;
    }

    .hero-stats{
        flex-direction:column;
    }

    .cta{
        padding:45px 25px;
    }

    .cta h2{
        font-size:36px;
    }
}


/* ================= HERO ================= */

.page-hero{
    min-height:70vh;
    background:
    linear-gradient(rgba(5,16,35,0.82),rgba(5,16,35,0.82)),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=1800&auto=format&fit=crop') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding-top:160px;
}

.page-hero h1{
    font-size:80px;
    color:#fff;
    margin-bottom:25px;
    font-weight:800;
}

.page-hero p{
    max-width:900px;
    margin:auto;
    color:rgba(255,255,255,0.88);
    line-height:2;
    font-size:20px;
}

/* ================= CARD SECTION ================= */

.card-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.card-left{
    flex:1;
    min-width:320px;
}

.card-left img{
    border-radius:35px;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.card-right{
    flex:1;
    min-width:320px;
}

.card-right h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
}

.card-right p{
    font-size:18px;
    color:#64748b;
    line-height:2;
    margin-bottom:25px;
}



/* ================= BENEFITS ================= */

.benefits{
    background:linear-gradient(135deg,#eff9ff,#ecfff5);
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.benefit-box{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.4s;
}

.benefit-box:hover{
    transform:translateY(-10px);
}

.benefit-icon{
    width:90px;
    height:90px;
    border-radius:24px;
    background:linear-gradient(135deg,#10b981,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:40px;
    margin-bottom:25px;
}

.benefit-box h3{
    font-size:30px;
    margin-bottom:18px;
}

.benefit-box p{
    color:#64748b;
    line-height:1.9;
}

/* ================= PLAN ================= */

.plan-box{
    background:#fff;
    max-width:800px;
    margin:auto;
    padding:60px;
    border-radius:40px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.plan-price{
    font-size:90px;
    font-weight:800;
    color:#10b981;
    margin-bottom:15px;
}

.plan-box h3{
    font-size:42px;
    margin-bottom:20px;
}

.plan-box p{
    color:#64748b;
    line-height:2;
    margin-bottom:35px;
}

.plan-features{
    list-style:none;
    margin-bottom:40px;
}

.plan-features li{
    padding:14px 0;
    border-bottom:1px solid #eef2ff;
    color:#334155;
    font-size:17px;
}

/* ================= TERMS ================= */

.terms-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.term-box{
    background:#fff;
    padding:35px;
    border-radius:28px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.term-number{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#10b981,#2563eb);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.term-box h3{
    font-size:28px;
    margin-bottom:18px;
}

.term-box p{
    color:#64748b;
    line-height:1.9;
}
/* ================= FRANCHISE INTRO ================= */

.franchise-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.franchise-left{
    flex:1;
    min-width:320px;
}

.franchise-left img{
    border-radius:35px;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.franchise-right{
    flex:1;
    min-width:320px;
}

.franchise-right h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
}

.franchise-right p{
    font-size:18px;
    color:#64748b;
    line-height:2;
    margin-bottom:25px;
}

/* ================= MODEL ================= */

.model-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.model-box{
    background:#fff;
    border-radius:30px;
    padding:45px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.model-box h3{
    font-size:34px;
    margin-bottom:18px;
}

.model-price{
    font-size:58px;
    font-weight:800;
    color:#10b981;
    margin-bottom:20px;
}


.model-box p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:25px;
}

.model-box ul{
    list-style:none;
    margin-bottom:35px;
}

.model-box ul li{
    padding:12px 0;
    border-bottom:1px solid #eef2ff;
    color:#334155;
}

/* ================= SUPPORT ================= */

.support{
    background:
    linear-gradient(rgba(5,15,30,0.88),rgba(5,15,30,0.88)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=1800&auto=format&fit=crop') center/cover fixed;
    color:#fff;
}

.support-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.support-box{
    background:rgba(255,255,255,0.08);
    padding:40px;
    border-radius:30px;
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.08);
}

.support-box h3{
    font-size:30px;
    margin-bottom:20px;
}

.support-box p{
    line-height:1.9;
    color:rgba(255,255,255,0.82);
}

/* ================= FORM ================= */

.form-section{
    background:linear-gradient(135deg,#eff9ff,#ecfff5);
}

.form-wrapper{
    max-width:850px;
    margin:auto;
    background:#fff;
    padding:60px;
    border-radius:40px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.form-control{
    width:100%;
    padding:18px 20px;
    border-radius:18px;
    border:1px solid #dbeafe;
    font-size:16px;
    font-family:'Poppins',sans-serif;
    outline:none;
}

textarea.form-control{
    resize:none;
    height:140px;
}


/* ================= APP SECTION ================= */

.app-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.app-left{
    flex:1;
    min-width:320px;
}

.app-left h2{
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
}

.app-left p{
    font-size:18px;
    color:#64748b;
    line-height:2;
    margin-bottom:30px;
}

.app-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:35px;
}

.app-right{
    flex:1;
    display:flex;
    justify-content:center;
    min-width:320px;
}

.mobile-frame{
    width:380px;
    background:#fff;
    padding:18px;
    border-radius:45px;
    box-shadow:0 30px 70px rgba(0,0,0,0.12);
}

.mobile-frame img{
    border-radius:32px;
}

/* ================= FEATURES ================= */

.features{
    background:linear-gradient(135deg,#eff9ff,#ecfff5);
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.feature-box{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.4s;
}

.feature-box:hover{
    transform:translateY(-10px);
}

.feature-icon{
    width:90px;
    height:90px;
    border-radius:24px;
    background:linear-gradient(135deg,#10b981,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:40px;
    margin-bottom:25px;
}

.feature-box h3{
    font-size:30px;
    margin-bottom:18px;
}

.feature-box p{
    color:#64748b;
    line-height:1.9;
}

/* ================= SCREENSHOTS ================= */

.screenshot-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.screenshot-box{
    background:#fff;
    border-radius:35px;
    padding:18px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.screenshot-box img{
    border-radius:25px;
}

/* ================= QR SECTION ================= */

.qr-section{
    background:
    linear-gradient(rgba(5,15,30,0.88),rgba(5,15,30,0.88)),
    url('https://images.unsplash.com/photo-1556740749-887f6717d7e4?q=80&w=1800&auto=format&fit=crop') center/cover fixed;
    color:#fff;
}

.qr-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.qr-left{
    flex:1;
    min-width:320px;
}

.qr-left h2{
    font-size:60px;
    margin-bottom:25px;
}

.qr-left p{
    font-size:19px;
    line-height:2;
    color:rgba(255,255,255,0.82);
    margin-bottom:35px;
}

.qr-box{
    width:280px;
    height:280px;
    background:#fff;
    border-radius:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.qr-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}



/* ================= CONTACT ================= */

.contact-wrapper{
    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.contact-left{
    flex:1;
    min-width:320px;
}

.contact-right{
    flex:1;
    min-width:320px;
}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    margin-bottom:25px;
}

.contact-icon{
    width:80px;
    height:80px;
    border-radius:24px;
    background:linear-gradient(135deg,#10b981,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:35px;
    margin-bottom:22px;
}

.contact-card h3{
    font-size:30px;
    margin-bottom:15px;
}

.contact-card p{
    color:#64748b;
    line-height:1.9;
}

/* ================= FORM ================= */

.form-wrapper{
    background:#fff;
    padding:50px;
    border-radius:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.form-control{
    width:100%;
    padding:18px 20px;
    border-radius:18px;
    border:1px solid #dbeafe;
    outline:none;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

textarea.form-control{
    height:150px;
    resize:none;
}

/* ================= MAP ================= */

.map-section{
    background:linear-gradient(135deg,#eff9ff,#ecfff5);
}

.map-box{
    width:100%;
    height:500px;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

/* ================= FAQ ================= */

.faq-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.faq-box{
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.faq-box h3{
    font-size:28px;
    margin-bottom:18px;
}

.faq-box p{
    color:#64748b;
    line-height:1.9;
}


/* ================= ABOUT ================= */

.about-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.about-left{
    flex:1;
    min-width:320px;
}

.about-left img{
    border-radius:35px;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.about-right{
    flex:1;
    min-width:320px;
}

.about-right h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
}

.about-right p{
    font-size:18px;
    color:#64748b;
    line-height:2;
    margin-bottom:25px;
}

/* ================= VISION ================= */

.vision{
    background:linear-gradient(135deg,#eff9ff,#ecfff5);
}

.vision-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.vision-box{
    background:#fff;
    padding:45px;
    border-radius:32px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.4s;
}

.vision-box:hover{
    transform:translateY(-10px);
}

.vision-icon{
    width:90px;
    height:90px;
    border-radius:25px;
    background:linear-gradient(135deg,#10b981,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:40px;
    margin-bottom:25px;
}

.vision-box h3{
    font-size:32px;
    margin-bottom:18px;
}

.vision-box p{
    color:#64748b;
    line-height:1.9;
}

/* ================= STATS ================= */

.stats{
    background:
    linear-gradient(rgba(5,15,30,0.88),rgba(5,15,30,0.88)),
    url('https://images.unsplash.com/photo-1580281657527-47c2f2d2b5d7?q=80&w=1800&auto=format&fit=crop') center/cover fixed;
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.stat-box{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border-radius:30px;
    padding:45px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
}

.stat-box h3{
    font-size:68px;
    color:#7effc7;
    margin-bottom:12px;
    font-weight:800;
}

.stat-box p{
    font-size:18px;
    line-height:1.8;
}

/* ================= WHY CHOOSE ================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-box{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.4s;
}

.why-box:hover{
    transform:translateY(-10px);
}

.why-number{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#10b981,#2563eb);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.why-box h3{
    font-size:28px;
    margin-bottom:18px;
}

.why-box p{
    color:#64748b;
    line-height:1.9;
}


.hero-slider{
position:relative;
height:100vh;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
visibility:hidden;
transition:1s;
}

.slide.active{
opacity:1;
visibility:visible;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
transform:scale(1.1);
animation:zoom 8s linear infinite;
}

@keyframes zoom{
0%{transform:scale(1);}
100%{transform:scale(1.12);}
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:
linear-gradient(
90deg,
rgba(0,0,0,.8),
rgba(0,0,0,.5)
);
}

.content{
position:absolute;
top:50%;
left:10%;
transform:translateY(-50%);
max-width:700px;
z-index:10;
color:white;
}

.content span{
display:inline-block;
background:#10b981;
padding:10px 20px;
border-radius:50px;
font-size:13px;
font-weight:700;
margin-bottom:20px;
}

.content h1{
font-size:72px;
font-weight:800;
line-height:1.1;
margin-bottom:25px;
}

.content p{
font-size:20px;
line-height:1.8;
margin-bottom:35px;
}

.hero-btns{
display:flex;
gap:15px;
}

#prev,
#next{
position:absolute;
top:50%;
transform:translateY(-50%);
width:60px;
height:60px;
border:none;
border-radius:50%;
background:white;
cursor:pointer;
font-size:24px;
z-index:20;
}

#prev{
left:30px;
}

#next{
right:30px;
}

.dots{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
z-index:20;
}

.dot{
width:14px;
height:14px;
border-radius:50%;
background:white;
opacity:.4;
cursor:pointer;
}

.dot.active{
opacity:1;
background:#10b981;
}

.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    opacity:0;
    visibility:hidden;
    transition:all 1s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:5;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}
