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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#102a43;
    background:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* ================= TOP MARQUEE ================= */

.top-marquee{
    background:#073b6d;
    color:#fff;
    height:38px;
    overflow:hidden;
    display:flex;
    align-items:center;
    white-space:nowrap;
}

.marquee-content{
    display:inline-flex;
    animation:marquee 22s linear infinite;
}

.marquee-content span{
    margin-right:70px;
    font-size:14px;
    font-weight:500;
}

.marquee-content strong{
    color:#51d5ff;
}

@keyframes marquee{
    0%{transform:translateX(0);}
    100%{transform:translateX(-50%);}
}

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

header{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 18px rgba(0,0,0,.08);
}

.navbar{
    max-width:1200px;
    margin:auto;
    height:90px;
    padding:8px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    height:72px;
    width:auto;
}

.header-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.phone-box{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}

.phone-label{
    color:#777;
    font-size:11px;
}

.phone-number{
    color:#073b6d;
    font-size:17px;
    font-weight:700;
}

.call-btn{
    background:linear-gradient(135deg,#09aeea,#0875c9);
    color:#fff;
    padding:13px 23px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 7px 18px rgba(0,145,220,.25);
    transition:.3s;
}

.call-btn:hover{
    transform:translateY(-3px);
}

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

.hero{
    height:580px;
    position:relative;
    overflow:hidden;
    background:#063c70;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transform:scale(1.08);
    transition:opacity 1s ease, transform 6s ease;
    background-size:cover;
    background-position:center;
}

.slide.active{
    opacity:1;
    transform:scale(1);
}

.slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(2,35,68,.92) 0%,
        rgba(3,63,108,.75) 43%,
        rgba(0,0,0,.15) 100%
    );
}

.slide-content{
    position:relative;
    z-index:2;
    max-width:1200px;
    height:100%;
    margin:auto;
    padding:100px 25px;
    color:#fff;
    display:flex;
    align-items:center;
}

.hero-text{
    max-width:650px;
    animation:heroText .9s ease;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.35);
    padding:8px 17px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:20px;
    backdrop-filter:blur(5px);
}

.hero h1{
    font-size:52px;
    line-height:1.13;
    margin-bottom:20px;
    font-weight:800;
}

.hero h1 span{
    color:#48d8ff;
}

.hero p{
    font-size:17px;
    line-height:1.8;
    color:#e8f7ff;
    margin-bottom:30px;
}

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

.btn-primary,
.btn-secondary{
    padding:14px 26px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#12b9ed;
    color:#fff;
}

.btn-secondary{
    border:1px solid #fff;
    color:#fff;
    background:rgba(255,255,255,.08);
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px);
}

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

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    cursor:pointer;

    transition:.3s;
}

.dot.active{
    width:28px;
    border-radius:20px;
    background:#48d8ff;
}

@keyframes heroText{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= TRUST STRIP ================= */

.trust-strip{
    max-width:1100px;
    margin:-45px auto 0;
    position:relative;
    z-index:20;
    background:#fff;
    border-radius:15px;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:25px;
}

.trust-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    border-right:1px solid #eee;
}

.trust-item:last-child{
    border-right:none;
}

.trust-icon{
    font-size:30px;
}

.trust-item strong{
    display:block;
    color:#073b6d;
    font-size:14px;
}

.trust-item small{
    color:#777;
}

/* ================= COMMON ================= */

section{
    padding:90px 20px;
}

.container{
    max-width:1150px;
    margin:auto;
}

.section-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.section-heading span{
    color:#0aa9e7;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.section-heading h2{
    color:#073b6d;
    font-size:38px;
    line-height:1.25;
    margin:10px 0 15px;
}

.section-heading p{
    color:#687b8c;
    line-height:1.8;
}

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

.about{
    background:#f5fbfe;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:65px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    height:470px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,65,110,.18);
}

.experience{
    position:absolute;
    right:-20px;
    bottom:25px;
    background:#073b6d;
    color:#fff;
    padding:20px 25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.experience strong{
    font-size:30px;
    color:#52d7ff;
    display:block;
}

.about-content h2{
    font-size:38px;
    color:#073b6d;
    margin-bottom:20px;
}

.about-content p{
    color:#647888;
    line-height:1.9;
    margin-bottom:18px;
}

.check-list{
    list-style:none;
    margin:25px 0;
}

.check-list li{
    margin:13px 0;
    font-weight:500;
}

.check-list li::before{
    content:"✓";
    background:#0bb4e8;
    color:#fff;
    border-radius:50%;
    width:24px;
    height:24px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-right:10px;
}

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

.services{
    background:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    border:1px solid #e6eef3;
    box-shadow:0 8px 25px rgba(0,50,80,.07);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,80,120,.15);
}

.service-image{
    height:220px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-info{
    padding:22px;
}

.service-info h3{
    color:#073b6d;
    font-size:19px;
    margin-bottom:10px;
}

.service-info p{
    font-size:13px;
    color:#718391;
    line-height:1.7;
    margin-bottom:18px;
}

.service-actions{
    display:flex;
    gap:9px;
}

.service-actions a,
.service-actions button{
    flex:1;
    padding:11px 8px;
    border-radius:8px;
    text-align:center;
    border:none;
    cursor:pointer;
    font-family:inherit;
    font-size:13px;
    font-weight:600;

}

.service-call{
    background:#073b6d;
    color:#fff;
}

.enquiry-btn{
    background:#dff7ff;
    color:#008cc5;
}

/* ================= PROCESS ================= */

.process{
    background:#f5fbfe;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.process-card{
    text-align:center;
    background:#fff;
    padding:30px 20px;
    border-radius:18px;
    position:relative;
    box-shadow:0 8px 25px rgba(0,50,80,.06);
}

.process-number{
    width:55px;
    height:55px;
    background:linear-gradient(135deg,#06aee8,#073b6d);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    font-size:20px;
    font-weight:700;
}

.process-card h3{
    font-size:17px;
    color:#073b6d;
    margin-bottom:10px;
}

.process-card p{
    font-size:13px;
    color:#718391;
    line-height:1.6;
}

/* ================= WHY US ================= */

.why-us{
    background:#073b6d;
    color:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.why-us .section-heading{
    text-align:left;
    margin:0 0 30px;
}

.why-us .section-heading h2{
    color:#fff;
}

.why-us .section-heading p{
    color:#cce6f4;
}

.why-image img{
    height:430px;
    width:100%;
    object-fit:cover;
    border-radius:25px;
}

.why-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.why-point{
    padding:20px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
}

.why-point b{
    display:block;
    color:#52d7ff;
    margin-bottom:6px;
}

.why-point span{
    font-size:13px;
    color:#d3eaf4;
}

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

.cta{
    padding:65px 20px;
    background:linear-gradient(135deg,#08aee8,#073b6d);
    text-align:center;
    color:#fff;
}

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

.cta p{
    color:#e2f7ff;
    margin-bottom:25px;
}

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

.faq{
    background:#f8fcfe;
}

.faq-container{
    max-width:850px;
    margin:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:12px;
    border:1px solid #e4edf2;
    border-radius:12px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-family:inherit;
    font-size:15px;
    font-weight:600;
    color:#073b6d;
    cursor:pointer;
    text-align:left;
}

.faq-question span{
    font-size:22px;
    color:#0aa9e7;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
}

.faq-answer p{
    padding:0 20px 20px;
    color:#6c7e8c;
    font-size:14px;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

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

.contact{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.contact-box{
    padding:35px;
    border-radius:20px;
    background:#f4fbfe;
}

.contact-box h3{
    color:#073b6d;
    margin-bottom:22px;
}

.contact-detail{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.contact-detail .icon{
    min-width:42px;
    height:42px;
    border-radius:50%;
    background:#dff7ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-detail strong{
    display:block;
    color:#073b6d;
    font-size:14px;
}

.contact-detail p,
.contact-detail a{
    color:#718391;
    font-size:13px;
    line-height:1.6;
}

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

footer{
    background:#052b50;
    color:#c5d9e7;
    padding:55px 20px 20px;
}

.footer-grid{
    max-width:1150px;
    margin:auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    width:230px;
    background:#fff;
    padding:5px;
    border-radius:8px;
    margin-bottom:18px;
}

footer h3{
    color:#fff;
    margin-bottom:18px;
}

footer p,
footer a{
    color:#abc3d3;
    font-size:13px;
    line-height:1.9;
}

.footer-links{
    list-style:none;
}

.footer-links li{
    margin:8px 0;
}

.footer-links a:hover{
    color:#4bd7ff;
}

.copyright{
    max-width:1150px;
    margin:40px auto 0;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.12);
    text-align:center;
    font-size:12px;
}

/* ================= POPUP ================= */

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,20,40,.72);
    backdrop-filter:blur(5px);
    z-index:2000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.modal.show{
    display:flex;
}

.modal-box{
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    position:relative;
    animation:modalIn .35s ease;
}

@keyframes modalIn{
    from{
        opacity:0;
        transform:translateY(30px) scale(.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.close-modal{
    position:absolute;
    top:12px;
    right:15px;
    border:none;
    background:#edf7fb;
    width:35px;
    height:35px;
    border-radius:50%;
    font-size:22px;
    color:#073b6d;
    cursor:pointer;
}

.modal-box h2{
    color:#073b6d;
    margin-bottom:6px;
}

.modal-box>p{
    color:#789;
    font-size:13px;
    margin-bottom:22px;
}

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

.form-group label{
    display:block;
    color:#073b6d;
    font-size:12px;
    font-weight:600;
    margin-bottom:6px;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid #dce9ef;
    padding:12px 13px;
    border-radius:8px;
    outline:none;
    font-family:inherit;
    font-size:13px;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#0aafe8;
}

.form-group textarea{
    height:80px;
    resize:none;
}

.submit-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:9px;
    background:linear-gradient(135deg,#0bb4e8,#073b6d);
    color:#fff;
    font-family:inherit;
    font-weight:600;
    cursor:pointer;
}

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

.whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.2);
    z-index:1000;
}

.mobile-call{
    position:fixed;
    left:20px;
    bottom:20px;
    background:#073b6d;
    color:#fff;
    padding:13px 20px;
    border-radius:50px;
    z-index:1000;
    font-size:13px;
    font-weight:600;
    box-shadow:0 8px 25px rgba(0,0,0,.2);
}

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

@media(max-width:900px){

    .hero{
        height:600px;
    }

    .hero h1{
        font-size:40px;
    }

    .trust-strip{
        margin:0 20px;
        grid-template-columns:1fr 1fr;
    }

    .trust-item{
        padding:12px;
        border-right:none;
    }

    .about-grid,
    .why-grid,
    .contact-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .service-grid{
        grid-template-columns:1fr 1fr;
    }

    .process-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){

    .top-marquee{
        height:34px;
    }

    .marquee-content span{
        font-size:11px;
    }

    .navbar{
        height:75px;
        padding:7px 12px;
    }

    .logo{
        height:55px;
        max-width:190px;
    }

    .phone-box{
        display:none;
    }

    .call-btn{
        padding:10px 15px;
        font-size:12px;
    }

    .hero{
        height:590px;
    }

    .slide-content{
        padding:70px 20px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:14px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .btn-primary,
    .btn-secondary{
        padding:12px 21px;
    }

    .trust-strip{
        grid-template-columns:1fr 1fr;
        padding:15px;
    }

    .trust-icon{
        font-size:22px;
    }

    .trust-item strong{
        font-size:11px;
    }

    .trust-item small{
        font-size:9px;
    }

    section{
        padding:65px 16px;
    }

    .section-heading h2,
    .about-content h2{
        font-size:29px;
    }

    .about-image img{
        height:330px;
    }

    .experience{
        right:10px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .service-image{
        height:210px;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

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

    .why-image img{
        height:300px;
    }

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

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .mobile-call{
        bottom:15px;
        left:12px;
        font-size:11px;
        padding:11px 15px;
    }

    .whatsapp{
        right:12px;
        bottom:15px;
    }
}

/* ================= VIDEO GALLERY ================= */

.gallery-section{
    background:#f5fbfe;
    padding:80px 20px;
    overflow:hidden;
}

.video-gallery{
    max-width:1100px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.video-card{
    width:100%;
    aspect-ratio:9 / 16;

    background:#071f35;

    border-radius:18px;
    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,50,80,.14);

    transition:.35s;
}

.video-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,50,80,.20);
}

.video-card video{
    width:100%;
    height:100%;

    display:block;

    /*
       IMPORTANT:
       9:16 video poori dikhegi
       crop nahi hogi
    */
    object-fit:contain;

    background:#071f35;
}


/* TABLET */

@media(max-width:900px){

    .video-gallery{
        grid-template-columns:repeat(2,1fr);
        max-width:650px;
    }

}


/* MOBILE */

@media(max-width:600px){

    .gallery-section{
        padding:60px 15px;
    }

    .video-gallery{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .video-card{
        border-radius:13px;
    }

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

.hero{
    position:relative;
    width:100%;
    height:650px;
    overflow:hidden;
    background:#062b4d;
}


/* SLIDES */

.hero-slide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    background-size:cover;
    background-position:center;

    opacity:0;
    visibility:hidden;

    transform:scale(1.04);

    transition:
        opacity .9s ease,
        transform 5s ease,
        visibility .9s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    transform:scale(1);
}


/* DARK OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(3,28,53,.88) 0%,
            rgba(3,35,62,.68) 42%,
            rgba(3,35,62,.15) 75%,
            rgba(3,35,62,.05) 100%
        );
}


/* CONTENT */

.hero-container{
    position:relative;
    z-index:2;

    width:100%;
    max-width:1200px;

    height:100%;

    margin:auto;

    display:flex;
    align-items:center;

    padding:0 35px;
}


.hero-content{
    max-width:650px;

    color:#fff;

    animation:heroContent .8s ease;
}


@keyframes heroContent{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/* TAG */

.hero-tag{
    display:inline-block;

    padding:10px 17px;

    margin-bottom:20px;

    border-radius:30px;

    background:rgba(255,255,255,.14);

    border:1px solid rgba(255,255,255,.28);

    backdrop-filter:blur(8px);

    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
}


/* HEADING */

.hero-content h1{
    margin:0 0 18px;

    font-size:58px;
    line-height:1.08;

    font-weight:800;

    letter-spacing:-1.5px;
}


.hero-content h1 span{
    display:block;

    color:#36bdf2;
}


/* PARAGRAPH */

.hero-content p{
    max-width:590px;

    margin:0 0 30px;

    font-size:18px;
    line-height:1.7;

    color:rgba(255,255,255,.9);
}


/* BUTTONS */

.hero-buttons{
    display:flex;
    align-items:center;
    gap:14px;
}


.btn-primary,
.btn-secondary{
    min-height:52px;

    padding:0 25px;

    border-radius:9px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    font-size:15px;
    font-weight:700;

    text-decoration:none;

    cursor:pointer;

    border:none;

    transition:.3s;
}


.btn-primary{
    background:#fff;
    color:#063b68;

    box-shadow:0 8px 25px rgba(0,0,0,.15);
}


.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}


.btn-secondary{
    color:#fff;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.5);

    backdrop-filter:blur(8px);
}


.btn-secondary:hover{
    background:#fff;
    color:#063b68;

    transform:translateY(-3px);
}


/* ================= ARROWS ================= */

.hero-arrow{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    z-index:5;

    width:48px;
    height:48px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.4);

    background:rgba(0,35,65,.35);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    backdrop-filter:blur(8px);

    transition:.3s;
}


.hero-arrow:hover{
    background:#fff;
    color:#063b68;

    transform:translateY(-50%) scale(1.08);
}


.hero-prev{
    left:25px;
}


.hero-next{
    right:25px;
}


/* ================= DOTS ================= */

.hero-dots{
    position:absolute;

    z-index:5;

    left:50%;
    bottom:28px;

    transform:translateX(-50%);

    display:flex;
    gap:9px;
}


.hero-dot{
    width:30px;
    height:4px;

    border-radius:10px;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:.4s;
}


.hero-dot.active{
    width:55px;
    background:#fff;
}


/* ================= TABLET ================= */

@media(max-width:900px){

    .hero{
        height:580px;
    }

    .hero-content{
        max-width:560px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-arrow{
        width:42px;
        height:42px;
    }

}


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

@media(max-width:600px){

    .hero{
        height:650px;
        min-height:650px;
    }


    .hero-slide{

        /*
        Mobile par image ka important
        portion center mein rahega
        */

        background-position:center center;

    }


    .hero-overlay{

        background:
            linear-gradient(
                180deg,
                rgba(2,27,50,.28) 0%,
                rgba(2,27,50,.58) 45%,
                rgba(2,27,50,.94) 100%
            );

    }


    .hero-container{

        align-items:flex-end;

        padding:0 20px 75px;

    }


    .hero-content{

        width:100%;
        max-width:100%;

        text-align:left;

    }


    .hero-tag{

        font-size:10px;

        padding:8px 12px;

        margin-bottom:13px;

    }


    .hero-content h1{

        font-size:35px;

        line-height:1.12;

        letter-spacing:-.5px;

        margin-bottom:13px;

    }


    .hero-content p{

        font-size:14px;

        line-height:1.55;

        margin-bottom:20px;

    }


    .hero-buttons{

        width:100%;

        gap:9px;

    }


    .btn-primary,
    .btn-secondary{

        min-height:46px;

        padding:0 15px;

        font-size:13px;

        flex:1;

        white-space:nowrap;

    }


    .hero-arrow{

        top:45%;

        width:36px;
        height:36px;

        font-size:15px;

    }


    .hero-prev{
        left:10px;
    }


    .hero-next{
        right:10px;
    }


    .hero-dots{

        bottom:25px;

    }


    .hero-dot{
        width:20px;
    }


    .hero-dot.active{
        width:38px;
    }

}

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

.image-hero{
    position:relative;
    width:100%;
    height:600px;
    overflow:hidden;
    background:#eef8fc;
}


/* SLIDE */

.image-slide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    opacity:0;
    visibility:hidden;

    transform:scale(1.03);

    transition:
        opacity .8s ease,
        transform 5s ease,
        visibility .8s ease;
}

.image-slide.active{
    opacity:1;
    visibility:visible;
    transform:scale(1);
}


/* IMAGE */

.image-slide img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;
}


/* ARROWS */

.image-arrow{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    z-index:10;

    width:45px;
    height:45px;

    border:none;
    border-radius:50%;

    background:rgba(0,45,80,.45);
    color:#fff;

    font-size:20px;

    cursor:pointer;

    backdrop-filter:blur(6px);

    transition:.3s;
}

.image-arrow:hover{
    background:#fff;
    color:#06416d;

    transform:translateY(-50%) scale(1.08);
}

.image-prev{
    left:22px;
}

.image-next{
    right:22px;
}


/* DOTS */

.image-dots{
    position:absolute;

    bottom:22px;
    left:50%;

    transform:translateX(-50%);

    z-index:10;

    display:flex;
    gap:8px;
}

.image-dot{
    width:28px;
    height:4px;

    border-radius:10px;

    background:rgba(255,255,255,.6);

    cursor:pointer;

    transition:.35s;
}

.image-dot.active{
    width:50px;
    background:#fff;
}


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

@media(max-width:600px){

    .image-hero{
        height:320px;
        min-height:320px;
        max-height:320px;
    }

    .image-slide img{
        width:100%;
        height:320px;

        object-fit:cover;
        object-position:center;
    }

    .image-arrow{
        width:34px;
        height:34px;

        font-size:15px;
    }

    .image-prev{
        left:10px;
    }

    .image-next{
        right:10px;
    }

    .image-dots{
        bottom:14px;
    }

    .image-dot{
        width:18px;
        height:3px;
    }

    .image-dot.active{
        width:32px;
    }

}
/* =========================================
   FINAL MOBILE HERO FIX
========================================= */

@media (max-width: 600px) {

    .image-hero {
        position: relative !important;
        width: 100% !important;
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
        background: #000 !important;
    }


    .image-slide {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 320px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }


    .image-slide img {
        display: block !important;

        width: 100% !important;
        height: 320px !important;

        margin: 0 !important;
        padding: 0 !important;

        /*
        Banner ko poori 320px height fill karega
        */
        object-fit: cover !important;
        object-position: center !important;
    }


    /* ARROWS */

    .image-arrow {
        width: 36px !important;
        height: 36px !important;

        top: 50% !important;

        margin: 0 !important;
    }


    .image-prev {
        left: 10px !important;
    }


    .image-next {
        right: 10px !important;
    }


    /* DOTS */

    .image-dots {
        bottom: 12px !important;

        margin: 0 !important;
        padding: 0 !important;
    }

}
@media (max-width: 600px){

    .image-hero{
        width:100% !important;
        height:255px !important;
        min-height:255px !important;
        max-height:255px !important;

        margin:0 !important;
        padding:0 !important;

        overflow:hidden !important;
    }

    .image-slide{
        position:absolute !important;
        inset:0 !important;

        width:100% !important;
        height:320px !important;

        margin:0 !important;
        padding:0 !important;
    }

    .image-slide img{
        width:100% !important;
        height:320px !important;

        display:block !important;

        margin:0 !important;
        padding:0 !important;

        /*
        IMPORTANT:
        Puri image dikhegi.
        Kuch bhi crop nahi hoga.
        */
        object-fit:fill !important;
    }

}