/* ==========================================================================
   NEW DESIGN EXPORTS — Global Design System
   Primary Blue #0A8DD8 · Signature Yellow #FFD400
   Display: Poppins · Body: Inter
   ========================================================================== */
:root{
  --blue:            #0A8DD8;
  --blue-dark:       #06699F;
  --blue-darker:     #043352;
  --navy:            #062A45;
  --yellow:          #FFD400;
  --yellow-dark:     #E6BF00;
  --white:           #FFFFFF;
  --gray-light:      #F5F7FA;
  --text-dark:       #1A1A1A;
  --border:          #E5E5E5;
  --radius:          16px;
  --shadow-soft:     0 10px 40px rgba(10,141,216,0.10);
  --shadow-card:     0 4px 24px rgba(6,42,69,0.08);
  --ease:            cubic-bezier(.4,0,.2,1);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  color:var(--text-dark);
  background:var(--white);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5,h6,.font-display{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  color:var(--text-dark);
  letter-spacing:-0.02em;
}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
::selection{background:var(--yellow);color:var(--text-dark);}

.section-pad{padding:110px 0;}
@media (max-width:767px){.section-pad{padding:70px 0;}}
.bg-light-gray{background:var(--gray-light);}
.bg-navy{background:var(--navy);}

/* ---------- Eyebrow / Section heading ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'Poppins',sans-serif;font-weight:600;font-size:13px;
  letter-spacing:2.5px;text-transform:uppercase;color:var(--blue);
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";width:28px;height:3px;border-radius:3px;
  background:var(--yellow);display:inline-block;
}
.section-title{font-size:clamp(28px,4vw,42px);line-height:1.15;margin-bottom:18px;}
.section-sub{color:#5b6673;font-size:16.5px;max-width:640px;line-height:1.7;}
.title-center{text-align:center;margin-left:auto;margin-right:auto;}

/* ---------- Yellow Swoosh Signature Motif ---------- */
.swoosh-underline{position:relative;display:inline-block;}
.swoosh-underline svg{position:absolute;left:0;bottom:-10px;width:100%;height:14px;}
.swoosh-divider{width:100%;height:60px;display:block;margin:0 auto;}
.swoosh-bg{
  position:absolute;pointer-events:none;opacity:.5;z-index:0;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar-nde{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:transparent;
    transition:.35s;
}
.navbar-nde.scrolled{
    background:rgba(255,255,255,.98);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    backdrop-filter:blur(12px);
}
.navbar-nde .logo-text{
  font-family:'Poppins',sans-serif;font-weight:700;font-size:24px;
  color:var(--white);transition:color .35s var(--ease);
  display:flex;align-items:center;gap:10px;
}
.navbar-nde.scrolled .logo-text{color:var(--navy);}
.navbar-nde .logo-text span{color:var(--yellow);}
.navbar-nde.scrolled .logo-text span{color:var(--blue);}
.navbar-nde .logo-mark{
  width:42px;height:42px;border-radius:50%;
  background:conic-gradient(from 200deg,var(--blue),var(--blue-dark) 60%,var(--yellow) 78%,var(--blue) 100%);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(10,141,216,.35);
}
.nav-link-nde{
  font-family:'Poppins',sans-serif;font-weight:500;font-size:15px;
  color:var(--white);margin:0 14px;position:relative;padding:6px 0;
  transition:color .3s var(--ease);
}
.navbar-nde.scrolled .nav-link-nde{color:var(--text-dark);}
.nav-link-nde::after{
  content:"";position:absolute;left:0;bottom:0;width:0;height:2px;
  background:var(--yellow);transition:width .3s var(--ease);
}
.nav-link-nde:hover::after,.nav-link-nde.active::after{width:100%;}
.nav-link-nde:hover{color:var(--yellow);}
.navbar-nde.scrolled .nav-link-nde:hover{color:var(--blue);}

.btn-nde-quote{
  font-family:'Poppins',sans-serif;font-weight:600;font-size:14.5px;
  background:var(--blue);color:var(--white)!important;
  padding:12px 26px;border-radius:50px;border:2px solid var(--blue);
  transition:all .3s var(--ease);position:relative;overflow:hidden;
}
.btn-nde-quote:hover{background:var(--blue-dark);border-color:var(--blue-dark);transform:translateY(-2px);box-shadow:0 8px 20px rgba(10,141,216,.35);}

.btn-toggler-nde{border:none;background:transparent;font-size:22px;color:var(--white);}
.navbar-nde.scrolled .btn-toggler-nde{color:var(--navy);}

/* Mega menu */
.nav-item-mega{
    position:relative !important;
}

/* Small Glass Mega Menu */
.mega-menu{
    position:absolute;
    top:110%;
    left:50%;
    transform:translateX(-50%) translateY(15px);

    width:760px;
    max-width:90vw;

    background:rgba(255,255,255,.88);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.45);
    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

    padding:25px;

    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

.nav-item-mega:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}
.mega-menu-item{
    display:flex;
    align-items:center;
    gap:14px;

    padding:12px;
    border-radius:14px;

    transition:.3s;
    text-decoration:none;
}

.mega-menu-item:hover{
    background:rgba(10,141,216,.08);
    transform:translateX(6px);
}

.mega-menu-icon{
    width:42px;
    height:42px;
    border-radius:12px;

    background:rgba(10,141,216,.12);
    color:var(--blue);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.mega-menu-item:hover .mega-menu-icon{
    background:var(--blue);
    color:#fff;
}

.mega-menu-item h6{
    margin:0;
    font-size:15px;
    font-weight:600;
    color:#222;
}
.mega-menu-item p{font-size:12.5px;color:#8a94a3;margin:0;}
@media(max-width:991px){

    .mega-menu{
        position:static;
        width:100%;
        max-width:100%;
        transform:none;
        opacity:1;
        visibility:visible;
        display:none;
        margin-top:15px;
        border-radius:15px;
    }

    .nav-item-mega:hover .mega-menu{
        display:block;
        transform:none;
    }

}
body:has(.hero-nde) .navbar-nde,
body:has(.inner-hero) .navbar-nde{
    background:transparent;
}

body:has(.hero-nde) .navbar-nde.scrolled,
body:has(.inner-hero) .navbar-nde.scrolled{
    background:rgba(255,255,255,.98);
}
/* ==========================================================================
   HERO
   ========================================================================== */
.hero-nde{
  position:relative;min-height:100vh;display:flex;align-items:center;
  overflow:hidden;padding-top:110px;
}
.hero-nde::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(4,25,50,.78) 0%,
            rgba(4,25,50,.65) 45%,
            rgba(4,25,50,.45) 100%
        );
    z-index:0;
}
.hero-bg{
    position:absolute;
    inset:0;
    background:url(assets/images/allbanner/banner1.jpg) center center/cover no-repeat;
    z-index:-2;      /* was -1 */
    animation:zoomOut 6s linear forwards;
    transition:background-image .8s ease;
}

.hero-nde::before{
    z-index:-1;
}
.hero-nde::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(4,25,50,.55);
    z-index:-1;
}

@keyframes zoomOut{

    from{
        transform:scale(1.18);
    }

    to{
        transform:scale(1);
    }

}
.hero-nde .crate-pattern{
  position:absolute;inset:0;opacity:.07;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px);
  background-size:52px 52px;
}
.hero-nde .glow{position:absolute;border-radius:50%;filter:blur(80px);}
.hero-nde .glow-1{width:420px;height:420px;background:rgba(255,212,0,.18);top:-100px;right:-80px;}
.hero-nde .glow-2{width:380px;height:380px;background:rgba(255,255,255,.08);bottom:-140px;left:10%;}

.hero-eyebrow{
  display:inline-flex;align-items:center;gap:10px;color:var(--yellow);
  font-family:'Poppins',sans-serif;font-weight:600;font-size:13px;letter-spacing:3px;
  text-transform:uppercase;margin-bottom:22px;
}
.hero-eyebrow .dot{width:8px;height:8px;border-radius:50%;background:var(--yellow);animation:pulse 1.8s infinite;}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:.3;}}

.hero-nde h1{
  color:var(--white);font-size:clamp(34px,5vw,58px);line-height:1.12;margin-bottom:10px;
}
.hero-nde h1 .legacy-line{
  display:block;color:var(--yellow);font-size:clamp(18px,2vw,24px);
  font-weight:600;margin-top:12px;letter-spacing:.2px;
}
.hero-nde p.lead-nde{
  color:rgba(255,255,255,.82);font-size:17.5px;max-width:520px;line-height:1.75;margin:22px 0 34px;
}
.btn-hero-primary{
  background:var(--blue);color:var(--white);font-family:'Poppins';font-weight:600;
  padding:15px 32px;border-radius:50px;border:2px solid var(--yellow);
  box-shadow:0 8px 24px rgba(0,0,0,.2);transition:.3s var(--ease);
}
.btn-hero-primary:hover{background:var(--yellow);color:var(--navy);transform:translateY(-3px);}
.btn-hero-outline{
  background:transparent;color:var(--white);font-family:'Poppins';font-weight:600;
  padding:15px 32px;border-radius:50px;border:2px solid var(--yellow);
  transition:.3s var(--ease);
}
.btn-hero-outline:hover{background:var(--yellow);color:var(--navy);transform:translateY(-3px);}

/* Hero globe / export routes */
.globe-wrap{position:relative;display:flex;align-items:center;justify-content:center;}
.globe-svg{width:100%;max-width:480px;}
.route-line{
  fill:none;stroke:var(--yellow);stroke-width:2;stroke-dasharray:6 8;
  animation:dash 30s linear infinite;opacity:.85;
}
@keyframes dash{to{stroke-dashoffset:-500;}}
.route-dot{fill:var(--yellow);animation:blip 2.4s ease-in-out infinite;}
@keyframes blip{0%,100%{r:3.2;opacity:1;}50%{r:5.5;opacity:.5;}}

.floating-stat{
  position:absolute;background:rgba(255,255,255,.97);border-radius:14px;
  padding:14px 18px;box-shadow:0 12px 30px rgba(0,0,0,.18);
  display:flex;align-items:center;gap:12px;animation:float 5s ease-in-out infinite;
}
.floating-stat .fs-icon{
  width:38px;height:38px;border-radius:10px;background:var(--blue);color:var(--yellow);
  display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;
}
.floating-stat b{display:block;font-family:'Poppins';font-size:16px;color:var(--navy);line-height:1.1;}
.floating-stat span{font-size:11.5px;color:#7c8896;}
.fs-1{top:6%;left:-4%;animation-delay:0s;}
.fs-2{bottom:16%;right:-6%;animation-delay:1.2s;}
.fs-3{bottom:-4%;left:18%;animation-delay:2.1s;}
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-14px);}}

.scroll-indicator{
  position:absolute;bottom:28px;left:50%;transform:translateX(-50%);
  color:rgba(255,255,255,.75);display:flex;flex-direction:column;align-items:center;gap:8px;
  font-size:11px;letter-spacing:2px;text-transform:uppercase;
}
.scroll-indicator .wheel{
  width:26px;height:42px;border:2px solid rgba(255,255,255,.5);border-radius:20px;position:relative;
}
.scroll-indicator .wheel::before{
  content:"";position:absolute;top:6px;left:50%;transform:translateX(-50%);
  width:4px;height:8px;border-radius:3px;background:var(--yellow);animation:scrolldown 1.6s infinite;
}
@keyframes scrolldown{0%{opacity:1;top:6px;}100%{opacity:0;top:22px;}}

/* ==========================================================================
   INNER PAGE HEADER
   ========================================================================== */
.page-header-nde{
  position:relative;padding:190px 0 90px;overflow:hidden;
  background:
    radial-gradient(circle at 85% 20%,rgba(255,212,0,.10),transparent 40%),
    linear-gradient(120deg,var(--blue-darker) 0%,var(--blue-dark) 45%,var(--blue) 100%);
}
.page-header-nde .crate-pattern{
  position:absolute;inset:0;opacity:.07;
  background-image:linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px);
  background-size:52px 52px;
}

.page-header-nde .glow{position:absolute;border-radius:50%;filter:blur(80px);width:380px;height:380px;background:rgba(255,212,0,.16);top:-100px;right:-60px;}
.breadcrumb-nde{
  display:inline-flex;align-items:center;gap:10px;background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);padding:8px 20px;border-radius:50px;
  font-size:13px;color:rgba(255,255,255,.85);margin-bottom:22px;
}
.breadcrumb-nde a{color:var(--yellow);font-weight:600;}
.breadcrumb-nde i{font-size:10px;color:rgba(255,255,255,.5);}
.page-header-nde h1{color:var(--white);font-size:clamp(30px,4.5vw,48px);margin-bottom:14px;}
.page-header-nde p{color:rgba(255,255,255,.78);font-size:16.5px;max-width:600px;margin:0 auto;}
.inner-hero{
    position:relative;
    height:350px;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.inner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(5,23,45,.82) 0%,
        rgba(5,23,45,.55) 45%,
        rgba(5,23,45,.35) 100%
    );
}

.inner-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.breadcrumb-nde{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:18px;
}

.breadcrumb-nde a{
    color:#FFD400;
    text-decoration:none;
    font-weight:600;
}

.inner-content h1{
    color:#fff;
    font-size:46px;
    font-weight:700;
    margin-bottom:12px;
}

.inner-content p{
    color:rgba(255,255,255,.88);
    font-size:17px;
    max-width:560px;
    margin:0;
}

@media(max-width:768px){

    .inner-hero{
        height:220px;
        margin-top:75px;
    }

    .inner-content h1{
        font-size:34px;
    }

}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-visual{position:relative;}
.about-image-frame{
  border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-card);
  position:relative;z-index:2;
}
.about-image-frame{
    width:100%;
    height:100%;
    border-radius:20px;
    overflow:hidden;
}

.about-image-box{
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:20px;
}

.about-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.about-image-box{
  aspect-ratio:4/5;background:linear-gradient(150deg,var(--blue) 0%,var(--blue-dark) 55%,var(--navy) 100%);
  display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;
}
.about-image-box::after{
  content:"";position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:40px 40px;
}
.about-image-box i{font-size:90px;color:rgba(255,212,0,.85);position:relative;z-index:1;}
.about-badge{
  position:absolute;bottom:-26px;right:-22px;background:var(--white);border-radius:var(--radius);
  box-shadow:var(--shadow-card);padding:22px 26px;z-index:3;text-align:center;border-top:4px solid var(--yellow);
}
.about-badge b{font-family:'Poppins';font-size:34px;color:var(--blue);display:block;line-height:1;}
.about-badge span{font-size:12.5px;color:#5b6673;}
.about-swoosh{position:absolute;top:-30px;left:-30px;width:140px;z-index:1;opacity:.9;}

.about-list{list-style:none;padding:0;margin:26px 0;}
.about-list li{
  display:flex;align-items:flex-start;gap:14px;margin-bottom:16px;font-size:15.5px;color:#3b444f;
}
.about-list li i{color:var(--blue);background:rgba(10,141,216,.1);width:28px;height:28px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:13px;flex-shrink:0;margin-top:2px;}

/* ==========================================================================
   VISION / MISSION CARDS
   ========================================================================== */
.vm-card{
  background:var(--white);border-radius:var(--radius);padding:42px 34px;
  border-top:5px solid var(--yellow);box-shadow:var(--shadow-card);
  transition:.35s var(--ease);height:100%;
}
.vm-card:hover{transform:translateY(-10px);box-shadow:0 20px 50px rgba(10,141,216,.18);}
.vm-icon{
  width:66px;height:66px;border-radius:50%;background:var(--blue);color:var(--yellow);
  display:flex;align-items:center;justify-content:center;font-size:26px;margin-bottom:24px;
}
.vm-card h4{font-size:22px;margin-bottom:14px;}
.vm-card p{color:#5b6673;font-size:15.5px;line-height:1.75;}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-card{
  background:var(--white);border:1px solid var(--border);border-radius:var(--radius);
  padding:34px 26px;text-align:center;transition:.35s var(--ease);height:100%;cursor:default;
}
.why-card:hover{
  background:var(--blue);border-color:var(--blue);transform:translateY(-8px);
  box-shadow:0 20px 44px rgba(10,141,216,.3);
}
.why-icon{
  width:64px;height:64px;margin:0 auto 20px;border-radius:50%;background:rgba(10,141,216,.1);
  color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:25px;
  transition:.35s var(--ease);
}
.why-card:hover .why-icon{background:rgba(255,212,0,.15);color:var(--yellow);}
.why-card h5{font-size:16.5px;margin-bottom:10px;transition:.3s;}
.why-card p{font-size:13.8px;color:#5b6673;margin:0;transition:.3s;}
.why-card:hover h5,.why-card:hover p{color:var(--white);}

/* ==========================================================================
   PRODUCT CATEGORIES
   ========================================================================== */
.product-card{
    position:relative;
    height:380px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.product-card .pc-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;      /* Fill the card */
    transition:transform .6s ease;
}

.product-card:hover .pc-bg{
    transform:scale(1.08);
}

.product-card .pc-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.25) 45%,
        rgba(0,0,0,.05) 100%
    );
}

.product-card .pc-content{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    z-index:2;
    color:#fff;
}

.product-card .pc-content h5{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
    color:#fff;
}

.product-card .pc-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#FFD400;
    color:#062A45;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    opacity:0;
    transform:translateY(10px);
    transition:.3s;
}

.product-card:hover .pc-btn{
    opacity:1;
    transform:translateY(0);
}

.product-grid-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    height:100%;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s ease;
    border:1px solid #f2f2f2;
}

.product-grid-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.product-grid-image{
    aspect-ratio:1/1;
    padding:22px;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
}

.product-grid-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-grid-card:hover .product-grid-image img{
    transform:scale(1.06);
}

.product-grid-content{
    padding:18px 20px 22px;
    text-align:center;
    border-top:1px solid #f3f3f3;
}

.product-grid-content h6{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#062A45;
    line-height:1.4;
}
/* ==========================================================================
   MANUFACTURING PROCESS TIMELINE
   ========================================================================== */
.process-track{position:relative;padding-top:10px;}
.process-line-svg{position:absolute;top:34px;left:0;width:100%;height:12px;z-index:0;}
.process-step{position:relative;z-index:1;text-align:center;}
.process-circle{
  width:68px;height:68px;border-radius:50%;background:var(--blue);color:var(--white);
  display:flex;align-items:center;justify-content:center;font-size:24px;margin:0 auto 18px;
  box-shadow:0 8px 20px rgba(10,141,216,.3);transition:.3s var(--ease);border:4px solid var(--white);
}
.process-step:hover .process-circle{background:var(--yellow);color:var(--navy);transform:scale(1.08);}
.process-step h6{font-family:'Poppins';font-weight:600;font-size:14.5px;margin-bottom:6px;}
.process-step .p-num{
  position:absolute;top:-8px;right:calc(50% - 44px);font-family:'Poppins';font-weight:700;
  font-size:12px;color:var(--yellow-dark);background:var(--white);width:22px;height:22px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(0,0,0,.1);
}

/* ==========================================================================
   EXPORT SERVICES
   ========================================================================== */
.export-section{
  position:relative;background:var(--navy);color:var(--white);overflow:hidden;
}
.export-section .world-dots{position:absolute;inset:0;opacity:.18;}
.export-card{
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius);
  padding:32px 28px;height:100%;transition:.35s var(--ease);backdrop-filter:blur(6px);
}
.export-card:hover{background:rgba(255,212,0,.08);border-color:var(--yellow);transform:translateY(-6px);}
.export-icon{
  width:58px;height:58px;border-radius:14px;background:var(--blue);color:var(--yellow);
  display:flex;align-items:center;justify-content:center;font-size:23px;margin-bottom:20px;
}
.export-card h5{color:var(--white);font-size:17px;margin-bottom:10px;}
.export-card p{color:rgba(255,255,255,.65);font-size:14px;margin:0;line-height:1.65;}

/* ==========================================================================
   GLOBAL PRESENCE / MAP
   ========================================================================== */
.map-wrap{position:relative;border-radius:var(--radius);overflow:hidden;background:linear-gradient(160deg,#EAF4FC,#F5F7FA);padding:40px;}
.map-svg{width:100%;height:auto;}
.map-pin{fill:var(--blue);stroke:var(--white);stroke-width:2;cursor:pointer;transition:.3s;}
.map-pin:hover{fill:var(--yellow-dark);}
.country-chip{
  display:inline-flex;align-items:center;gap:10px;background:var(--white);border:1px solid var(--border);
  border-radius:50px;padding:9px 18px;font-size:13.5px;font-weight:500;margin:5px;transition:.3s;
}
.country-chip:hover{border-color:var(--blue);background:rgba(10,141,216,.06);}
.country-chip .flag-circle{
  width:22px;height:22px;border-radius:50%;background:var(--blue);color:var(--yellow);font-size:10px;
  display:flex;align-items:center;justify-content:center;font-weight:700;
}

/* ==========================================================================
   STATS COUNTER
   ========================================================================== */
.stats-strip{background:var(--blue);position:relative;overflow:hidden;}
.stats-strip .swoosh-bg-abs{position:absolute;top:-40px;right:-60px;width:340px;opacity:.25;}
.stat-item{text-align:center;color:var(--white);}
.stat-item .num{
  font-family:'Poppins';font-weight:700;font-size:clamp(34px,4vw,52px);color:var(--yellow);line-height:1;
}
.stat-item .lbl{font-size:14px;color:rgba(255,255,255,.85);margin-top:8px;letter-spacing:.4px;}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-card{
  background:var(--white);border-radius:var(--radius);box-shadow:0 16px 44px rgba(6,42,69,.10);
  padding:40px 34px;margin:20px 8px 40px;position:relative;
}
.testi-quote{
  width:52px;height:52px;border-radius:50%;background:var(--blue);color:var(--yellow);
  display:flex;align-items:center;justify-content:center;font-size:20px;position:absolute;top:-24px;left:34px;
  box-shadow:0 8px 18px rgba(10,141,216,.35);
}
.testi-card p.quote-text{color:#3b444f;font-size:15.5px;line-height:1.8;margin:18px 0 22px;}
.testi-stars{color:var(--yellow);font-size:13px;margin-bottom:10px;}
.testi-person{display:flex;align-items:center;gap:14px;}
.testi-avatar{
  width:48px;height:48px;border-radius:50%;background:var(--gray-light);color:var(--blue);
  display:flex;align-items:center;justify-content:center;font-family:'Poppins';font-weight:700;font-size:16px;
}
.testi-person b{display:block;font-size:14.5px;}
.testi-person span{font-size:12.5px;color:#8a94a3;}
.swiper-pagination-bullet{background:var(--blue);opacity:.3;}
.swiper-pagination-bullet-active{background:var(--yellow);opacity:1;}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion .accordion-item{
  border:1px solid var(--border);border-radius:12px!important;margin-bottom:14px;overflow:hidden;
}
.faq-accordion .accordion-button{
  font-family:'Poppins';font-weight:600;font-size:15.5px;padding:22px 24px;color:var(--text-dark);
  background:var(--white);box-shadow:none;
}
.faq-accordion .accordion-button:not(.collapsed){background:var(--blue);color:var(--white);}
.faq-accordion .accordion-button:not(.collapsed)::after{filter:brightness(0) invert(1);}
.faq-accordion .accordion-button:focus{box-shadow:none;border-color:var(--border);}
.faq-accordion .accordion-body{padding:20px 24px 26px;color:#5b6673;font-size:14.8px;line-height:1.75;}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section{
  background:linear-gradient(120deg,var(--blue-darker),var(--blue));position:relative;overflow:hidden;
  padding:90px 0;color:var(--white);
}
.cta-section .cta-swoosh{position:absolute;bottom:-20px;left:0;width:100%;opacity:.5;}
.cta-section h2{color:var(--white);font-size:clamp(28px,4vw,40px);}
.btn-cta-yellow{
  background:var(--yellow);color:var(--navy);font-family:'Poppins';font-weight:600;
  padding:15px 34px;border-radius:50px;border:2px solid var(--yellow);transition:.3s var(--ease);
}
.btn-cta-yellow:hover{background:transparent;color:var(--yellow);transform:translateY(-3px);}
.btn-cta-white{
  background:transparent;color:var(--white);font-family:'Poppins';font-weight:600;
  padding:15px 34px;border-radius:50px;border:2px solid rgba(255,255,255,.6);transition:.3s var(--ease);
}
.btn-cta-white:hover{background:var(--white);color:var(--blue);transform:translateY(-3px);}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-info-card{
  background:var(--blue);color:var(--white);border-radius:var(--radius);padding:44px 36px;height:100%;
  position:relative;overflow:hidden;
}
.contact-info-item{display:flex;gap:16px;align-items:flex-start;margin-bottom:26px;}
.contact-info-item i{
  width:44px;height:44px;border-radius:12px;background:rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;color:var(--yellow);font-size:17px;flex-shrink:0;
}
.contact-info-item b{display:block;font-size:15px;margin-bottom:3px;}
.contact-info-item span{font-size:13.5px;color:rgba(255,255,255,.75);}
.social-circle{
  width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.15);color:var(--white);
  display:flex;align-items:center;justify-content:center;transition:.3s;margin-right:8px;
}
.social-circle:hover{background:var(--yellow);color:var(--navy);}

.form-nde{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-card);padding:44px;}
.form-nde .form-control,.form-nde .form-select{
  border:1.5px solid var(--border);border-radius:10px;padding:13px 16px;font-size:14.5px;
}
.form-nde .form-control:focus,.form-nde .form-select:focus{
  border-color:var(--blue);box-shadow:0 0 0 3px rgba(10,141,216,.12);
}
.form-nde label{font-size:13.5px;font-weight:600;margin-bottom:7px;color:var(--text-dark);}
.file-upload-box{
  border:2px dashed var(--border);border-radius:10px;padding:24px;text-align:center;color:#8a94a3;
  transition:.3s;cursor:pointer;
}
.file-upload-box:hover{border-color:var(--blue);color:var(--blue);background:rgba(10,141,216,.03);}
.btn-submit-nde{
  background:var(--blue);color:var(--white);font-family:'Poppins';font-weight:600;
  padding:14px 36px;border-radius:50px;border:none;width:100%;transition:.3s var(--ease);
}
.btn-submit-nde:hover{background:var(--navy);}
.social-links{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:30px;
}

.social-circle{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
    flex-shrink:0;
}

.social-circle:hover{
    background:var(--yellow);
    color:var(--navy);
    transform:translateY(-3px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-nde{background:var(--navy);color:rgba(255,255,255,.75);padding-top:90px;}
.footer-nde h6{color:var(--white);font-family:'Poppins';font-weight:600;font-size:15.5px;margin-bottom:22px;position:relative;padding-bottom:12px;}
.footer-nde h6::after{content:"";position:absolute;left:0;bottom:0;width:34px;height:3px;background:var(--yellow);border-radius:3px;}
.footer-nde ul{list-style:none;padding:0;margin:0;}
.footer-nde ul li{margin-bottom:12px;}
.footer-nde ul li a{color:rgba(255,255,255,.7);font-size:14px;transition:.3s;}
.footer-nde ul li a:hover{color:var(--yellow);padding-left:4px;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:60px;padding:26px 0;font-size:13.5px;}
.footer-logo{font-family:'Poppins';font-weight:700;font-size:22px;color:var(--white);}
.footer-logo span{color:var(--yellow);}

/* ==========================================================================
   FLOATING UI
   ========================================================================== */
.whatsapp-float{
  position:fixed;bottom:26px;left:26px;width:58px;height:58px;border-radius:50%;
  background:#25D366;color:var(--white);display:flex;align-items:center;justify-content:center;
  font-size:27px;box-shadow:0 8px 22px rgba(37,211,102,.4);z-index:998;transition:.3s;
}
.whatsapp-float:hover{transform:scale(1.08);color:var(--white);}
.catalogue-float{
  position:fixed;bottom:26px;right:96px;background:var(--yellow);color:var(--navy);
  font-family:'Poppins';font-weight:600;font-size:13.5px;padding:14px 20px;border-radius:50px;
  box-shadow:0 8px 22px rgba(255,212,0,.4);z-index:998;display:flex;align-items:center;gap:8px;transition:.3s;
}
.catalogue-float:hover{transform:translateY(-3px);color:var(--navy);}
.back-to-top{
  position:fixed;bottom:26px;right:26px;width:48px;height:48px;border-radius:50%;
  background:var(--blue);color:var(--white);display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(10,141,216,.35);z-index:998;opacity:0;visibility:hidden;transition:.3s;
}
.back-to-top.show{opacity:1;visibility:visible;}
.back-to-top:hover{background:var(--navy);color:var(--white);}

/* Product modal quick preview */
.modal-nde .modal-content{border-radius:var(--radius);border:none;overflow:hidden;}
.modal-nde .modal-header{border-bottom:1px solid var(--border);}
.modal-preview-img{
  aspect-ratio:1/1;background:linear-gradient(150deg,var(--blue),var(--navy));border-radius:12px;
  display:flex;align-items:center;justify-content:center;font-size:70px;color:rgba(255,212,0,.8);
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;}
}

/* Focus visibility */
a:focus-visible,button:focus-visible{outline:3px solid var(--yellow);outline-offset:2px;}

@media (max-width:991px){
  .floating-stat{position:static;margin-bottom:14px;animation:none;}
  .about-badge{position:static;margin-top:20px;display:inline-block;}
}
