
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Zen Maru Gothic',sans-serif;
    background:#ffffff;
}

/* HEADER */

.header{
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    z-index:9999;
}

.header-inner{
    width:min(1400px,94%);
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo{
    width:95px;
    height:95px;
    object-fit:contain;
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-text h2{
    color:#000000;
    font-size:26px;
    font-weight:900;
    line-height:1;
}

.brand-text span{
    color:#000000;
    font-size:11px;
    letter-spacing:3px;
    margin-top:5px;
}

/* NAVBAR */

.navbar{
    background:#222;
    border-radius:6px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    color:#fff;
    text-decoration:none;
    padding:22px 18px;
    display:flex;
    align-items:center;
    font-size:14px;
    font-weight:700;
    transition:.3s;
    border-radius:6px;
}

.nav-links li a:hover{
    color:#f3b14f;
}

.nav-links > li:first-child > a{
    background:#333;
}

/* MEGA MENU */

.mega-menu{
    position:absolute;
    top:100%;
    left:0;

    width:720px;
    background:#fff;

    display:flex;
    gap:40px;

    padding:25px;

    border-radius:0 0 6px 6px;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:.35s;
}

.mega-item:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.small-menu{
    width:280px;
}

.mega-links{
    display:flex;
    flex-direction:column;
    min-width:250px;
}

.mega-links a{
    color:#333 !important;
    padding:8px 0 !important;
    font-size:15px !important;
}

.mega-links a:hover{
    color:#d78c17 !important;
}

.mega-image img{
    width:290px;
    height:230px;
    object-fit:cover;
    border-radius:5px;
}

/* SEARCH SVG */

.search-icon svg{
    width:20px;
    height:20px;
}

/* HAMBURGER — desktop pe hidden */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    padding:4px;
    flex-direction:column;
    gap:6px;
}

.menu-toggle span{
    display:block;
    width:28px;
    height:3px;
    background:#000000;
    transition:.35s;
    transform-origin:center;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* MOBILE SEARCH — desktop pe hidden */

.mobile-search-btn{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
    color:#000000;
    align-items:center;
}

.mobile-search-btn svg{
    width:22px;
    height:22px;
    display:block;
}

/* MOBILE CONTROLS WRAPPER — desktop pe hidden */

.mobile-controls{
    display:none;
    align-items:center;
    gap:6px;
}



/* ============================================
   MOBILE — max 991px
   ============================================ */

@media(max-width:991px){

    /* Header bar */
    .header{
        top:0;
        padding:10px 0;
        /* background:rgba(0,0,0,.9); */
    }

    /* Brand text hide — sirf logo */
    .brand-text{
        display:none;
    }

    .logo{
        width:70px;
        height:70px;
    }

    /* Right side controls dikhao */
    .mobile-controls{
        display:flex;
    }
    .mobile-search-btn{
        display:flex;
    }
    .menu-toggle{
        display:flex;
    }

    /* Desktop navbar hide karo — 
       mobile pe #mobile-nav use hoga */
    .navbar{
        display:none;
    }

}

/* ============================================
   MOBILE NAV PANEL — completely separate element
   body ka direct child, koi nesting nahi
   ============================================ */

#mobile-nav{
    display:none; /* JS se control hoga */
    position:fixed;
    top:70px;
    left:3%;
    right:3%;
    z-index:9998;

    background:#222;
    border-radius:8px;
    box-shadow:0 8px 30px rgba(0,0,0,.4);

    /* Scrollable agar content zyada ho */
    max-height:calc(100vh - 90px);
    overflow-y:auto;
}

#mobile-nav.open{
    display:block;
}

#mobile-nav ul{
    list-style:none;
    padding:0;
    margin:0;
}

#mobile-nav ul li{
    border-bottom:1px solid #333;
}

#mobile-nav ul li:last-child{
    border-bottom:none;
}

/* Nav link */
#mobile-nav ul li > a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#fff;
    text-decoration:none;
    padding:16px 20px;
    font-size:14px;
    font-weight:700;
    transition:color .2s;
}

#mobile-nav ul li > a:hover{
    color:#f3b14f;
}

/* Chevron */
#mobile-nav .has-mega > a::after{
    content:'▾';
    font-size:14px;
    color:#888;
    transition:transform .3s;
    display:inline-block;
}

#mobile-nav .has-mega.open > a::after{
    transform:rotate(180deg);
    color:#f3b14f;
}

/* Mega dropdown inside mobile nav */
#mobile-nav .mob-mega{
    display:none;
    background:#1a1a1a;
    border-top:1px solid #333;
}

#mobile-nav .has-mega.open .mob-mega{
    display:block;
}

#mobile-nav .mob-mega a{
    display:block;
    color:#bbb;
    text-decoration:none;
    padding:13px 20px 13px 32px;
    font-size:14px;
    font-weight:500;
    border-bottom:1px solid #252525;
    transition:color .2s, background .2s;
}

#mobile-nav .mob-mega a:last-child{
    border-bottom:none;
}

#mobile-nav .mob-mega a:hover{
    color:#f3b14f;
    background:#202020;
}

.mob-mega {
  max-height: 0;
  overflow: hidden;
  pointer-events: none;   /* ✅ Yahi main fix hai */
  transition: max-height 0.3s ease;
}

.has-mega.open .mob-mega {
  max-height: 500px;
  pointer-events: all;    /* ✅ Open hone par enable */
}

@media(max-width:480px){
    .logo{width:74px;height:74px;}
    #mobile-nav{top:100px;}
}





/* section 2 .......................................................................... */
/* ===================== HERO ===================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:600px;
    overflow:hidden;
}

.hero-slides{
    position:absolute;
    inset:0;
}

.hero-slide{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    opacity:0;
    transform:scale(1.12);

    transition:opacity 1.4s ease, transform 6s ease;
}

.hero-slide.active{
    opacity:1;
    transform:scale(1);
    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;

    background:linear-gradient(
        90deg,
        rgba(5,15,35,.75) 0%,
        rgba(5,15,35,.45) 45%,
        rgba(5,15,35,.15) 75%,
        rgba(5,15,35,0) 100%
    );
}

.hero-content{
    position:relative;
    z-index:3;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;

    width:min(1400px,94%);
    margin:auto;

    padding-top:100px;
}

.hero-content h1{
    font-family:'Zen Maru Gothic',sans-serif;
    font-weight:900;
    color:#ffffff;
    font-size:68px;
    line-height:1.15;
    max-width:750px;

    text-shadow:0 4px 20px rgba(0,0,0,.4);

    animation:heroFadeUp 1s ease;
}

.hero-content h1 br{
    display:block;
}

.hero-content p{
    font-family:'Zen Maru Gothic',sans-serif;
    font-weight:500;
    color:#e6e9ef;
    font-size:19px;
    letter-spacing:.5px;
    margin-top:22px;
    max-width:520px;

    animation:heroFadeUp 1.2s ease;
}

.hero-dots{
    display:flex;
    gap:10px;
    margin-top:45px;
}

.hero-dots .dot{
    width:34px;
    height:4px;
    border-radius:4px;
    background:rgba(255,255,255,.35);
    transition:.4s;
}

.hero-dots .dot.active{
    background:linear-gradient(90deg,#4d8dff,#ff8c3a);
    width:50px;
}

@keyframes heroFadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===================== RESPONSIVE ===================== */

@media(max-width:991px){

    .hero{
        height:100vh;
        min-height:520px;
    }

    .hero-overlay{
        background:linear-gradient(
            180deg,
            rgba(5,15,35,.35) 0%,
            rgba(5,15,35,.75) 60%,
            rgba(5,15,35,.92) 100%
        );
    }

    .hero-content{
        justify-content:flex-end;
        padding-bottom:70px;
        padding-top:0;
        text-align:left;
    }

    .hero-content h1{
        font-size:42px;
        max-width:100%;
    }

    .hero-content p{
        font-size:16px;
        max-width:100%;
    }

}

@media(max-width:576px){

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:14px;
    }

    .hero-dots{
        margin-top:30px;
    }

}

/* section 3 .......................................................................... */
/* ===================== SECTION 2 - ABOUT US ===================== */

.section2{
    background:#fbfbfd;
    padding:110px 0;
    overflow:hidden;
}

.section2-inner{
    width:min(1400px,94%);
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.05fr;
    gap:70px;
    align-items:center;
}

/* IMAGES */

.section2-images{
    position:relative;
    height:520px;
}

.img-main{
    position:absolute;
    top:0;
    left:0;
    width:78%;
    height:88%;

    border-radius:16px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.img-main img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.section2-images:hover .img-main img{
    transform:scale(1.06);
}

.img-sub{
    position:absolute;
    bottom:0;
    right:0;
    width:52%;
    height:55%;

    border-radius:16px;
    overflow:hidden;
    border:6px solid #fbfbfd;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.img-sub img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.section2-images:hover .img-sub img{
    transform:scale(1.08);
}

.exp-badge{
    position:absolute;
    top:20px;
    right:10px;
    z-index:2;

    background:linear-gradient(135deg,#0057ff,#003bb3);
    color:#fff;

    width:120px;
    height:120px;
    border-radius:50%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    box-shadow:0 15px 35px rgba(0,87,255,.4);
}

.exp-badge h3{
    font-size:32px;
    font-weight:900;
    line-height:1;
}

.exp-badge h3 span{
    color:#ff8c3a;
}

.exp-badge p{
    font-size:11px;
    font-weight:700;
    margin-top:4px;
    letter-spacing:.5px;
}

/* CONTENT */

.sec-tag{
    display:inline-block;
    background:rgba(0,87,255,.08);
    color:#0057ff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:18px;
}

.section2-content h2{
    font-size:38px;
    font-weight:900;
    color:#0d1522;
    line-height:1.35;
    margin-bottom:22px;
}

.section2-content h2 span{
    color:#ff8c3a;
}

.section2-content > p{
    font-size:15.5px;
    line-height:1.9;
    color:#5a6371;
    margin-bottom:35px;
    max-width:580px;
}

/* POINTS GRID */

.about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
    margin-bottom:38px;
}

.point{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.point i{
    flex-shrink:0;
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#0057ff,#ff8c3a);
    color:#fff;
    font-size:20px;
    border-radius:12px;
}

.point h4{
    font-size:15.5px;
    font-weight:700;
    color:#0d1522;
    margin-bottom:5px;
}

.point p{
    font-size:13.5px;
    color:#75808d;
    line-height:1.6;
}

/* CTA BUTTON */

.about-btn{
    display:inline-block;
    background:linear-gradient(135deg,#0057ff,#003bb3);
    color:#fff;
    text-decoration:none;
    font-size:14.5px;
    font-weight:700;
    letter-spacing:.5px;
    padding:16px 34px;
    border-radius:8px;

    box-shadow:0 15px 35px rgba(0,87,255,.3);
    transition:.35s;
}

.about-btn:hover{
    background:linear-gradient(135deg,#ff8c3a,#e8622c);
    box-shadow:0 15px 35px rgba(255,140,58,.35);
    transform:translateY(-3px);
}

/* ===================== RESPONSIVE ===================== */

@media(max-width:1199px){

    .section2-content h2{
        font-size:32px;
    }

}

@media(max-width:991px){

    .section2{
        padding:80px 0;
    }

    .section2-inner{
        grid-template-columns:1fr;
        gap:55px;
    }

    .section2-images{
        height:420px;
        max-width:480px;
        margin:auto;
    }

}

@media(max-width:576px){

    .section2{
        padding:60px 0;
    }

    .section2-images{
        height:340px;
    }

    .exp-badge{
        width:95px;
        height:95px;
        top:10px;
        right:0;
    }

    .exp-badge h3{
        font-size:24px;
    }

    .exp-badge p{
        font-size:9.5px;
    }

    .sec-tag{
        font-size:12px;
        padding:6px 14px;
    }

    .section2-content h2{
        font-size:26px;
    }

    .section2-content > p{
        font-size:14px;
    }

    .about-points{
        grid-template-columns:1fr;
        gap:20px;
    }

    .point i{
        width:40px;
        height:40px;
        font-size:17px;
    }

    .about-btn{
        width:100%;
        text-align:center;
    }

}


@media(max-width:991px){

    .section2{
        padding:80px 0;
    }

    .section2-inner{
        grid-template-columns:1fr;
        gap:55px;
    }

    .section2-images{
        width:100%;
        max-width:480px;
        height:420px;
        margin:0 auto;
        display:block;
    }

}

@media(max-width:576px){

    .section2{
        padding:60px 0;
    }

    .section2-images{
        width:100%;
        max-width:100%;
        height:340px;
    }

    .exp-badge{
        width:95px;
        height:95px;
        top:10px;
        right:0;
    }

    .exp-badge h3{
        font-size:24px;
    }

    .exp-badge p{
        font-size:9.5px;
    }

    .sec-tag{
        font-size:12px;
        padding:6px 14px;
    }

    .section2-content h2{
        font-size:26px;
    }

    .section2-content > p{
        font-size:14px;
    }

    .about-points{
        grid-template-columns:1fr;
        gap:20px;
    }

    .point i{
        width:40px;
        height:40px;
        font-size:17px;
    }

    .about-btn{
        width:100%;
        text-align:center;
    }

}
/* section 4 .......................................................................... */
/* ===================== SECTION 3 - SERVICES CARDS (WHITE) ===================== */

.section3{
    background:#ffffff;
    padding:110px 0;
    position:relative;
}

.section3-inner{
    width:min(1400px,94%);
    margin:auto;
}

/* HEAD */

.sec3-head{
    text-align:center;
    max-width:650px;
    margin:0 auto 65px;
}

.sec3-head .sec-tag{
    background:rgba(0,87,255,.08);
    color:#0057ff;
}

.sec3-head h2{
    color:#0d1522;
    font-size:36px;
    font-weight:900;
    line-height:1.35;
    margin:18px 0 16px;
}

.sec3-head h2 span{
    color:#ff8c3a;
}

.sec3-head p{
    color:#6b7480;
    font-size:15px;
    line-height:1.8;
}

/* GRID */

.cards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:34px;
}

/* CARD */

.claim-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(13,21,34,.06);
    border:1px solid rgba(13,21,34,.05);

    transition:.45s cubic-bezier(.25,.8,.25,1);
}

.claim-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 55px rgba(0,87,255,.15);
}

/* IMAGE with hover swap */

.card-img{
    position:relative;
    width:100%;
    height:240px;
    overflow:hidden;
}

.card-img img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;

    transition:opacity .7s ease, transform 7s ease;
}

.img-default{
    opacity:1;
    z-index:1;
}

.img-hover{
    opacity:0;
    z-index:2;
    transform:scale(1.12);
}

.claim-card:hover .img-default{
    opacity:0;
}

.claim-card:hover .img-hover{
    opacity:1;
    transform:scale(1);
}

.card-img::after{
    content:'';
    position:absolute;
    inset:0;
    z-index:3;
    background:linear-gradient(180deg,rgba(0,87,255,0) 0%,rgba(13,21,34,.55) 100%);
    opacity:0;
    transition:.45s;
}

.claim-card:hover .card-img::after{
    opacity:1;
}

/* Floating icon badge */

.card-icon{
    position:absolute;
    bottom:16px;
    left:20px;
    z-index:4;

    width:54px;
    height:54px;
    border-radius:15px;

    background:linear-gradient(135deg,#0057ff,#ff8c3a);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:23px;

    box-shadow:0 10px 25px rgba(0,87,255,.4);

    transform:translateY(20px);
    opacity:0;
    transition:.45s .1s;
}

.claim-card:hover .card-icon{
    transform:translateY(0);
    opacity:1;
}

/* BODY */

.card-body{
    padding:30px 26px 32px;
}

.card-body h3{
    color:#0d1522;
    font-size:19.5px;
    font-weight:800;
    margin-bottom:12px;
    transition:.3s;
}

.claim-card:hover .card-body h3{
    color:#0057ff;
}

.card-body p{
    color:#767f8c;
    font-size:14px;
    line-height:1.75;
    margin-bottom:20px;
}

.card-link{
    display:inline-flex;
    align-items:center;
    gap:7px;

    color:#0057ff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;

    padding-bottom:3px;
    border-bottom:2px solid transparent;

    transition:.3s;
}

.card-link i{
    font-size:16px;
    transition:.3s;
}

.card-link:hover{
    color:#ff8c3a;
    border-color:#ff8c3a;
    gap:11px;
}

/* ===================== RESPONSIVE ===================== */

@media(max-width:1199px){

    .cards-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .section3{
        padding:80px 0;
    }

    .sec3-head h2{
        font-size:29px;
    }

}

@media(max-width:640px){

    .cards-grid{
        grid-template-columns:1fr;
        gap:26px;
    }

    .sec3-head{
        margin-bottom:45px;
    }

    .sec3-head h2{
        font-size:24px;
    }

    .sec3-head p{
        font-size:14px;
    }

    .card-img{
        height:210px;
    }

    .card-icon{
        width:46px;
        height:46px;
        font-size:20px;
        bottom:14px;
        left:16px;
    }

    .card-body{
        padding:26px 22px 28px;
    }

}

/* section 5 .......................................................................... */
/* ===================== SECTION 4 - HOW IT WORKS ===================== */

.section4{
    background:#fbfbfd;
    padding:110px 0;
}

.section4-inner{
    width:min(1400px,94%);
    margin:auto;
}

.steps-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
}

.steps-row::before{
    content:'';
    position:absolute;
    top:78px;
    left:12%;
    right:12%;
    height:2px;
    background:repeating-linear-gradient(90deg,#c9d4e8 0,#c9d4e8 8px,transparent 8px,transparent 16px);
    z-index:0;
}

.step-item{
    position:relative;
    z-index:1;

    background:#ffffff;
    border-radius:18px;
    padding:36px 26px 30px;
    text-align:center;

    box-shadow:0 10px 30px rgba(13,21,34,.06);
    border:1px solid rgba(13,21,34,.05);

    transition:.4s;
}

.step-item:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,87,255,.14);
}

.step-num{
    position:absolute;
    top:-18px;
    right:18px;

    font-size:46px;
    font-weight:900;
    color:rgba(0,87,255,.08);
}

.step-icon{
    width:66px;
    height:66px;
    margin:0 auto 20px;
    border-radius:18px;

    background:linear-gradient(135deg,#0057ff,#ff8c3a);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:28px;

    box-shadow:0 12px 25px rgba(0,87,255,.3);
}

.step-item h3{
    color:#0d1522;
    font-size:18px;
    font-weight:800;
    margin-bottom:10px;
}

.step-item p{
    color:#767f8c;
    font-size:13.5px;
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:991px){

    .section4{
        padding:80px 0;
    }

    .steps-row{
        grid-template-columns:repeat(2,1fr);
        gap:26px;
    }

    .steps-row::before{
        display:none;
    }

}

@media(max-width:576px){

    .steps-row{
        grid-template-columns:1fr;
    }

    .step-item{
        padding:32px 22px 26px;
    }

}

/* section 6 .......................................................................... */
/* ===================== SECTION 5 - WHY CHOOSE US (WHITE) ===================== */

.section5{
    background:#ffffff;
    padding:110px 0;
    position:relative;
    overflow:hidden;
}

.section5::before{
    content:'';
    position:absolute;
    top:-150px;
    right:-150px;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(0,87,255,.07),transparent 70%);
}

.section5::after{
    content:'';
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:380px;
    height:380px;
    background:radial-gradient(circle,rgba(255,140,58,.08),transparent 70%);
}

.section5-inner{
    position:relative;
    z-index:1;

    width:min(1400px,94%);
    margin:auto;

    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:center;
}

/* LEFT CONTENT */

.why-content h2{
    color:#0d1522;
    font-size:36px;
    font-weight:900;
    line-height:1.35;
    margin:18px 0 18px;
}

.why-content h2 span{
    color:#ff8c3a;
}

.why-content > p{
    color:#6b7480;
    font-size:15px;
    line-height:1.85;
    margin-bottom:32px;
    max-width:520px;
}

.why-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px 20px;
    margin-bottom:38px;
}

.why-item{
    display:flex;
    align-items:center;
    gap:10px;

    background:#f7f9fc;
    border:1px solid rgba(13,21,34,.06);
    border-radius:12px;
    padding:14px 16px;

    color:#0d1522;
    font-size:14px;
    font-weight:700;

    transition:.3s;
}

.why-item:hover{
    background:#eef3ff;
    border-color:rgba(0,87,255,.2);
    transform:translateX(4px);
}

.why-item i{
    color:#0057ff;
    font-size:20px;
    flex-shrink:0;
}

/* STATS GRID */

.stats-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.stat-box{
    position:relative;

    background:#ffffff;
    border-radius:20px;
    padding:32px 24px;
    text-align:center;

    box-shadow:0 12px 35px rgba(13,21,34,.07);
    border:1px solid rgba(13,21,34,.05);

    transition:.4s;
}

.stat-box:nth-child(even){
    margin-top:26px;
}

.stat-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,87,255,.15);
    border-color:rgba(0,87,255,.15);
}

.stat-icon{
    width:52px;
    height:52px;
    margin:0 auto 16px;
    border-radius:14px;

    background:linear-gradient(135deg,#0057ff,#ff8c3a);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:22px;

    box-shadow:0 10px 22px rgba(0,87,255,.3);
}

.stat-box h3{
    color:#0d1522;
    font-size:36px;
    font-weight:900;
    line-height:1;
}

.stat-suffix{
    color:#ff8c3a;
    font-size:22px;
    font-weight:900;
}

.stat-box p{
    color:#767f8c;
    font-size:13px;
    font-weight:600;
    margin-top:10px;
}

/* CTA BUTTON reuse */

.why-content .about-btn{
    display:inline-block;
    background:linear-gradient(135deg,#0057ff,#003bb3);
    color:#fff;
    text-decoration:none;
    font-size:14.5px;
    font-weight:700;
    letter-spacing:.5px;
    padding:16px 34px;
    border-radius:8px;

    box-shadow:0 15px 35px rgba(0,87,255,.25);
    transition:.35s;
}

.why-content .about-btn:hover{
    background:linear-gradient(135deg,#ff8c3a,#e8622c);
    box-shadow:0 15px 35px rgba(255,140,58,.3);
    transform:translateY(-3px);
}

/* ===================== RESPONSIVE ===================== */

@media(max-width:1199px){

    .why-content h2{
        font-size:31px;
    }

}

@media(max-width:991px){

    .section5{
        padding:80px 0;
    }

    .section5-inner{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .why-content h2{
        font-size:29px;
    }

    .why-content > p{
        margin:0 auto 32px;
    }

    .why-list{
        max-width:460px;
        margin:0 auto 32px;
        text-align:left;
    }

    .stat-box:nth-child(even){
        margin-top:0;
    }

}

@media(max-width:576px){

    .why-content h2{
        font-size:24px;
    }

    .why-list{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        gap:16px;
    }

    .stat-box{
        padding:24px 16px;
    }

    .stat-box h3{
        font-size:28px;
    }

    .stat-icon{
        width:44px;
        height:44px;
        font-size:18px;
    }

}


/* section 7 .......................................................................... */
/* ===================== SECTION 6 - TESTIMONIALS (FIXED) ===================== */

.section6{
    background:#fbfbfd;
    padding:110px 0;
}

.section6-inner{
    width:min(1000px,94%);
    margin:auto;
}

.testi-wrapper{
    position:relative;
}

/* THIS FIXES THE RESPONSIVE BREAK */
.testi-viewport{
    overflow:hidden;
    border-radius:22px;
}

.testi-track{
    display:flex;
    width:100%;
    transition:transform .6s cubic-bezier(.25,.8,.25,1);
}

.testi-card{
    flex:0 0 100%;
    width:100%;
    box-sizing:border-box;

    background:#ffffff;
    border-radius:22px;
    padding:55px 60px;
    text-align:center;
    position:relative;

    box-shadow:0 15px 40px rgba(13,21,34,.07);
    border:1px solid rgba(13,21,34,.05);
}

.testi-quote{
    font-size:38px;
    color:rgba(0,87,255,.12);
    margin-bottom:10px;
}

.testi-stars{
    color:#ff8c3a;
    font-size:16px;
    margin-bottom:20px;
    letter-spacing:4px;
}

.testi-text{
    color:#3d4552;
    font-size:16.5px;
    line-height:1.9;
    font-style:italic;
    margin-bottom:28px;
    max-width:650px;
    margin-left:auto;
    margin-right:auto;
}

.testi-user{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
}

.testi-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    flex-shrink:0;

    background:linear-gradient(135deg,#0057ff,#ff8c3a);
    color:#fff;
    font-weight:800;
    font-size:15px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.testi-user h4{
    color:#0d1522;
    font-size:15.5px;
    font-weight:800;
    text-align:left;
}

.testi-user span{
    color:#8a93a1;
    font-size:12.5px;
    text-align:left;
    display:block;
}

/* ARROWS */

.testi-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;

    width:46px;
    height:46px;
    border-radius:50%;
    border:none;
    cursor:pointer;

    background:#ffffff;
    color:#0057ff;
    font-size:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 10px 25px rgba(13,21,34,.12);
    transition:.3s;
}

.testi-arrow:hover{
    background:linear-gradient(135deg,#0057ff,#ff8c3a);
    color:#fff;
}

.arrow-left{ left:-23px; }
.arrow-right{ right:-23px; }

/* DOTS */

.testi-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:32px;
}

.t-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#dfe4ec;
    cursor:pointer;
    transition:.35s;
}

.t-dot.active{
    width:28px;
    border-radius:6px;
    background:linear-gradient(90deg,#0057ff,#ff8c3a);
}

/* ===================== RESPONSIVE ===================== */

@media(max-width:991px){

    .section6{
        padding:80px 0;
    }

    .testi-card{
        padding:45px 40px;
    }

    .testi-arrow{
        display:none;
    }

}

@media(max-width:576px){

    .testi-card{
        padding:36px 22px;
        border-radius:16px;
    }

    .testi-quote{
        font-size:30px;
    }

    .testi-text{
        font-size:14.5px;
    }

    .testi-user{
        flex-direction:column;
        gap:8px;
    }

    .testi-user h4,
    .testi-user span{
        text-align:center;
    }

}


/* .............................. enq form ......................... */
/* ===================== ENQUIRY FORM SECTION (WHITE + PREMIUM) ===================== */

.enq-section{
    background:#ffffff;
    padding:110px 0;
    position:relative;
    overflow:hidden;
}

.enq-section::before{
    content:'';
    position:absolute;
    top:-160px;
    left:-160px;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(0,87,255,.06),transparent 70%);
}

.enq-section::after{
    content:'';
    position:absolute;
    bottom:-160px;
    right:-160px;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(255,140,58,.07),transparent 70%);
}

.enq-section-inner{
    position:relative;
    z-index:1;

    width:min(1300px,94%);
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.05fr;
    gap:60px;
    align-items:center;
}

/* LEFT VISUAL */

.enq-visual{
    position:relative;
}

.enq-img-card{
    position:relative;
    border-radius:28px;
    overflow:visible;
    box-shadow:0 30px 70px rgba(0,87,255,.12);
}

.enq-illustration{
    width:100%;
    height:auto;
    display:block;
    border-radius:28px;
}

.enq-badge-float{
    position:absolute;
    bottom:-24px;
    left:30px;

    display:flex;
    align-items:center;
    gap:14px;

    background:#ffffff;
    border-radius:16px;
    padding:16px 22px;

    box-shadow:0 20px 45px rgba(13,21,34,.15);
}

.enq-badge-float i{
    width:46px;
    height:46px;
    border-radius:12px;

    background:linear-gradient(135deg,#0057ff,#ff8c3a);
    color:#fff;
    font-size:20px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.enq-badge-float h4{
    color:#0d1522;
    font-size:19px;
    font-weight:900;
    line-height:1;
}

.enq-badge-float p{
    color:#8a93a1;
    font-size:11.5px;
    font-weight:600;
    margin-top:4px;
}

/* RIGHT FORM */

.enq-form-wrap{
    background:#ffffff;
    border-radius:26px;
    padding:20px 10px 10px 30px;
}

.enq-form-wrap h2{
    color:#0d1522;
    font-size:33px;
    font-weight:900;
    line-height:1.35;
    margin:16px 0 12px;
}

.enq-form-wrap h2 span{
    color:#ff8c3a;
}

.enq-form-sub{
    color:#6b7480;
    font-size:14.5px;
    margin-bottom:30px;
}

.enq-field{
    position:relative;
    margin-bottom:18px;
}

.enq-field i{
    position:absolute;
    top:50%;
    left:16px;
    transform:translateY(-50%);

    color:#9aa4b2;
    font-size:18px;

    transition:.3s;
}

.enq-field input,
.enq-field select{
    width:100%;
    padding:15px 16px 15px 46px;

    border:1.5px solid #e5e9f0;
    border-radius:10px;
    background:#f9fafc;

    font-family:'Zen Maru Gothic',sans-serif;
    font-size:14px;
    color:#0d1522;

    outline:none;
    transition:.3s;
    appearance:none;
}

.enq-field select{
    cursor:pointer;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239aa4b2' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 16px center;
}

.enq-field input:focus,
.enq-field select:focus{
    border-color:#0057ff;
    background:#fff;
    box-shadow:0 0 0 4px rgba(0,87,255,.1);
}

.enq-field input:focus ~ i,
.enq-field select:focus ~ i{
    color:#0057ff;
}

.enq-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.enq-textarea i{
    top:20px;
    transform:none;
}

.enq-textarea textarea{
    width:100%;
    min-height:95px;
    resize:vertical;

    padding:15px 16px 15px 46px;

    border:1.5px solid #e5e9f0;
    border-radius:10px;
    background:#f9fafc;

    font-family:'Zen Maru Gothic',sans-serif;
    font-size:14px;
    color:#0d1522;

    outline:none;
    transition:.3s;
}

.enq-textarea textarea:focus{
    border-color:#0057ff;
    background:#fff;
    box-shadow:0 0 0 4px rgba(0,87,255,.1);
}

.enq-submit{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    background:linear-gradient(135deg,#0057ff,#003bb3);
    color:#fff;

    border:none;
    border-radius:10px;
    padding:16px;

    font-family:'Zen Maru Gothic',sans-serif;
    font-size:15px;
    font-weight:700;
    letter-spacing:.3px;
    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,87,255,.25);
    transition:.35s;
}

.enq-submit:hover{
    background:linear-gradient(135deg,#ff8c3a,#e8622c);
    box-shadow:0 15px 35px rgba(255,140,58,.3);
    transform:translateY(-3px);
}

.enq-submit i{
    font-size:17px;
    transition:.3s;
}

.enq-submit:hover i{
    transform:translateX(4px);
}

.enq-trust{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    color:#9aa4b2;
    font-size:12.5px;
    margin-top:16px;
}

.enq-trust i{
    color:#0057ff;
    font-size:14px;
}

/* ===================== RESPONSIVE ===================== */

@media(max-width:1199px){

    .enq-form-wrap h2{
        font-size:28px;
    }

}

@media(max-width:991px){

    .enq-section{
        padding:80px 0;
    }

    .enq-section-inner{
        grid-template-columns:1fr;
        gap:70px;
    }

    .enq-img-card{
        max-width:480px;
        margin:auto;
    }

    .enq-form-wrap{
        padding:0;
    }

    .enq-form-wrap h2{
        font-size:26px;
    }

}

@media(max-width:576px){

    .enq-badge-float{
        left:16px;
        bottom:-18px;
        padding:12px 16px;
        gap:10px;
    }

    .enq-badge-float i{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .enq-badge-float h4{
        font-size:16px;
    }

    .enq-form-wrap h2{
        font-size:22px;
    }

    .enq-row{
        grid-template-columns:1fr;
        gap:0;
    }

}

.enq-field{
    display:flex;
    align-items:center;
    gap:0;

    border:1.5px solid #e5e9f0;
    border-radius:10px;
    background:#f9fafc;

    margin-bottom:18px;
    transition:.3s;
}

.enq-field:focus-within{
    border-color:#0057ff;
    background:#fff;
    box-shadow:0 0 0 4px rgba(0,87,255,.1);
}

.enq-icon{
    flex-shrink:0;
    width:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#9aa4b2;
    font-size:18px;
}

.enq-field:focus-within .enq-icon{
    color:#0057ff;
}

.enq-field input,
.enq-field select{
    flex:1;
    min-width:0;

    padding:15px 16px 15px 0;
    border:none;
    background:transparent;

    font-family:'Zen Maru Gothic',sans-serif;
    font-size:14px;
    color:#0d1522;

    outline:none;
    appearance:none;
}

.enq-field select{
    cursor:pointer;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239aa4b2' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 16px center;
    padding-right:36px;
}

/* TEXTAREA variant */

.enq-textarea{
    align-items:flex-start;
}

.enq-textarea .enq-icon{
    padding-top:15px;
}

.enq-textarea textarea{
    flex:1;
    min-width:0;
    min-height:95px;
    resize:vertical;

    padding:15px 16px 15px 0;
    border:none;
    background:transparent;

    font-family:'Zen Maru Gothic',sans-serif;
    font-size:14px;
    color:#0d1522;

    outline:none;
}


/* FOOTER STYLES */
/* ===================== FOOTER ===================== */

.site-footer{
    position:relative;
    background:#0d1522;
    color:#ccc;
    overflow:hidden;
}

.footer-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg, rgba(13,21,34,.82), rgba(13,21,34,.77)),
        url('image/hero2.webp') center/cover no-repeat;
    z-index:0;
}

.footer-inner{
    position:relative;
    z-index:1;

    width:min(1400px,94%);
    margin:auto;

    padding:70px 0 40px;

    display:grid;
    grid-template-columns:1.6fr 1fr 1.2fr 1.2fr;
    gap:40px;
}

.footer-col h3{
    color:#fff;
    font-size:18px;
    font-weight:900;
    margin-bottom:22px;
    position:relative;
    padding-bottom:10px;
}

.footer-col h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:40px;
    height:3px;
    background:linear-gradient(90deg,#4d8dff,#ff8c3a);
    border-radius:3px;
}

.footer-logo{
    width:65px;
    height:65px;
    object-fit:contain;
    margin-bottom:10px;
}

.footer-brand h2{
    font-size:24px;
    font-weight:900;
    margin-bottom:4px;
}

.footer-tagline{
    font-size:12px;
    letter-spacing:2px;
    color:#9aa4b2;
    margin-bottom:18px;
}

.footer-desc{
    font-size:14px;
    line-height:1.8;
    color:#b5bcc6;
    margin-bottom:22px;
}

/* SOCIAL ICONS with tooltip */

.footer-social{
    display:flex;
    gap:12px;
}

.social-icon{
    position:relative;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;

    color:#fff;
    font-size:18px;
    text-decoration:none;

    transition:.3s;
}

.social-icon:hover{
    background:linear-gradient(135deg,#4d8dff,#ff8c3a);
    border-color:transparent;
    transform:translateY(-4px);
}

.social-icon::after{
    content:attr(data-tooltip);

    position:absolute;
    bottom:calc(100% + 10px);
    left:50%;
    transform:translateX(-50%) translateY(6px);

    background:#fff;
    color:#111;
    font-size:11px;
    font-weight:700;
    white-space:nowrap;

    padding:6px 12px;
    border-radius:6px;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:.25s;
}

.social-icon::before{
    content:'';
    position:absolute;
    bottom:calc(100% + 4px);
    left:50%;
    transform:translateX(-50%);

    border:6px solid transparent;
    border-top-color:#fff;

    opacity:0;
    visibility:hidden;
    transition:.25s;
}

.social-icon:hover::after,
.social-icon:hover::before{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

/* LINKS */

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:13px;
}

.footer-col ul li a{
    color:#b5bcc6;
    text-decoration:none;
    font-size:14px;
    transition:.25s;
    display:inline-block;
}

.footer-col ul li a:hover{
    color:#ff8c3a;
    transform:translateX(4px);
}

/* CONTACT */

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14px;
    color:#b5bcc6;
    line-height:1.6;
}

.footer-contact li i{
    color:#4d8dff;
    font-size:17px;
    margin-top:2px;
    flex-shrink:0;
}

/* BOTTOM BAR */

.footer-bottom{
    position:relative;
    z-index:1;

    border-top:1px solid rgba(255,255,255,.08);
    padding:18px 0;
    text-align:center;
}

.footer-bottom p{
    font-size:13px;
    color:#8a93a1;
}

/* ===================== MOBILE ===================== */

@media(max-width:991px){

    .footer-inner{
        grid-template-columns:1fr 1fr;
        gap:35px 20px;
        padding:50px 0 30px;
        text-align:center;
    }

    .footer-brand{
        grid-column:1 / -1;
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .footer-col h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-social{
        justify-content:center;
    }

    .footer-contact li{
        justify-content:center;
        text-align:left;
    }

}

@media(max-width:576px){

    .footer-inner{
        grid-template-columns:1fr;
        text-align:center;
    }

}

/* Sticky Button */
.enq-btn{
  position: fixed;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: linear-gradient(90deg, #0a3dff, #00b7ff);
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 18px 40px rgba(10,61,255,0.35);
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* Panel */
.enq-panel{
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -20px 0 60px rgba(0,0,0,0.18);
  transition: 0.45s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

/* Open State */
.enq-panel.active{
  right: 0;
}

/* Header */
.enq-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.enq-header img{
  height: 80px;
  object-fit: contain;
}

.enq-close{
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #0a3dff;
}

/* Form */
.enq-form{
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enq-form h3{
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 900;
  color: #07112a;
}

.enq-form input,
.enq-form select,
.enq-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  font-weight: 600;
  outline: none;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.enq-form textarea{
  resize: none;
  height: 90px;
}

.enq-form input:focus,
.enq-form select:focus,
.enq-form textarea:focus{
  border-color: #0a3dff;
}

/* Submit */
.enq-form button{
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg, #0a3dff, #00b7ff);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(10,61,255,0.28);
  font-family: 'Zen Maru Gothic', sans-serif;
}

.enq-form button:hover{
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 600px){
  .enq-panel{
    width: 100%;
  }
  .enq-btn{
    right: -25px;
  }
}

/* Sticky WhatsApp Icon */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 22px;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  animation: waFloat 2.2s ease-in-out infinite;
}

.wa-float img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 255, 0, 0.5));
  transition: transform 0.3s ease;
}

/* Hover effect */
.wa-float:hover img {
  transform: scale(1.18) rotate(3deg);
  filter: drop-shadow(0 0 12px rgba(0, 255, 0, 0.7));
}

/* ////////////////////////////////////////// translator ////////////////////////////////////////////// */
.site-translate{
  display:flex;
  align-items:center;
  /* justify-content:flex-end; */
  gap: 10px;
  padding: 10px;
  
}

/* translate widget styling */
#google_translate_element{
  display:flex;
  align-items:center;
}

.goog-te-gadget{
  font-family: 'Zen Maru Gothic', sans-serif !important;
  font-weight: 800 !important;
  color: transparent !important; /* Google ka extra text hide */
}

.goog-te-gadget span{ display:none !important; } /* "Select Language" text hide */
.goog-te-gadget a{ display:none !important; }    /* powered by link hide (optional) */

.goog-te-combo{
  padding: 8px 12px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
  outline: none !important;
  font-weight: 850 !important;
}

/* If your header bg is light, set combo text dark */



/* =============================================
   BOTTOM NAV (mobile)
============================================= */
.bottom-nav{
  display:none;
  position:fixed;
  bottom:0;left:0;right:0;
  height:var(--nav-h-mob);
  background:#fff;
  border-top:1px solid var(--border);
  z-index:900;
  box-shadow:0 -4px 24px rgba(0,0,0,0.07);
}
.bottom-nav__inner{
  display:flex;
  align-items:stretch;
  height:100%;
}
.bnav-item{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  text-decoration:none;
  color:var(--text3);
  font-size:10px;
  font-weight:700;
  letter-spacing:0.06em;
  transition:color 0.2s;
  padding:6px 4px 8px;
  border:none;
  background:none;
  cursor:pointer;
  position:relative;
}
.bnav-item.active{color:var(--accent-dark);}
.bnav-item.active::before{
  content:'';
  position:absolute;
  top:0;left:50%;transform:translateX(-50%);
  width:32px;height:2.5px;
  background:var(--accent);
  border-radius:0 0 3px 3px;
}
.bnav-item svg{width:22px;height:22px;flex-shrink:0;}
.bnav-label{font-size:9.5px;line-height:1;}
/* call button special */
.bnav-call{
  background:var(--accent);
  color:#000 !important;
  border-radius:0;
  font-weight:900;
}
.bnav-call::before{display:none !important;}
.bnav-call svg{color:#000;}
@media(max-width:768px){.bottom-nav{display:block;}}