/* =========================
ROOT
========================= */
:root{
    --primary:#002b5c;
    --secondary:#0056b3;
    --accent:#00d4ff;
    --dark:#001221;
    --light:#f4f8fc;
    --white:#ffffff;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    overflow-x:hidden;
    color:#333;
}

/* =========================
TOPBAR
========================= */
.topbar{
    background:linear-gradient(90deg,#001221,#002b5c);
    color:#fff;
    padding:12px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

.topbar i{
    color:var(--accent);
    margin-right:8px;
}

.topbar-left span{
    margin-right:25px;
}

.social-icons i{
    margin-left:15px;
    cursor:pointer;
    transition:0.3s;
}

.social-icons i:hover{
    color:var(--accent);
    transform:translateY(-3px);
}

/* =========================
HEADER
========================= */
header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(14px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 7%;
    min-height:110px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    overflow:visible;
}

header::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,transparent,#00d4ff,#0056b3,transparent);
    background-size:200% 100%;
    animation:lineMove 4s linear infinite;
}

@keyframes lineMove{
    0%{ background-position:100% 0; }
    100%{ background-position:-100% 0; }
}

/* =========================
LOGO
========================= */
.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    height:95px;
    width:auto;
}

.logo h2{
    font-size:24px;
    color:var(--primary);
    font-family:'Montserrat',sans-serif;
    font-weight:800;
    white-space:nowrap;
}

/* =========================
NAVIGATION
========================= */
nav{
    display:flex;
    align-items:center;
    gap:18px;
}

.menu-item{
    text-decoration:none;
    color:#222;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.5px;
    position:relative;
    padding:10px 0;
    transition:0.3s;
}

.menu-item:hover{
    color:var(--secondary);
}

.menu-item::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:0.3s;
}

.menu-item:hover::after{
    width:100%;
}

/* =========================
DROPDOWN
========================= */
.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:55px;
    left:0;
    min-width:280px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s ease;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:15px 22px;
    text-decoration:none;
    color:#333;
    font-size:14px;
    font-weight:500;
    border-bottom:1px solid #f1f1f1;
    transition:0.3s;
}

.dropdown-menu a:hover{
    background:#f4f9ff;
    color:#0056b3;
    padding-left:30px;
}

/* =========================
BUTTON
========================= */
.quote-btn{
    background:linear-gradient(135deg,#0056b3,#002b5c);
    color:#fff !important;
    padding:14px 30px;
    border-radius:50px;
    box-shadow:0 12px 25px rgba(0,86,179,0.2);
}

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

/* =========================
MENU TOGGLE
========================= */
.menu-toggle{
    display:none;
    font-size:28px;
    color:var(--primary);
    cursor:pointer;
}

/* =========================
HERO (old - kept for compatibility)
========================= */
.hero{
    height:92vh;
    background:linear-gradient(rgba(0,20,40,0.75),rgba(0,20,40,0.75)),url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 5%;
    color:#fff;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    font-family:'Montserrat',sans-serif;
    font-weight:800;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    max-width:850px;
    margin:auto;
    margin-bottom:40px;
}

/* =========================
BUTTONS
========================= */
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
    display:inline-block;
}

.btn-primary{
    background:linear-gradient(135deg,var(--accent),var(--secondary));
    color:#fff;
}

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

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:var(--primary);
}

/* =========================
SECTION
========================= */
.section{
    padding:100px 7%;
}

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

.section-title h2{
    font-size:42px;
    font-family:'Montserrat',sans-serif;
    color:var(--primary);
}

/* =========================
PRODUCTS
========================= */
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    padding:40px 30px;
    border-radius:22px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.product-card:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.product-card i{
    font-size:55px;
    color:var(--secondary);
    margin-bottom:25px;
}

.product-card h3{
    margin-bottom:15px;
}

.capacity{
    display:inline-block;
    background:#eef5ff;
    color:var(--primary);
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

/* =========================
FOOTER (simple)
========================= */
footer{
    background:#000c18;
    color:#ccc;
    text-align:center;
    padding:30px;
}

/* =========================
HERO SLIDER
========================= */
.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    background:#001221;
    font-family:'Montserrat',sans-serif;
}

.hero-slide{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:opacity 1s ease-in-out,transform 1.2s ease;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    transform:scale(1.1);
}

.hero-slide::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,18,33,0.7),rgba(0,18,33,0.85));
    z-index:1;
}

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

.hero-content{
    position:relative;
    z-index:10;
    text-align:center;
    max-width:800px;
    padding:0 20px;
}

.hero-tag{
    color:#00d4ff;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:20px;
    display:block;
}

.hero-content h1{
    font-size:55px;
    color:#fff;
    margin-bottom:20px;
    font-weight:800;
}

.hero-content p{
    font-size:18px;
    color:#dbe7ff;
    margin-bottom:35px;
}

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

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

.dot.active{
    width:30px;
    border-radius:10px;
    background:#00d4ff;
}

/* =========================
ABOUT SECTION
========================= */
.about-premium{
    position:relative;
    background:#ffffff;
    overflow:hidden;
    padding:70px 6%;
}

.about-premium::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:320px;
    height:320px;
    background:rgba(0,86,179,0.04);
    border-radius:50%;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:center;
    position:relative;
    z-index:2;
}

.about-image-box{
    position:relative;
}

.about-image-box img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:24px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.experience-box{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#0056b3;
    color:#fff;
    padding:18px 24px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,86,179,0.30);
}

.experience-box h2{
    font-size:34px;
    margin-bottom:2px;
    font-family:'Montserrat',sans-serif;
    font-weight:800;
}

.experience-box p{
    font-size:13px;
}

.support-card{
    position:absolute;
    top:20px;
    right:20px;
    background:#fff;
    padding:14px 18px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.10);
    display:flex;
    align-items:center;
    gap:12px;
}

.support-card i{
    width:45px;
    height:45px;
    background:linear-gradient(135deg,#00d4ff,#0056b3);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.support-card h4{
    font-size:15px;
    color:#002b5c;
    margin-bottom:2px;
}

.support-card p{
    font-size:12px;
    color:#666;
}

.about-subtitle{
    display:inline-block;
    background:#eef5ff;
    color:#0056b3;
    padding:8px 18px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:16px;
}

.about-content h2{
    font-size:40px;
    line-height:1.2;
    color:#002b5c;
    margin-bottom:16px;
    font-family:'Montserrat',sans-serif;
    font-weight:800;
}

.about-content h2 span{
    color:#0056b3;
}

.about-content p{
    font-size:15px;
    line-height:1.8;
    color:#555;
    margin-bottom:14px;
}

.feature-list{
    margin-top:22px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.feature-item{
    display:flex;
    gap:12px;
    background:#fff;
    padding:16px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s;
    border:1px solid #eef2f7;
}

.feature-item:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.feature-item i{
    width:48px;
    height:48px;
    background:linear-gradient(135deg,#0056b3,#002b5c);
    color:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.feature-item h4{
    font-size:16px;
    margin-bottom:4px;
    color:#002b5c;
}

.feature-item p{
    font-size:13px;
    line-height:1.5;
    margin:0;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:26px;
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    background:linear-gradient(135deg,#00d4ff,#0056b3);
    color:#fff;
    transition:0.4s;
    box-shadow:0 12px 28px rgba(0,212,255,0.25);
}

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

/* =========================
WINCH PRODUCTS SECTION
========================= */
.winch-section{
    padding:100px 8%;
    background:#ffffff;
    font-family:'Poppins',sans-serif;
}

.winch-header{
    text-align:center;
    margin-bottom:70px;
}

.winch-header h2{
    font-family:'Montserrat',sans-serif;
    font-size:40px;
    color:#001a33;
    font-weight:800;
    margin-bottom:15px;
    text-transform:uppercase;
}

.winch-header .underline{
    width:80px;
    height:5px;
    background:#0056b3;
    margin:0 auto;
    border-radius:10px;
}

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

.winch-card{
    background:#fff;
    border:1px solid #e1e8f0;
    border-radius:20px;
    padding:40px 30px;
    transition:all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    display:flex;
    flex-direction:column;
    align-items:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.02);
}

.winch-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,26,51,0.12);
    border-color:#0056b3;
}

.image-holder{
    width:100%;
    height:250px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    background:#f9fbfd;
    border-radius:15px;
    padding:20px;
}

.image-holder img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    transition:0.5s;
}

.winch-card:hover .image-holder img{
    transform:scale(1.1);
}

.winch-card h3{
    font-size:24px;
    color:#001a33;
    margin:10px 0;
    font-weight:700;
}

.badge{
    background:#e6f0ff;
    color:#0056b3;
    padding:6px 16px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.specs-list{
    width:100%;
    margin:20px 0;
    border-top:1px solid #f0f0f0;
}

.spec-item{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #f0f0f0;
    font-size:14px;
}

.spec-label{ color:#888; }
.spec-value{ color:#333; font-weight:600; }

.card-actions{
    display:flex;
    gap:15px;
    margin-top:auto;
    width:100%;
}

.btn-main{
    flex:1;
    padding:12px;
    text-align:center;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    font-size:13px;
    transition:0.3s;
}

.btn-outline{
    border:2px solid #0056b3;
    color:#0056b3;
}

.btn-outline:hover{
    background:#0056b3;
    color:#fff;
}

.btn-filled{
    background:#001a33;
    color:#fff;
}

.btn-filled:hover{
    background:#0056b3;
}

/* =========================
FEATURES SECTION
========================= */
.features-section{
    padding:100px 7%;
    background:#f8faff;
}

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

.feature-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    transition:0.3s;
    border-bottom:5px solid transparent;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.feature-box:hover{
    transform:translateY(-10px);
    border-color:#0056b3;
}

.feature-box i{
    font-size:40px;
    color:#0056b3;
    margin-bottom:20px;
}

.feature-box h4{
    margin-bottom:15px;
    color:#001a33;
    font-weight:700;
}

.feature-box p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

/* =========================
STATS SECTION
========================= */
.stats-section{
    background:linear-gradient(rgba(0,26,51,0.9),rgba(0,26,51,0.9)),url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&q=80');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    padding:100px 8%;
    color:#ffffff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
    text-align:center;
}

.stat-card i{
    font-size:50px;
    color:#00d4ff;
    margin-bottom:20px;
    display:block;
}

.stat-number{
    font-size:54px;
    font-weight:800;
    font-family:'Montserrat',sans-serif;
    display:block;
    margin-bottom:10px;
}

.stat-label{
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#ccd6f6;
}

/* =========================
PROCESS SECTION
========================= */
.process-section{
    padding:100px 7%;
    background:#ffffff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    margin-top:50px;
}

.process-card{
    text-align:center;
    position:relative;
}

.process-icon{
    width:80px;
    height:80px;
    background:#f0f7ff;
    color:#0056b3;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 20px;
    transition:0.4s;
    border:2px dashed #0056b3;
}

.process-card:hover .process-icon{
    background:#0056b3;
    color:#fff;
    border-style:solid;
    transform:rotateY(360deg);
}

.process-card h4{
    color:#001a33;
    margin-bottom:10px;
    font-size:18px;
}

.process-card p{
    font-size:14px;
    color:#666;
}

/* =========================
CONTACT SECTION
========================= */
.contact-section{
    padding:100px 7%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    background:#fff;
}

.contact-info h2{
    font-size:36px;
    color:#001a33;
    margin-bottom:20px;
    font-family:'Montserrat',sans-serif;
}

.info-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.info-item i{
    width:50px;
    height:50px;
    background:#eef5ff;
    color:#0056b3;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:20px;
}

.info-text h4{ margin-bottom:5px; color:#001a33; }
.info-text p{ color:#666; font-size:14px; }

.map-container iframe{
    width:100%;
    height:100%;
    min-height:400px;
    border-radius:20px;
    border:none;
    box-shadow:0 10px 40px rgba(0,0,0,0.1);
}

/* =========================
ULTRA MODERN FOOTER
========================= */
.ultra-modern-footer{
    background:#01060d;
    color:#ffffff;
    padding:100px 8% 40px;
    font-family:'Plus Jakarta Sans',sans-serif;
    position:relative;
    overflow:hidden;
}

.ultra-modern-footer::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle,rgba(0,212,255,0.05) 0%,transparent 70%);
    top:-200px;
    left:-100px;
    pointer-events:none;
}

.f-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    gap:50px;
    position:relative;
    z-index:2;
}

.f-brand img{
    height:55px;
    margin-bottom:25px;
    filter:brightness(0) invert(1);
}

.f-brand p{
    color:#fff;
    font-size:14px;
    line-height:1.8;
    margin-bottom:30px;
}

.f-col h4{
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#00d4ff;
    margin-bottom:30px;
}

.f-links{ list-style:none; padding:0; }
.f-links li{ margin-bottom:15px; }

.f-links li a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:14px;
    position:relative;
    padding-bottom:2px;
    transition:0.3s;
}

.f-links li a::after{
    content:'';
    position:absolute;
    width:0;
    height:1px;
    bottom:0;
    left:0;
    background:#00d4ff;
    transition:width 0.3s ease;
}

.f-links li a:hover{ color:#fff; }
.f-links li a:hover::after{ width:100%; }

.glass-card{
    background:rgba(255,255,255,0.02);
    border:1px solid rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    padding:25px;
    border-radius:20px;
}

.contact-row{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
    font-size:14px;
    color:#94a3b8;
}

.contact-row i{
    width:32px;
    height:32px;
    background:rgba(0,212,255,0.1);
    color:#00d4ff;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.f-bottom{
    margin-top:80px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.05);
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.social-pills{ display:flex; gap:12px; }

.social-pills a{
    width:40px;
    height:40px;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#94a3b8;
    transition:0.3s;
    text-decoration:none;
}

.social-pills a:hover{
    background:#fff;
    color:#000;
    transform:translateY(-5px);
}

/* =========================
RESPONSIVE
========================= */
@media(max-width:992px){
    .hero-content h1{ font-size:52px; }
    .about-wrapper{ grid-template-columns:1fr; }
    .about-content h2{ font-size:34px; }
    .f-grid{ grid-template-columns:1fr 1fr; }
}

@media(max-width:768px){
    .topbar{
        flex-direction:column;
        gap:10px;
        text-align:center;
        padding:12px 15px;
    }
    header{
        padding:12px 15px;
        min-height:auto;
    }
    .logo{
        gap:10px;
        max-width:75%;
    }
    .logo img{ height:55px; }
    .logo h2{
        font-size:12px;
        line-height:1.3;
        white-space:normal;
    }
    .menu-toggle{ display:block; }
    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        display:none;
        box-shadow:0 15px 30px rgba(0,0,0,0.08);
    }
    nav.active{ display:flex; }
    .menu-item{
        width:100%;
        padding:12px 0;
    }
    .dropdown{ width:100%; }
    .dropdown-menu{
        position:relative;
        top:10px;
        left:0;
        width:100%;
        min-width:100%;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        box-shadow:none;
        border:1px solid #eee;
    }
    .dropdown:hover .dropdown-menu{ display:block; }
    .hero{
        height:auto;
        padding:140px 20px;
    }
    .hero-content h1{ font-size:38px; }
    .hero-content p{ font-size:16px; }
    .section{ padding:70px 20px; }
    .hero-content h1{ font-size:32px; }
    .hero-buttons{ flex-direction:column; align-items:center; }
    .about-premium{ padding:55px 5%; }
    .about-wrapper{ gap:30px; }
    .about-image-box img{ height:350px; }
    .feature-list{ grid-template-columns:1fr; }
    .about-content h2{ font-size:28px; }
    .experience-box{
        left:12px;
        bottom:12px;
        padding:14px 18px;
    }
    .experience-box h2{ font-size:26px; }
    .support-card{
        right:12px;
        top:12px;
        padding:12px 14px;
    }
    .support-card h4{ font-size:14px; }
    .winch-grid{ grid-template-columns:1fr; }
    .winch-header h2{ font-size:30px; }
    .stats-section{ padding:60px 5%; }
    .stat-number{ font-size:38px; }
    .stat-card i{ font-size:35px; }
    .contact-section{ grid-template-columns:1fr; padding:60px 20px; }
    .f-grid{ grid-template-columns:1fr; }
    .f-bottom{ flex-direction:column-reverse; gap:30px; text-align:center; }
    #navbar{
        display:none;
        flex-direction:column;
        width:100%;
        background-color:#fff;
        position:absolute;
        top:60px;
        left:0;
        z-index:1000;
    }
    #navbar.active{ display:flex; }
    .quote-btn{
        background-color:#003366 !important;
        color:white !important;
        padding:12px 25px !important;
        border-radius:50px;
        text-align:center;
        display:inline-block;
        width:fit-content;
        margin-top:15px;
        white-space:nowrap;
    }
}

@media(max-width:500px){
    .f-grid{ grid-template-columns:1fr; }
}

@media(min-width:992px){
    .process-card:not(:last-child)::after{
        content:'→';
        position:absolute;
        top:40px;
        right:-20px;
        font-size:24px;
        color:#ccc;
    }
}
/* --- Modern Footer Styling --- */
.main-footer {
    background-color: #001529; /* Deep Professional Blue */
    color: #ffffff;
    padding: 80px 0 30px 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* First column wider */
    gap: 40px;
    margin-bottom: 50px;
}

/* Column Headings */
.fc h5 {
    color: #00d4ff; /* Brand Accent Color */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Heading खालची छोटी ओळ */
.fc h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #00d4ff;
}

/* About Column */
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Logo pandhara karnyasathi jar to dark asel tar */
}

.about-col p {
    color: #b0c4de;
    line-height: 1.8;
    font-size: 14px;
}

/* Lists and Links */
.fc ul {
    list-style: none;
    padding: 0;
}

.fc ul li {
    margin-bottom: 12px;
}

.fc ul li a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.fc ul li a:hover {
    color: #ffffff;
    transform: translateX(8px); /* Hover kelyavar thoda pudhe sarnar */
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #8fa3b8;
}

/* Social Icons */
.social-row {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #00d4ff;
    color: #001529;
    transform: translateY(-5px);
}

/* Responsive (Mobile) */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .fc h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   ULTRA MODERN FOOTER — Replace your existing footer styles
   ============================================================ */

.ultra-modern-footer {
    background: #0d1117;
    padding: 60px 40px 0;
    font-family: 'Poppins', sans-serif;
}

/* ── TOP GRID ── */
.footer-inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    max-width: 1200px;
    margin: 0 auto;
}

/* ── BRAND COLUMN ── */
.f-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.f-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.f-logo-icon {
    width: 42px;
    height: 42px;
    background: #0055cc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.f-logo-icon i {
    font-size: 20px;
    color: #fff;
}

.f-logo-text {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.25;
}

.f-logo-text small {
    display: block;
    font-size: 9.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.12em;
    margin-top: 2px;
}

.f-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Trust badges */
.f-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.f-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 600;
    color: #4d9eff;
    background: rgba(0, 85, 204, 0.1);
    border: 1px solid rgba(0, 85, 204, 0.22);
    border-radius: 999px;
    padding: 4px 11px;
    letter-spacing: 0.02em;
}

.f-badge i { font-size: 10px; }

/* Contact chips */
.f-contacts {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.f-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
}

.f-chip i {
    width: 15px;
    font-size: 11px;
    color: #ff6b1a;
    flex-shrink: 0;
}

.f-chip a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.f-chip a:hover { color: #fff; }

/* ── LINK COLUMNS ── */
.f-col-head {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.f-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    transition: color 0.18s, padding-left 0.18s;
}

.f-links li a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Heavy duty — red dot */
.f-col-heavy .f-links li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
}

/* Standard range — blue dot */
.f-col-std .f-links li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
}

/* Quick links — arrow */
.f-col-nav .f-links li a::before {
    content: '›';
    font-size: 16px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.f-social {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.38);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.f-social:hover {
    background: #0055cc;
    border-color: #0055cc;
    color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .ultra-modern-footer { padding: 44px 20px 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }


}
<style id="footer-css-copy-this">

/* TOP ACCENT BAR */
.footer-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, #0055cc 0%, #3b82f6 45%, #ff6b1a 100%);
}

/* WRAPPER */
.ultra-modern-footer {
    background: #0b0f1a;
    font-family: 'Poppins', sans-serif;
    padding: 0;
}

/* MAIN GRID */
.footer-inner {
    display: grid;
    grid-template-columns: 1.9fr 1fr 1fr 1fr;
    gap: 44px;
    padding: 52px 44px 44px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── BRAND ── */
.f-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.f-logo-icon {
    width: 44px;
    height: 44px;
    background: #0055cc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.f-logo-icon i { font-size: 20px; color: #fff; }

.f-logo-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: 0.03em;
}
.f-logo-text small {
    display: block;
    font-size: 9px;
    font-weight: 500;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.16em;
    margin-top: 3px;
}

.f-desc {
    font-size: 12.5px;
    color: rgba(255,255,255,0.38);
    line-height: 1.85;
    margin-bottom: 18px;
}

/* TRUST BADGES */
.f-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}
.f-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: #5b9cf6;
    background: rgba(91,156,246,0.1);
    border: 1px solid rgba(91,156,246,0.2);
    border-radius: 999px;
    padding: 3px 10px;
}
.f-badge i { font-size: 9px; }

/* CONTACT CHIPS */
.f-chips { display: flex; flex-direction: column; gap: 9px; }
.f-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: rgba(255,255,255,0.42);
}
.f-chip i { font-size: 11px; color: #ffff; width: 14px; flex-shrink: 0; }
.f-chip a { color: #fff;); text-decoration: none; transition: color .2s; }
.f-chip a:hover { color: #fff; }

/* ── COLUMN HEADS ── */
.f-col-title {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.22);
    text-transform: uppercase;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── LINKS ── */
.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.f-links li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.f-links li:last-child { border-bottom: none; }

.f-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    transition: color .18s, padding-left .18s;
}
.f-links a:hover { color: #fff; padding-left: 5px; }

/* Red dot — heavy duty */
.f-links-heavy a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
}

/* Blue dot — standard range */
.f-links-std a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
}

/* Arrow — quick links */
.f-links-nav a::before {
    content: '›';
    font-size: 16px;
    line-height: 1;
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: color .18s;
}
.f-links-nav a:hover::before { color: #ff6b1a; }

/* ── DIVIDER ── */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0 44px;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 44px 24px;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.18); }

.footer-socials { display: flex; gap: 7px; }
.f-soc {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.f-soc:hover { background: #0055cc; border-color: #0055cc; color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 28px 32px; }
    .footer-divider { margin: 0 28px; }
    .footer-bottom { padding: 16px 28px 22px; }
}
@media (max-width: 600px) {
    .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 28px; }
    .footer-divider { margin: 0 20px; }
    .footer-bottom { padding: 14px 20px 20px; flex-direction: column; align-items: flex-start; }
}

 :root {
    --blue:     #0d6efd;
    --blue-dark:#0a58ca;
    --teal:     #0dcaf0;
    --teal-dark:#0aa8c7;
    --navy:     #001428;
    --navy-mid: #002147;
    --white:    #ffffff;
    --light:    #f4f8fc;
    --light2:   #e8f4fd;
    --muted:    #6c757d;
    --border:   #dee2e6;
    --text:     #212529;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', sans-serif; background: #fff; color: var(--text); overflow-x: hidden; }

  /* TOPBAR */
  .topbar { background: var(--navy); padding: 8px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.85); }
  .topbar-left { display: flex; gap: 24px; align-items: center; }
  .topbar-left span i { margin-right: 7px; color: var(--teal); }
  .topbar-social { display: flex; gap: 10px; }
  .topbar-social a { width: 28px; height: 28px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; text-decoration: none; transition: background .2s; }
  .topbar-social a:hover { background: var(--teal); color: var(--navy); }

  /* =========================
MOBILE SCROLL FIX
========================= */

html,
body{
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

.winch-features-section{
    width:100%;
    overflow:hidden;
}

.winch-container{
    width:100%;
    max-width:1250px;
    margin:auto;
}

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

.winch-card{
    width:100%;
    min-width:0;
}

/* MOBILE */
@media(max-width:768px){

.winch-features-section{
    padding:50px 15px;
}

.winch-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.winch-card{
    padding:24px 20px;
    border-radius:15px;
}

.winch-heading h2{
    font-size:28px;
    line-height:1.4;
}

.winch-heading p{
    font-size:15px;
}

.winch-card h3{
    font-size:21px;
    line-height:1.5;
}

.feature-box h4{
    font-size:17px;
}

.feature-box p,
.feature-box ul li{
    font-size:14px;
    line-height:1.8;
}

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

.topbar{
    background:linear-gradient(90deg,#001221,#002b5c);
    color:#fff;
    padding:12px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

.topbar i{
    color:var(--accent);
    margin-right:8px;
}

.topbar-left span{
    margin-right:25px;
}

.social-icons i{
    margin-left:15px;
    cursor:pointer;
    transition:0.3s;
}

.social-icons i:hover{
    color:var(--accent);
    transform:translateY(-3px);
}

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

header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(14px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 7%;
    min-height:110px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    overflow:visible;
}

header::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:
    linear-gradient(
    90deg,
    transparent,
    #00d4ff,
    #0056b3,
    transparent);
    background-size:200% 100%;
    animation:lineMove 4s linear infinite;
}

@keyframes lineMove{

    0%{
        background-position:100% 0;
    }

    100%{
        background-position:-100% 0;
    }

}

  /* BREADCRUMB */
  .breadcrumb-bar { background: var(--light); border-bottom: 1px solid var(--border); padding: 12px 40px; font-size: 13px; color: var(--muted); }
  .breadcrumb-bar a { color: var(--blue); text-decoration: none; }
  .breadcrumb-bar a:hover { text-decoration: underline; }
  .breadcrumb-bar span { margin: 0 8px; }

  /* HERO */
  .product-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #003366 100%); padding: 70px 40px 60px; position: relative; overflow: hidden; }
  .product-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 700px 500px at 85% 50%, rgba(13,202,240,.08) 0%, transparent 70%), radial-gradient(ellipse 400px 400px at 10% 80%, rgba(13,110,253,.08) 0%, transparent 60%); pointer-events: none; }
  .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
  .hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(13,202,240,.15); border: 1px solid rgba(13,202,240,.35); color: var(--teal); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 30px; margin-bottom: 20px; }
  .hero-title { font-family: 'Montserrat', sans-serif; font-size: clamp(28px,4vw,48px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 18px; }
  .hero-title .hl { color: var(--teal); }
  .hero-desc { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
  .hero-specs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
  .hsr-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-left: 3px solid var(--teal); padding: 13px 16px; border-radius: 8px; }
  .hsr-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: 4px; font-weight: 600; }
  .hsr-value { font-family: 'Montserrat', sans-serif; font-size: 19px; font-weight: 700; color: #fff; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-teal { background: linear-gradient(135deg, var(--teal), #00b4d8); color: var(--navy); padding: 13px 30px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; border: none; border-radius: 30px; cursor: pointer; text-decoration: none; transition: all .25s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 6px 20px rgba(13,202,240,.35); }
  .btn-teal:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,202,240,.45); }
  .btn-outline-hero { background: transparent; color: #fff; padding: 12px 28px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; border: 2px solid rgba(255,255,255,.35); border-radius: 30px; cursor: pointer; text-decoration: none; transition: all .25s; display: inline-flex; align-items: center; gap: 8px; }
  .btn-outline-hero:hover { border-color: var(--teal); color: var(--teal); }
  .hero-img-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
  .img-glow { width: 420px; height: 420px; background: radial-gradient(circle, rgba(13,202,240,.12) 0%, transparent 70%); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
  .img-glow::before { content: ''; position: absolute; inset: 30px; border: 1px solid rgba(13,202,240,.2); border-radius: 50%; animation: spin-ring 10s linear infinite; }
  @keyframes spin-ring { to { transform: rotate(360deg); } }
  .img-glow img { width: 340px; height: 340px; object-fit: contain; filter: drop-shadow(0 20px 50px rgba(0,0,0,.5)); animation: bob 4s ease-in-out infinite; position: relative; z-index: 2; }
  @keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
  .model-pill { position: absolute; top: 20px; right: 0; background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1px; padding: 7px 18px; border-radius: 20px; box-shadow: 0 4px 14px rgba(13,110,253,.4); }

  /* SECTION HELPERS */
  .sec-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
  .sec-head { text-align: center; margin-bottom: 52px; }
  .sec-tag2 { display: inline-block; background: var(--light2); color: var(--blue); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 6px 18px; border-radius: 30px; margin-bottom: 14px; }
  .sec-title2 { font-family: 'Montserrat', sans-serif; font-size: clamp(22px,3.5vw,36px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
  .sec-title2 em { color: var(--blue); font-style: normal; }
  .sec-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 580px; margin: 0 auto; }
  .divider-line { width: 60px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--teal)); border-radius: 2px; margin: 18px auto 0; }

  /* WHY CHOOSE */
  .why-bg { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .why-card { background: var(--light); border: 1px solid var(--border); border-radius: 14px; padding: 32px 26px; transition: all .3s; position: relative; overflow: hidden; }
  .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
  .why-card:hover::before { transform: scaleX(1); }
  .why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,110,253,.1); border-color: rgba(13,110,253,.2); }
  .why-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue), var(--teal)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; margin-bottom: 20px; box-shadow: 0 6px 18px rgba(13,110,253,.25); }
  .why-card h4 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

  /* FEATURES */
  .feat-bg { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .feat-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; transition: all .25s; }
  .feat-item:hover { border-color: var(--teal); box-shadow: 0 6px 20px rgba(13,202,240,.1); }
  .feat-check { width: 38px; height: 38px; background: linear-gradient(135deg, var(--blue), var(--teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff; flex-shrink: 0; box-shadow: 0 4px 12px rgba(13,110,253,.25); }
  .feat-text h5 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
  .feat-text p { font-size: 13px; color: var(--muted); line-height: 1.55; }

  /* SPECS */
  .specs-bg { background: var(--white); }
  .specs-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,.06); }
  .specs-table { width: 100%; border-collapse: collapse; }
  .specs-table thead { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
  .specs-table thead th { padding: 18px 28px; text-align: left; }
  .specs-table tbody tr { border-bottom: 1px solid var(--border); transition: background .2s; }
  .specs-table tbody tr:last-child { border-bottom: none; }
  .specs-table tbody tr:nth-child(even) { background: var(--light); }
  .specs-table tbody tr:hover { background: var(--light2); }
  .specs-table td { padding: 14px 28px; font-size: 14px; }
  .specs-table td:first-child { color: var(--muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; width: 45%; }
  .specs-table td:last-child { color: var(--navy); font-weight: 600; font-size: 15px; }

  /* APPLICATIONS */
  .apps-bg { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .apps-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
  .app-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 30px 16px; text-align: center; transition: all .3s; }
  .app-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 12px 32px rgba(13,110,253,.12); }
  .app-card i { font-size: 34px; color: var(--blue); margin-bottom: 14px; display: block; }
  .app-card h5 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.3; }

  /* CUSTOM + SAFETY */
  .custom-bg { background: var(--white); }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .mini-tag { display: inline-block; background: var(--light2); color: var(--blue); font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 12px; }
  .mini-title { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
  .mini-title em { color: var(--blue); font-style: normal; }
  .mini-sub { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 0; }
  .opt-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
  .opt-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--light); border: 1px solid var(--border); border-left: 4px solid var(--teal); border-radius: 10px; transition: all .2s; }
  .opt-item:hover { background: var(--light2); border-left-color: var(--blue); }
  .opt-item i { color: var(--teal); font-size: 16px; width: 20px; text-align: center; }
  .opt-item span { font-size: 14px; font-weight: 500; color: var(--navy); }
  .safety-list2 { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
  .safe-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--light); border: 1px solid var(--border); border-left: 4px solid var(--blue); border-radius: 10px; transition: all .2s; }
  .safe-item:hover { background: var(--light2); }
  .safe-item i { color: var(--blue); font-size: 16px; width: 20px; text-align: center; }
  .safe-item span { font-size: 14px; font-weight: 500; color: var(--navy); }

  /* WHAT YOU GET */
  .get-bg { background: var(--navy); }
  .get-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .get-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 32px 22px; text-align: center; transition: all .3s; }
  .get-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
  .get-card i { font-size: 32px; color: var(--teal); margin-bottom: 16px; display: block; }
  .get-card h5 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .get-card p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

  /* STATS */
  .stats-bg { background: linear-gradient(135deg, var(--blue), var(--teal)); }
  .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1200px; margin: 0 auto; }
  .stat-item { text-align: center; padding: 50px 20px; border-right: 1px solid rgba(255,255,255,.2); }
  .stat-item:last-child { border-right: none; }
  .stat-item i { font-size: 32px; color: rgba(255,255,255,.7); margin-bottom: 14px; display: block; }
  .stat-num { font-family: 'Montserrat', sans-serif; font-size: 44px; font-weight: 800; color: #fff; line-height: 1; }
  .stat-label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 8px; font-weight: 500; }

  /* CTA */
  .cta-bg { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 40px; text-align: center; }
  .cta-bg h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(24px,4vw,40px); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
  .cta-bg h2 em { color: var(--blue); font-style: normal; }
  .cta-bg p { font-size: 16px; color: var(--muted); margin-bottom: 36px; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-blue { background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; padding: 14px 34px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; border: none; border-radius: 30px; cursor: pointer; text-decoration: none; transition: all .25s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 6px 20px rgba(13,110,253,.3); }
  .btn-blue:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,110,253,.4); }
  .btn-outline-blue { background: transparent; color: var(--blue); padding: 13px 30px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; border: 2px solid var(--blue); border-radius: 30px; cursor: pointer; text-decoration: none; transition: all .25s; display: inline-flex; align-items: center; gap: 8px; }
  .btn-outline-blue:hover { background: var(--blue); color: #fff; }

  /* ENQUIRY */
  .enquiry-bg { background: var(--white); }
  .enq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .form-card { background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,.06); }
  .form-card h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 28px; display: flex; align-items: center; gap: 10px; }
  .form-card h3 i { color: var(--blue); }
  .form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-g { margin-bottom: 18px; }
  .form-g label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .5px; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; }
  .form-g input, .form-g select, .form-g textarea { width: 100%; background: #fff; border: 1.5px solid var(--border); color: var(--text); padding: 12px 16px; border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 14px; transition: border-color .2s, box-shadow .2s; outline: none; appearance: none; }
  .form-g input:focus, .form-g select:focus, .form-g textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,110,253,.1); }
  .form-g textarea { resize: vertical; min-height: 100px; }
  .form-submit { width: 100%; background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; padding: 15px; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: none; border-radius: 30px; cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 6px 20px rgba(13,110,253,.3); margin-top: 8px; }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(13,110,253,.4); }
  .contact-col { padding-top: 10px; }
  .contact-col h3 { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
  .contact-col h3 em { color: var(--blue); font-style: normal; }
  .contact-col > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
  .c-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; padding: 18px 20px; background: var(--light); border: 1px solid var(--border); border-radius: 12px; transition: all .2s; }
  .c-info-item:hover { border-color: var(--blue); background: var(--light2); }
  .c-ico { width: 48px; height: 48px; background: linear-gradient(135deg, var(--blue), var(--teal)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; flex-shrink: 0; box-shadow: 0 4px 14px rgba(13,110,253,.25); }
  .c-info-item h5 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .c-info-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }
  .map-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,.07); margin-top: 20px; }
  .map-wrap iframe { display: block; }

  /* FOOTER */
  footer { background: var(--navy); padding: 60px 40px 28px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 28px; }
  .fc h5 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
  .fc p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.75; }
  .fc ul { list-style: none; }
  .fc ul li { margin-bottom: 10px; }
  .fc ul li a { font-size: 13.5px; color: rgba(255,255,255,.55); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color .2s; }
  .fc ul li a::before { content: '›'; color: var(--teal); font-size: 16px; }
  .fc ul li a:hover { color: #fff; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 12px; }
  .social-row { display: flex; gap: 10px; }
  .social-row a { width: 36px; height: 36px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: all .2s; }
  .social-row a:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .topbar, header, .breadcrumb-bar { padding-left: 20px; padding-right: 20px; }
    nav { display: none; }
    .product-hero { padding: 50px 20px; }
    .hero-inner, .two-col, .enq-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-img-wrap { order: -1; }
    .img-glow { width: 280px; height: 280px; }
    .img-glow img { width: 230px; height: 230px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .feat-grid { grid-template-columns: 1fr; }
    .apps-grid { grid-template-columns: repeat(3,1fr); }
    .get-grid { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row2 { grid-template-columns: 1fr; }
    .sec-wrap { padding: 60px 20px; }
    .cta-bg { padding: 60px 20px; }
  }
  @media (max-width: 560px) {
    .why-grid, .apps-grid { grid-template-columns: 1fr; }
    .get-grid, .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  }
</style>
<style>
.content{
    max-width:1200px;
    margin:40px auto;
    padding:0 40px;
}

.content p{
    font-size:15px;
    line-height:1.9;
    color:var(--muted);
    margin-bottom:16px;
}

@media(max-width:768px){

    .content{
        padding:0 20px;
        margin:30px auto;
    }

    .topbar{
        flex-direction:column;
        gap:10px;
        text-align:center;
        padding:12px 15px;
    }

    .topbar-left{
        flex-direction:column;
        gap:8px;
    }

   

  

  
}


</style>

<style>

:root{
    --blue:#0d6efd;
    --teal:#0dcaf0;
    --navy:#001428;
    --light:#f8fbff;
    --white:#fff;
    --text:#333;
    --muted:#666;
    --border:#e1e8f0;
}

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

html{
    scroll-behavior:smooth;
}

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

img,
iframe{
    max-width:100%;
}

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

.topbar{
    background:var(--navy);
    padding:10px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    font-size:13px;
}

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

.topbar-left span i{
    color:var(--teal);
    margin-right:6px;
}

.topbar-social{
    display:flex;
    gap:10px;
}

.topbar-social a{
    width:30px;
    height:30px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.topbar-social a:hover{
    background:var(--teal);
    color:var(--navy);
}

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

header{
    width:100%;
    background:#fff;
    padding:18px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

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

.logo img{
    height:60px;
}

.logo h2{
    font-size:20px;
    color:var(--navy);
    font-family:'Montserrat',sans-serif;
    font-weight:800;
    line-height:1.3;
}

nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.menu-item{
    text-decoration:none;
    color:var(--navy);
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.menu-item:hover{
    color:var(--blue);
}

.quote-btn{
    background:linear-gradient(135deg,var(--blue),var(--teal));
    color:#fff !important;
    padding:12px 24px;
    border-radius:50px;
}

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    background:#fff;
    min-width:280px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    top:100%;
}

.dropdown-menu a{
    display:block;
    padding:14px 18px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
    transition:.3s;
    font-size:14px;
}

.dropdown-menu a:hover{
    background:#f5f7fb;
    color:var(--blue);
}

.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
}

/* =========================
BREADCRUMB
========================= */

.breadcrumb-section{
    background:#f5f7fb;
    padding:40px 20px;
    border-bottom:1px solid #eee;
}

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

.breadcrumb-section h1{
    font-size:38px;
    color:var(--navy);
    margin-bottom:12px;
    font-family:'Montserrat',sans-serif;
}

.breadcrumb-links{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.breadcrumb-links a{
    color:var(--blue);
    text-decoration:none;
    font-size:14px;
}

.active-breadcrumb{
    color:#666;
    font-size:14px;
}

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

.EuroAsia-contact-layout{
    padding:80px 20px;
    background:#f8fbff;
}

.contact-wrap{
    max-width:1200px;
    margin:auto;
}

.sec-head{
    text-align:center;
    margin-bottom:50px;
}

.sec-tag{
    display:inline-block;
    background:#e7f1ff;
    color:var(--blue);
    padding:6px 16px;
    border-radius:40px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
}

.sec-title{
    font-size:42px;
    margin:20px 0;
    color:var(--navy);
    font-family:'Montserrat',sans-serif;
    font-weight:800;
}

.sec-title span{
    color:var(--blue);
}

.sec-sub{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.divider-line{
    width:70px;
    height:4px;
    background:linear-gradient(90deg,var(--blue),var(--teal));
    margin:25px auto 0;
    border-radius:10px;
}

/* =========================
INFO CARDS
========================= */

.info-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.info-card{
    background:#fff;
    border:2px solid #e8edf4;
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.active-border{
    border-color:var(--blue);
}

.info-icon{
    font-size:34px;
    margin-bottom:18px;
}

.icon-blue{
    color:var(--blue);
}

.icon-green{
    color:#28a745;
}

.icon-wa{
    color:#25d366;
}

.info-card h4{
    font-size:20px;
    color:var(--navy);
    margin-bottom:15px;
}

.card-inner-p{
    background:#f9fbff;
    padding:18px;
    border-radius:15px;
}

.card-inner-p p{
    font-size:14px;
    line-height:1.7;
    color:#666;
    margin-bottom:12px;
}

.call-num{
    color:var(--blue) !important;
    font-weight:700;
    font-size:18px !important;
}

.ibtn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-size:13px;
    font-weight:600;
}

.ibtn-green{
    background:#28a745;
}

.ibtn-blue{
    background:var(--blue);
}

.ibtn-wa{
    background:#25d366;
}

.link{
    text-decoration:none;
    color:#555;
}

/* =========================
GST BAND
========================= */

.gst-band{
    margin-top:40px;
    background:#fff;
    border-radius:20px;
    padding:25px 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px solid var(--border);
}

.gst-content{
    display:flex;
    align-items:center;
    gap:20px;
}

.gst-content i{
    font-size:34px;
    color:var(--blue);
}

.gst-label{
    display:block;
    font-size:12px;
    text-transform:uppercase;
    color:#777;
    font-weight:700;
}

.gst-num{
    font-size:22px;
    font-weight:800;
    color:var(--navy);
}

.gst-note{
    color:#666;
    font-size:13px;
}

/* =========================
MAIN GRID
========================= */

.contact-main-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:30px;
}

.map-wrap{
    border-radius:20px;
    overflow:hidden;
    height:450px;
    border:1px solid #eee;
}

.map-wrap iframe{
    width:100%;
    height:100%;
    border:none;
}

.quick-details{
    background:#fff;
    padding:30px;
    border-radius:20px;
    border:1px solid var(--border);
}

.qc-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.qc-item{
    display:flex;
    gap:14px;
}

.qc-item i{
    color:var(--blue);
    margin-top:5px;
}

.qt strong{
    display:block;
    margin-bottom:5px;
    color:var(--navy);
    font-size:14px;
}

.qt a,
.qt span{
    color:#666;
    text-decoration:none;
    font-size:13px;
}

.addr-box{
    margin-top:30px;
    background:#f8fbff;
    padding:20px;
    border-radius:15px;
    display:flex;
    gap:15px;
    border-left:4px solid var(--blue);
}

.addr-box i{
    color:var(--blue);
    font-size:22px;
}

.alabel{
    font-weight:700;
    margin-bottom:5px;
}

.atext{
    color:#666;
    font-size:14px;
    line-height:1.7;
}

/* =========================
WHATSAPP STRIP
========================= */

.wa-strip{
    margin-top:40px;
    background:linear-gradient(90deg,#001c3d,#003366);
    border-radius:20px;
    padding:35px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.wa-left{
    display:flex;
    align-items:center;
    gap:25px;
}

.wa-left i{
    font-size:50px;
    color:#25d366;
}

.wa-left h3{
    font-size:26px;
    color:#fff;
    margin-bottom:6px;
}

.wa-left p{
    color:rgba(255,255,255,0.7);
}

.wa-btn{
    background:#25d366;
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:50px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

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

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

.topbar{
    background:linear-gradient(90deg,#001221,#002b5c);
    color:#fff;
    padding:12px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

.topbar i{
    color:var(--accent);
    margin-right:8px;
}

.topbar-left span{
    margin-right:25px;
}

.social-icons i{
    margin-left:15px;
    cursor:pointer;
    transition:0.3s;
}

.social-icons i:hover{
    color:var(--accent);
    transform:translateY(-3px);
}

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

header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(14px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 7%;
    min-height:110px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    overflow:visible;
}

header::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:
    linear-gradient(
    90deg,
    transparent,
    #00d4ff,
    #0056b3,
    transparent);
    background-size:200% 100%;
    animation:lineMove 4s linear infinite;
}

@keyframes lineMove{

    0%{
        background-position:100% 0;
    }

    100%{
        background-position:-100% 0;
    }

}

footer{
    background:var(--navy);
    padding:70px 40px 30px;
}

.footer-inner{
    max-width:1200px;
    margin:auto;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.fc h5{
    color:var(--teal);
    margin-bottom:20px;
    font-size:15px;
    text-transform:uppercase;
    font-family:'Montserrat',sans-serif;
}

.fc p{
    color:rgba(255,255,255,0.6);
    line-height:1.8;
    font-size:14px;
}

.fc ul{
    list-style:none;
}

.fc ul li{
    margin-bottom:12px;
}

.fc ul li a{
    color:rgba(255,255,255,0.6);
    text-decoration:none;
    transition:.3s;
    font-size:14px;
}

.fc ul li a:hover{
    color:#fff;
}

.footer-bottom{
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom p{
    color:rgba(255,255,255,0.5);
    font-size:13px;
}

.social-row{
    display:flex;
    gap:10px;
}

.social-row a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-row a:hover{
    background:var(--teal);
    color:var(--navy);
}

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

@media(max-width:1024px){

.info-cards{
    grid-template-columns:repeat(2,1fr);
}

.contact-main-grid{
    grid-template-columns:1fr;
}

.gst-band{
    flex-direction:column;
    gap:20px;
    text-align:center;
}

}

@media(max-width:991px){

header{
    padding:16px 20px;
}

.logo h2{
    font-size:16px;
}

.menu-toggle{
    display:block;
}

nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    display:none;
    border-top:1px solid #eee;
}

nav.active{
    display:flex;
}

.dropdown{
    width:100%;
}

.dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    display:none;
    box-shadow:none;
    margin-top:10px;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

}

@media(max-width:768px){

.topbar{
    flex-direction:column;
    gap:10px;
    padding:12px 20px;
}

.topbar-left{
    flex-direction:column;
    gap:8px;
    text-align:center;
}

.info-cards{
    grid-template-columns:1fr;
}

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

.wa-strip{
    flex-direction:column;
    text-align:center;
}

.wa-left{
    flex-direction:column;
}

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

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.sec-title{
    font-size:30px;
}

.breadcrumb-section h1{
    font-size:30px;
}

}

</style>
 

