/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f8fafc;
    color:#222;
    line-height:1.6;
}

/* NAVBAR */
nav{
     position:sticky;
    top:0;
    z-index:1000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:100px;
    padding:0 50px;
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.logo img{

    height:80px;

    width:auto;

    display:block;

    object-fit:contain;

}

nav ul{
    display:flex;
    gap:28px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:600;
}

nav ul li a:hover{
    color:#2952cc;
}

.quote-btn{
    background:#2952cc;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:10px;
    font-weight:bold;
}

.quote-btn:hover{
    background:#1d43b8;
}

/* HERO */
.hero{
    position:relative;
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
}

.slider,
.slide{
    position:absolute;
    inset:0;
}

.slide{
    opacity:0;
    transition:opacity 1s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:relative;
    z-index:2;
    background:rgba(0,0,0,.45);
    width:100%;
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
    max-width:800px;
    padding:20px;
}

.hero-content h1{
    font-size:58px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

button{
    border:none;
    cursor:pointer;
    padding:14px 28px;
    border-radius:10px;
    background:#2952cc;
    color:#fff;
    font-weight:bold;
}

button:hover{
    background:#1d43b8;
}

/* COMMON */
section{
    padding:80px 30px;
}

h2{
    text-align:center;
    margin-bottom:20px;
    font-size:40px;
}

.service-container,
.why-container,
.testimonial-container,
.pricing-container,
.stats{
    max-width:1200px;
    margin:auto;
}

/* CARDS */
.service-container,
.why-container,
.testimonial-container,
.pricing-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card,
.why-card,
.testimonial-card,
.pricing-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover,
.why-card:hover,
.testimonial-card:hover,
.pricing-card:hover{
    transform:translateY(-6px);
}

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    text-align:center;
}

.stat-box{
    background:#2952cc;
    color:#fff;
    padding:30px;
    border-radius:16px;
}

.stat-box h2{
    margin:0;
    font-size:42px;
}

/* PRICING */
.pricing-card.featured{
    border:3px solid #2952cc;
}

.pricing-card ul{
    list-style:none;
    margin:20px 0;
}

.pricing-card li{
    padding:8px 0;
}

/* CONTACT */
form{
    max-width:700px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:8px;
    margin-bottom:16px;
}

/* FOOTER */
.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:40px 20px;
    text-align:center;
}

.footer-bottom{
    max-width:1200px;
    margin:auto;
}

/* FLOATS */
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:28px;
}

#topBtn{
    display:none;
    position:fixed;
    right:20px;
    bottom:95px;
    width:52px;
    height:52px;
    border-radius:50%;
}

/* ===========================
   MOBILE NAVBAR
=========================== */

.hamburger{
    display:none;
}

@media (max-width:768px){

    nav{

        display:flex;

        justify-content:space-between;

        align-items:center;

        padding:12px 20px;

        height:80px;

        position:relative;

    }

    .logo-wrapper{

        width:auto;

        display:flex;

        align-items:center;

    }

    .logo-wrapper img{

        width:50px;

        height:50px;

    }

    .brand-text h1{

        font-size:22px;

    }

    .solutions-line h2{

        font-size:9px;

    }

    

    /* Hamburger button */

    .hamburger{

        display:block;

        background:none;

        border:none;

        font-size:34px;

        cursor:pointer;

        color:#111;

    }

    /* Hide menu initially */

    #nav-links{

        position:fixed;

        top:0;

        right:-100%;

        width:75%;

        height:100vh;

        background:#fff;

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        gap:30px;

        transition:0.35s;

        box-shadow:-5px 0 20px rgba(0,0,0,.15);

        z-index:999;

    }

    /* Show menu */

    #nav-links.active{

        right:0;

    }

    /* Hide desktop button */

    .desktop-btn{

        display:none;

    }

    /* Show mobile button */

    .mobile-cta{

        display:block;

    }

}
/* ========================================= */
/* ABOUT PAGE */
/* ========================================= */

.about-section{

    max-width:1200px;

    margin:auto;

    padding:80px 30px;

}

.about-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(400px,1fr));

    gap:50px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 8px 25px rgba(0,0,0,0.15);

}

.about-text h2{

    font-size:42px;

    color:#0f172a;

    margin-bottom:20px;

}

.about-text p{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:18px;

}

.about-features{

    margin-top:30px;

}

.about-features li{

    list-style:none;

    margin-bottom:15px;

    font-size:18px;

    color:#333;

    font-weight:500;

}

.about-features li::before{

    content:"✔";

    color:#16a34a;

    margin-right:12px;

    font-weight:bold;

}

/* ========================================= */
/* MISSION & VISION */
/* ========================================= */

.mission-section{

    background:#f1f5f9;

    padding:80px 30px;

}

.mission-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.mission-card{

    background:white;

    padding:35px;

    border-radius:18px;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

    transition:0.3s;

}

.mission-card:hover{

    transform:translateY(-8px);

}

.mission-card h3{

    color:#2952cc;

    margin-bottom:15px;

    font-size:28px;

}

.mission-card p{

    color:#555;

    line-height:1.8;

}

/* ========================================= */
/* WHY CHOOSE US */
/* ========================================= */

.choose-section{

    padding:80px 30px;

}

.choose-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.choose-box{

    background:white;

    padding:30px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

    transition:.3s;

}

.choose-box:hover{

    transform:translateY(-6px);

}

.choose-box h4{

    color:#2952cc;

    margin:15px 0;

    font-size:22px;

}

.choose-box p{

    color:#666;

}

/* ========================================= */
/* ABOUT CTA */
/* ========================================= */

.about-cta{

    background:#2952cc;

    color:white;

    text-align:center;

    padding:80px 20px;

}

.about-cta h2{

    color:white;

    margin-bottom:20px;

}

.about-cta p{

    font-size:18px;

    margin-bottom:30px;

}

.about-cta button{

    background:white;

    color:#2952cc;

    padding:15px 35px;

    border:none;

    border-radius:10px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;

}

.about-cta button:hover{

    background:#e5e7eb;

}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:768px){

    .about-text h2{

        font-size:32px;

    }

    .about-text p{

        font-size:16px;

    }

}
 css
/* ========================================= */
/* ABOUT SECTION */
/* ========================================= */

.about-section{

    padding:100px 8%;

    background:#ffffff;

}

.about-container{

    max-width:1300px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    flex-wrap:wrap;

}

.about-text{

    flex:1;

    min-width:420px;

}

.section-badge{

    display:inline-block;

    background:#edf4ff;

    color:#2952cc;

    padding:10px 20px;

    border-radius:30px;

    font-size:15px;

    font-weight:bold;

    margin-bottom:25px;

}

.about-text h2{

    font-size:52px;

    line-height:1.2;

    color:#111827;

    margin-bottom:25px;

}

.about-text h2 span{

    color:#2952cc;

}

.about-text p{

    color:#555;

    font-size:18px;

    line-height:1.9;

    margin-bottom:18px;

}

.about-features{

    margin-top:30px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.feature-box{

    background:#f8fafc;

    padding:18px;

    border-radius:12px;

    font-weight:600;

    box-shadow:0 4px 10px rgba(0,0,0,.05);

}

.about-image{

    flex:1;

    text-align:center;

}

.about-image img{

    width:100%;

    max-width:560px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

@media(max-width:900px){

    .about-container{

        flex-direction:column-reverse;

    }

    .about-text{

        min-width:100%;

    }

    .about-text h2{

        font-size:38px;

    }

    .about-features{

        grid-template-columns:1fr;

    }

}
 
/* ========================================= */
/* SERVICES SECTION */
/* ========================================= */

.services{

     padding:90px 0;

    background:#f8fbff;

}

.services-header{

    text-align:center;

    margin-bottom:70px;

}

.services-header span{

    display:inline-block;

    background:#eaf1ff;

    color:#2952cc;

    padding:10px 22px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:18px;

}

.services-header h2{

    font-size:48px;

    color:#0f172a;

    margin-bottom:15px;

}

.services-header p{

    font-size:18px;

    color:#64748b;

    max-width:700px;

    margin:auto;

}

.service-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

}

.card{

    background:#ffffff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 10px 35px rgba(0,0,0,0.08);

    transition:0.35s;

    position:relative;

    overflow:hidden;

}

.card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#2952cc;

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 18px 45px rgba(41,82,204,.18);

}

.card h3{

    font-size:28px;

    color:#0f172a;

    margin-bottom:18px;

}

.card p{

    color:#64748b;

    font-size:17px;

    line-height:1.8;

    margin-bottom:25px;

}

.card button{

    background:#2952cc;

    color:white;

    border:none;

    padding:14px 28px;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;

}

.card button:hover{

    background:#163db8;

    transform:scale(1.05);

}

@media(max-width:768px){

    .services{

        padding:70px 5%;

    }

    .services-header h2{

        font-size:34px;

    }

    .service-container{

        grid-template-columns:1fr;

    }

}
/* ========================================= */
/* CONTACT PAGE */
/* ========================================= */

.contact-section{

    min-height:100vh;

    background:linear-gradient(135deg,#081225,#16284d);

    padding:80px 8%;

}

.contact-container{

    max-width:1400px;

    margin:auto;

    display:flex;

    gap:60px;

    align-items:center;

    justify-content:space-between;

    flex-wrap:wrap;

}

/* LEFT */

.contact-left{

    flex:1;

    min-width:420px;

    color:white;

}

.contact-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 22px;

    border-radius:30px;

    margin-bottom:25px;

    font-weight:600;

}

.contact-left h1{

    font-size:56px;

    line-height:1.2;

    margin-bottom:20px;

}

.contact-left h1 span{

    color:#ffbe0b;

}

.contact-left p{

    color:#d6d6d6;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

.contact-list{

    margin-bottom:40px;

}

.contact-list div{

    margin-bottom:18px;

    font-size:18px;

}

.contact-info{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.info-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    padding:18px 24px;

    border-radius:14px;

    min-width:220px;

}

.info-card h4{

    color:white;

    margin-bottom:8px;

}

/* RIGHT */

.contact-right{

    flex:1;

    min-width:420px;

}

.contact-form{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.contact-form h2{

    text-align:center;

    margin-bottom:30px;

    color:#0f172a;

}

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group.full{

    grid-column:1/3;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:15px;

    border:1px solid #d8d8d8;

    border-radius:10px;

    font-size:16px;

    margin-top:8px;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    width:100%;

    margin-top:25px;

    padding:16px;

    border:none;

    border-radius:10px;

    background:#2952cc;

    color:white;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#163db8;

}

@media(max-width:900px){

    .contact-container{

        flex-direction:column;

    }

    .contact-left h1{

        font-size:40px;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

    .form-group.full{

        grid-column:auto;

    }

}
/* ========================================= */
/* STATS SECTION */
/* ========================================= */

.stats-section{

    background:linear-gradient(90deg,#071326,#102d66);

    padding:45px 8%;

}

.stats-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-item{

    text-align:center;

    position:relative;

}

.stat-item:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-15px;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:55px;

    background:rgba(255,255,255,.18);

}

.stat-item h2{

    color:#ffffff;

    font-size:46px;

    font-weight:700;

    margin-bottom:10px;

}

.stat-item p{

    color:#c7d2fe;

    font-size:16px;

    letter-spacing:.3px;

}

/* Mobile */

@media(max-width:768px){

    .stats-container{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

    .stat-item::after{

        display:none;

    }

    .stat-item h2{

        font-size:34px;

    }

}
/* ========================================= */
/* PROCESS SECTION */
/* ========================================= */

.process-section{

    padding:100px 8%;

    background:#ffffff;

}

.process-header{

    text-align:center;

    margin-bottom:70px;

}

.process-header span{

    display:inline-block;

    background:#eef3ff;

    color:#2952cc;

    padding:10px 20px;

    border-radius:30px;

    font-weight:bold;

    margin-bottom:20px;

}

.process-header h2{

    font-size:48px;

    color:#111827;

    margin-bottom:15px;

}

.process-header h2 span{

    color:#2952cc;

}

.process-header p{

    color:#64748b;

    max-width:650px;

    margin:auto;

}

.process-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.process-card{

    position:relative;

    background:white;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.3s;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(41,82,204,.15);

}

.step-number{

    position:absolute;

    top:20px;

    left:20px;

    font-size:42px;

    font-weight:bold;

    color:#edf2f7;

}

.step-icon{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:25px;

    background:#eef4ff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.process-card h3{

    margin-bottom:15px;

    color:#0f172a;

}

.process-card p{

    color:#64748b;

    line-height:1.8;

}

@media(max-width:768px){

    .process-header h2{

        font-size:34px;

    }

}
 css
/* ============================== */
/* SUCCESS POPUP */
/* ============================== */

.success-modal{

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.6);

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.success-popup{

    background:#fff;

    padding:40px;

    border-radius:20px;

    max-width:450px;

    width:90%;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.success-icon{

    font-size:70px;

    margin-bottom:15px;

}

.success-popup h2{

    color:#16a34a;

    margin-bottom:15px;

}

.success-popup p{

    color:#555;

    font-size:18px;

    line-height:1.8;

}

.success-popup button{

    margin-top:25px;

    padding:14px 30px;

    background:#2952cc;

    color:white;

    border:none;

    border-radius:10px;

    cursor:pointer;

}
/* ========================================= */
/* SUCCESS PAGE */
/* ========================================= */

.success-section{

    min-height:80vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#eef4ff,#ffffff);

    padding:60px 20px;

}

.success-card{

    max-width:700px;

    width:100%;

    background:#ffffff;

    padding:60px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.success-icon{

    font-size:90px;

    margin-bottom:20px;

}

.success-card h1{

    font-size:52px;

    color:#16a34a;

    margin-bottom:15px;

}

.success-card h3{

    color:#0f172a;

    margin-bottom:25px;

}

.success-card p{

    color:#555;

    font-size:20px;

    line-height:1.8;

}

.success-buttons{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.success-buttons button{

    padding:15px 30px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-size:17px;

    font-weight:bold;

    transition:.3s;

}

.home-btn{

    background:#2952cc;

    color:white;

}

.home-btn:hover{

    background:#163db8;

}

.contact-btn{

    background:#16a34a;

    color:white;

}

.contact-btn:hover{

    background:#12833b;

}
 /* ================================= */
/* LOGO */
/* ================================= */

.logo-wrapper{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

}

.logo-wrapper img{

    width:70px;

    height:70px;

    object-fit:contain;

}

.brand-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.brand-text h1{

    margin:0;

    padding:0;

    font-size:34px;

    line-height:1;

    font-weight:900;

    letter-spacing:1px;

}

.brand-text .blue{

    color:#0A2F73;

}

.brand-text .green{

    color:#4CAF1D;

}

.solutions-line{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:2px;

}

.solutions-line .line{

    width:42px;

    height:2px;

    background:#444;

    opacity:.5;

}

.solutions-line h2{

    margin:0;

    font-size:13px;

    letter-spacing:7px;

    color:#2b2b2b;

    font-weight:600;

}

.brand-text p{

    margin-top:5px;

    font-size:8px;

    letter-spacing:1.3px;

    color:#555;

    font-weight:600;

    text-transform:uppercase;

}
/* ========================================= */
/* ABOUT SECTION BADGE */
/* ========================================= */

.section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    margin-bottom:20px;

    background:linear-gradient(135deg,#eef5ff,#f7fbff);

    border:1px solid rgba(41,82,204,0.15);

    border-radius:50px;

    color:#2952cc;

    font-size:15px;

    font-weight:700;

    letter-spacing:0.3px;

    box-shadow:0 6px 20px rgba(41,82,204,0.08);

}
/* ========================================= */
/* ABOUT FEATURE CARDS */
/* ========================================= */

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;

}

.feature-box{

    background:#ffffff;

    border:1px solid #e8eef5;

    border-radius:18px;

    padding:22px 25px;

    display:flex;

    align-items:center;

    gap:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:.3s ease;

}

.feature-box:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(41,82,204,.12);

}

.feature-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

.feature-content h3{

    margin:0;

    font-size:28px;

    font-weight:800;

    color:#0b2c66;

}

.feature-content p{

    margin-top:4px;

    margin-bottom:0;

    font-size:16px;

    color:#555;

    line-height:1.5;

}
.plan-type{

    display:inline-block;

    background:#eef4ff;

    color:#2f56d6;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    margin-bottom:15px;

    text-transform:uppercase;

}

.plan-for{

    color:#6b7280;

    font-size:16px;

    margin:10px 0 20px;

}

.price-box{

    background:#f8fafc;

    border-radius:15px;

    padding:20px;

    text-align:center;

    margin-bottom:25px;

}

.price-box small{

    display:block;

    color:#94a3b8;

    margin-bottom:8px;

}

.price-box h2{

    font-size:46px;

    font-weight:800;

    margin:0;

    color:#111827;

}

.subsidy{

    display:block;

    margin-top:10px;

    color:#16a34a;

    font-weight:700;

    font-size:18px;

}

.pricing-card ul{

    list-style:none;

    padding:0;

}

.pricing-card ul li{

    margin:12px 0;

    color:#475569;

    font-size:17px;

}

/* ===========================
   FINAL MOBILE NAVBAR
=========================== */

.hamburger{
    display:none;
}

@media (max-width:768px){

    nav{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:70px;
        padding:10px 15px;
        display:flex;
        justify-content:space-between;
        align-items:center;
        background:#fff;
        z-index:9999;
    }

    body{
        padding-top:70px;
    }

    .logo-wrapper{
        display:flex;
        align-items:center;
    }

    .logo-wrapper img{
        width:42px;
        height:42px;
    }

    .brand-text h1{
        font-size:18px;
    }

    .solutions-line h2{
        font-size:8px;
        letter-spacing:3px;
    }

    .brand-text p{
        display:none;
    }

    .hamburger{
        display:block;
        font-size:30px;
        background:none;
        border:none;
        color:#111;
        cursor:pointer;
    }

    #nav-links{
        position:fixed;
        top:70px;
        right:-100%;
        width:75%;
        height:calc(100vh - 70px);
        background:#fff;
        display:flex;
        flex-direction:column;
        justify-content:flex-start;
        align-items:center;
        gap:25px;
        padding-top:40px;
        transition:0.3s;
        box-shadow:-5px 0 20px rgba(0,0,0,.15);
    }

    #nav-links.active{
        right:0;
    }

    #nav-links li{
        list-style:none;
    }

    #nav-links a{
        text-decoration:none;
        color:#111;
        font-size:18px;
        font-weight:600;
    }
}

/* === Mobile overrides === */
@media (max-width:768px){

  body{padding-top:70px!important;}
  nav{position:fixed!important;top:0;left:0;width:100%;height:70px!important;z-index:9999;}
  .logo-wrapper img{width:34px!important;height:34px!important;}
  .brand-text h1{font-size:15px!important;}
  .solutions-line h2{font-size:7px!important;letter-spacing:2px!important;}

  .brand-text p{
      display:block !important;
      font-size:6px !important;
      letter-spacing:1px !important;
      margin-top:2px !important;
      white-space:nowrap;
  }

  .hero-content{max-width:340px!important;padding-top:40px!important;}
  .hero-content h1{font-size:28px!important;line-height:1.3!important;}
  .hero-content p{font-size:16px!important;line-height:1.6!important;}
  .hero-overlay{padding:20px!important;}
  .hero-content button,.hero-content .quote-btn{width:85%;}

}
/* ========================================= */
/* CONTACT PAGE MOBILE FIX */
/* ========================================= */

.contact-left,
.contact-right{
    flex:1;
    min-width:0;
}

@media (max-width:900px){

    .contact-section{
        padding:40px 15px;
    }

    .contact-container{
        display:flex;
        flex-direction:column;
        gap:30px;
        width:100%;
    }

    .contact-left,
    .contact-right{
        width:100%;
        min-width:100%;
    }

    .contact-left h1{
        font-size:32px;
        line-height:1.3;
    }

    .contact-left p{
        font-size:16px;
    }

    .contact-form{
        width:100%;
        padding:25px 18px;
        border-radius:15px;
        box-sizing:border-box;
    }

    .form-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:15px;
    }

    .form-group,
    .form-group.full{
        grid-column:auto;
        width:100%;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select{
        width:100%;
        box-sizing:border-box;
    }

    .contact-info{
        flex-direction:column;
    }

    .info-card{
        width:100%;
        min-width:100%;
    }
}
/* ========================================= */
/* PAGE BANNER */
/* ========================================= */

.page-banner{
    background: linear-gradient(135deg, #071326, #2952cc);
    color: #fff;
    text-align: center;
    padding: 100px 20px 80px;
}

.page-banner h1{
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-banner p{
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

@media (max-width:768px){

    .page-banner{
        padding: 70px 15px 50px;
    }

    .page-banner h1{
        font-size: 34px;
    }

    .page-banner p{
        font-size: 16px;
    }

}
.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.hero-buttons a{
    text-decoration:none;
}

.hero-buttons button{
    min-width:230px;
    padding:15px 28px;
    border-radius:12px;
    font-size:17px;
    font-weight:700;
}

/* Mobile */
@media(max-width:768px){

    .hero-buttons{
        flex-direction:column;
        gap:18px;
    }

    .hero-buttons button{
        width:250px;
        max-width:85vw;
    }

}
/* ==============================
   CONTACT PAGE - NEW DESIGN
============================== */

.contact-hero{
    background:linear-gradient(135deg,#0b4f8a,#1282c2);
    color:#fff;
    padding:80px 20px;
}

.contact-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:center;
}

.contact-badge{
    display:inline-block;
    background:#ffffff20;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.contact-header h1{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:20px;
}

.contact-header h1 span{
    color:#ffd54f;
}

.contact-header p{
    font-size:18px;
    line-height:1.8;
    opacity:.95;
}

.contact-buttons{
    margin-top:30px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.call-btn,
.whatsapp-btn{
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.call-btn{
    background:#fff;
    color:#0b4f8a;
}

.call-btn:hover{
    transform:translateY(-3px);
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
}

.why-contact-card{
    background:#fff;
    color:#222;
    border-radius:20px;
    padding:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-contact-card h2{
    margin-bottom:20px;
}

.why-contact-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.why-contact-card li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.service-area{
    padding:70px 20px;
    background:#f8fafc;
    text-align:center;
}

.service-area h2{
    color:#0b4f8a;
    margin-bottom:20px;
}

.service-cities{
    font-size:18px;
    line-height:2;
}

.city-note{
    margin-top:20px;
    color:#555;
}

.office-section{
    padding:80px 20px;
}

.office-card{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.office-card h2{
    color:#0b4f8a;
    margin-bottom:25px;
}

.office-contact{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.contact-item{
    background:#f7f9fc;
    padding:20px;
    border-radius:15px;
}

.contact-item h3{
    margin-bottom:10px;
    color:#0b4f8a;
}

.contact-item a{
    color:#222;
    text-decoration:none;
    font-weight:600;
}

.cta-section{
    background:#0b4f8a;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cta-section h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

.cta-section p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

@media(max-width:768px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.contact-header h1{
    font-size:2.2rem;
}

.office-contact{
    grid-template-columns:1fr;
}

.contact-buttons{
    flex-direction:column;
}

.call-btn,
.whatsapp-btn{
    text-align:center;
}

}
