/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9990;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 18px rgba(37,211,102,.5);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
}
.wa-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,.65);
    color: #fff;
}

/* Pulse ring animation */
.wa-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,.4);
    animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: .8; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

/* Tooltip */
.wa-tooltip {
    position: absolute;
    right: 66px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #1a1a1a;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

@media (max-width: 480px) {
    .wa-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; right: 16px; }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    width: 200px;
    height: 80px;
    object-fit: contain;
    animation: preloader-pulse 1.2s ease-in-out infinite;
}

@keyframes preloader-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(.88);
        opacity: .7;
    }
}

.preloader-bar {
    width: 180px;
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width .12s linear;
}

.preloader-text {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.preloader-dots span {
    display: inline-block;
    animation: preloader-dot .9s infinite;
    opacity: 0;
}

.preloader-dots span:nth-child(2) {
    animation-delay: .2s;
}

.preloader-dots span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes preloader-dot {

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2d2d2d;
    background: #fff;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input,
textarea,
select,
button {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

/* ===== VARIABLES ===== */
:root {
    --primary: #2b0a6c;
    /* medium purple — lighter than before */
    --secondary: #131313;
    /* softer deep purple */
    --accent: #f7a800;
    /* logo orange — unchanged */
    --light: #f9f7ff;
    /* near-white with faint purple tint */
    --border: #e8e2f8;
    /* light purple border */
    --text-muted: #6b7280;
    --radius: 6px;
    --shadow: 0 4px 20px rgba(106, 34, 204, .10);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #3d1580;
    color: #ccc;
    font-size: .82rem;
    padding: 6px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.top-bar a {
    color: #ccc;
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar .tb-left,
.top-bar .tb-right {
    display: flex;
    gap: 18px;
    align-items: center;
}

.top-bar i {
    margin-right: 5px;
    color: var(--accent);
    font-style: normal;
}

/* ===== HEADER / NAVBAR ===== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 58px;
    height: 58px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-logo-img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

.brand-text h1 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.brand-text span {
    font-size: .75rem;
    color: var(--text-muted);
    letter-spacing: .5px;
}

/* Nav links */
.nav-menu {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-menu a {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: .92rem;
    font-weight: 600;
    color: var(--secondary);
    transition: background .2s, color .2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary);
    color: #fff;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Drawer-only elements — hidden on desktop */
.drawer-close {
    display: none;
}

.drawer-brand {
    display: none;
}

.nav-overlay {
    display: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #4a1aaa 0%, #6a22cc 55%, #8b44e0 100%);
    color: #fff;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1565043666747-69f6646db940?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero h2 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.08rem;
    opacity: .88;
    margin-bottom: 30px;
    max-width: 560px;
}

.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .95rem;
    transition: all .25s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: #8b44e0;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    margin-left: 12px;
}

.btn-outline:hover {
    background: #fff;
    color: var(--secondary);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat span {
    font-size: .83rem;
    opacity: .8;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #3d1580;
}

/* Each slide */
.hs-slide {
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}

.hs-slide.active {
    opacity: 1;
    position: relative;
    /* active slide takes up space */
    pointer-events: auto;
}

/* Dark gradient overlay on each slide */
.hs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgb(61 21 128 / 48%) 0%, rgb(0 0 0 / 72%) 45%, rgba(106, 34, 204, .35) 100%);
}

/* Slide content */
.hs-content {
    position: relative;
    z-index: 2;
    padding: 100px 20px 80px;
    max-width: 860px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.hs-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hs-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.hs-content h2 span {
    color: var(--accent);
}

.hs-content p {
    font-size: 1.05rem;
    opacity: .9;
    margin-bottom: 28px;
    max-width: 620px;
    line-height: 1.75;
    margin-left: auto;
    margin-right: auto;
}

.hs-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Prev / Next arrows */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    z-index: 10;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    backdrop-filter: blur(4px);
}

.hs-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hs-prev {
    left: 20px;
}

.hs-next {
    right: 20px;
}

/* Dot indicators row — between slide and stats bar */
.hs-dots-row {
    background: linear-gradient(to bottom, rgba(74, 26, 170, .7), rgba(74, 26, 170, .92));
    position: relative;
    z-index: 5;
}

/* Dot indicators */
.hs-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px 0;
    position: relative;
    z-index: 5;
}

.hs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    background: transparent;
    cursor: pointer;
    transition: background .25s, transform .25s, border-color .25s;
    padding: 0;
}

.hs-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.35);
}

/* Stats bar pinned to bottom of slider */
.hs-stats-bar {
    position: relative;
    z-index: 5;
    background: rgba(74, 26, 170, .92);
    border-top: 3px solid var(--accent);
    backdrop-filter: blur(6px);
}

.hs-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 18px 20px;
    flex-wrap: wrap;
    gap: 14px;
}

.hs-stat {
    text-align: center;
    color: #fff;
}

.hs-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.hs-stat span {
    font-size: .78rem;
    opacity: .8;
    letter-spacing: .5px;
}

/* Slide-in animation for content */
.hs-slide.active .hs-content {
    animation: slideUp .6s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hs-content {
        padding: 70px 20px 60px;
    }

    .hs-content h2 {
        font-size: 1.75rem;
    }

    .hs-content p {
        font-size: .93rem;
    }

    .hs-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .hs-prev {
        left: 10px;
    }

    .hs-next {
        right: 10px;
    }

    .hs-stat strong {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hs-content h2 {
        font-size: 1.45rem;
    }

    .hs-stats {
        gap: 10px;
    }

    .hs-stat strong {
        font-size: 1.2rem;
    }
}

/* ===== SECTION TITLES ===== */
.section {
    padding: 70px 0;
}

.section-alt {
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .tag {
    display: inline-block;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

.divider {
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 12px auto 0;
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 32px 26px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: transform .25s, box-shadow .25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), #8b44e0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.card p {
    color: var(--text-muted);
    font-size: .9rem;
}

/* ===== ABOUT SECTION (home) ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-block {
    position: relative;
}

.about-img-placeholder {
    background: linear-gradient(135deg, #4a1aaa, #6a22cc);
    border-radius: 12px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
}

.about-real-img {
    width: 100%;
    /* height: 380px; */
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about-img-placeholder p {
    font-size: 1rem;
    margin-top: 12px;
    opacity: .7;
}

.badge-est {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--accent);
    color: #fff;
    padding: 16px 22px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-est strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.badge-est span {
    font-size: .75rem;
}

.about-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 14px;
}

.check-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .93rem;
    color: #444;
}

.check-list li::before {
    content: '✔';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== PRODUCTS GRID ===== */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-img {
    height: 180px;
    background: linear-gradient(135deg, #4a1aaa, #6a22cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, .7);
}

.product-card-body {
    padding: 22px;
}

.product-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: .88rem;
    color: var(--text-muted);
}

.product-tag {
    display: inline-block;
    background: #f0ecff;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 700;
    border: 1.5px solid var(--border);
    color: var(--secondary);
    white-space: nowrap;
    transition: all .2s;
    background: #fff;
}

.cat-pill:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.prod-detail-grid {
    display: grid;
    gap: 48px;
    align-items: flex-start;
}

#cat-7 .prod-detail-grid,
#cat-5 .prod-detail-grid,
#cat-3 .prod-detail-grid,
#cat-1 .prod-detail-grid,
#cat-9 .prod-detail-grid {
    grid-template-columns: 1.4fr 1fr;
}

#cat-8 .prod-detail-grid,
#cat-6 .prod-detail-grid,
#cat-4 .prod-detail-grid,
#cat-2 .prod-detail-grid,
#cat-10 .prod-detail-grid{
   
     grid-template-columns: 1fr 1.4fr;
}

.prod-detail-grid.reverse {
    direction: rtl;
}

.prod-detail-grid.reverse>* {
    direction: ltr;
}

.prod-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prod-img-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.prod-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.prod-info-col h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
    line-height: 1.3;
}

.prod-info-col p {
    color: var(--text-muted);
    font-size: .93rem;
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Specs table */
.specs-table {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.spec-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    font-size: .88rem;
    border-bottom: 1px solid var(--border);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row span:first-child {
    background: var(--light);
    padding: 10px 14px;
    font-weight: 700;
    color: var(--secondary);
    border-right: 1px solid var(--border);
}

.spec-row span:last-child {
    padding: 10px 14px;
    color: #444;
}

/* Features list */
.prod-features {
    margin-top: 20px;
}

.prod-features h5 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-features ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prod-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: #444;
}

.prod-features li .fa-check {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Mark cards */
.mark-card {
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    border-top: 3px solid var(--primary);
}

.mark-card strong {
    display: block;
    color: var(--secondary);
    font-size: .95rem;
    margin-bottom: 8px;
}

.mark-card p {
    font-size: .84rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .prod-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .prod-detail-grid .prod-img-col {
        order: -1;
    }

    .spec-row {
        grid-template-columns: 130px 1fr;
    }
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(100deg, rgb(61 21 128) 0%, rgb(0 0 0 / 72%) 45%, rgb(248 135 37) 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-banner p {
    opacity: .8;
    font-size: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: .85rem;
    opacity: .75;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    opacity: .6;
}

/* ===== INDUSTRIES ===== */
.industry-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.industry-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--primary);
    text-align: center;
}

.industry-item-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.industry-item-body {
    padding: 16px 12px;
}

.industry-item .icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.industry-item h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--secondary);
}

/* ===== VALUE PROPS ===== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #8b44e0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.value-item p {
    font-size: .88rem;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
}

.contact-info-card {
    background: linear-gradient(160deg, #4a1aaa, #6a22cc);
    color: #fff;
    border-radius: 12px;
    padding: 36px 30px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.c-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.c-item .c-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--accent);
}

.c-item h5 {
    font-size: .8rem;
    opacity: .7;
    font-weight: 600;
    margin-bottom: 4px;
}

.c-item p {
    font-size: .93rem;
}

.contact-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 30px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .92rem;
    font-family: inherit;
    transition: border .2s;
    outline: none;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-msg {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: .9rem;
    margin-bottom: 16px;
    display: none;
}

.form-msg.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-msg.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ===== WHY CHOOSE US — 2 COLUMN ===== */
.wcu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image column */
.wcu-img-col {
    position: relative;
}

.wcu-img-wrap {
    position: relative;
}

.wcu-main-img {
    width: 100%;
    /* height: 520px; */
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 12px 40px rgba(106, 34, 204, .2);
}

/* Floating badge — top left */
.wcu-badge {
    position: absolute;
    top: 24px;
    left: -20px;
    background: var(--primary);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(106, 34, 204, .35);
}

.wcu-badge strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.wcu-badge span {
    font-size: .72rem;
    opacity: .85;
    white-space: nowrap;
}

/* Floating stat card — bottom right */
.wcu-stat-card {
    position: absolute;
    bottom: -18px;
    right: -20px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 22px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
    border-top: 3px solid var(--accent);
}

.wcu-stat-row {
    display: flex;
    gap: 22px;
}

.wcu-stat-row>div {
    text-align: center;
}

.wcu-stat-row strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.wcu-stat-row span {
    font-size: .72rem;
    color: var(--text-muted);
}

/* Text column */
.wcu-text-col {
    padding-bottom: 20px;
}

/* Items list */
.wcu-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wcu-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--light);
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: border-color .2s, background .2s, transform .2s;
}

.wcu-item:hover {
    border-left-color: var(--primary);
    background: #f0ebff;
    transform: translateX(4px);
}

.wcu-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.wcu-item h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.wcu-item p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .wcu-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .wcu-img-col {
        order: -1;
    }

    .wcu-main-img {
        /* height: 320px;  */
    }

    .wcu-badge {
        left: 12px;
        top: 12px;
    }

    .wcu-stat-card {
        right: 12px;
        bottom: -14px;
    }
    #cat-7 .prod-detail-grid,
     #cat-5 .prod-detail-grid,
      #cat-3 .prod-detail-grid,
       #cat-1 .prod-detail-grid,
       #cat-8 .prod-detail-grid,
        #cat-6 .prod-detail-grid,
         #cat-4 .prod-detail-grid,
          #cat-2 .prod-detail-grid,
          #cat-9 .prod-detail-grid,
          #cat-10 .prod-detail-grid {
    grid-template-columns: auto;
}

}

@media (max-width: 480px) {
    .wcu-main-img {
        /* height: 240px; */
    }

    .wcu-stat-row {
        gap: 14px;
    }
}

/* ===== PRODUCT CAROUSEL ===== */
.pc-wrapper {
    position: relative;
    padding: 0 52px;
}

.pc-viewport {
    overflow: hidden;
    border-radius: 12px;
}

.pc-track {
    display: flex;
    gap: 22px;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* Each card */
.pc-card {
    flex: 0 0 calc(33.333% - 15px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--primary);
    transition: transform .25s, box-shadow .25s;
}

.pc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(106, 34, 204, .18);
}

/* Card image */
.pc-card-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
}

.pc-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 21, 128, .7) 0%, rgba(61, 21, 128, .1) 60%, transparent 100%);
}

.pc-icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

/* Card body */
.pc-card-body {
    padding: 20px 20px 22px;
}

.pc-num {
    font-size: .72rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.pc-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.pc-card-body p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.pc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary);
    transition: gap .2s, color .2s;
}

.pc-link:hover {
    color: var(--accent);
    gap: 10px;
}

/* Arrows */
.pc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 50%;
    color: var(--secondary);
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    transition: background .2s, color .2s, border-color .2s;
}

.pc-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pc-arrow:disabled {
    opacity: .3;
    cursor: not-allowed;
}

.pc-prev {
    left: 0;
}

.pc-next {
    right: 0;
}

/* Dots */
.pc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.pc-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: background .25s, transform .25s;
    padding: 0;
}

.pc-dot.active {
    background: var(--primary);
    transform: scale(1.4);
}

/* Responsive */
@media (max-width: 900px) {
    .pc-card {
        flex: 0 0 calc(50% - 11px);
    }

    .pc-wrapper {
        padding: 0 44px;
    }
}

@media (max-width: 580px) {
    .pc-card {
        flex: 0 0 calc(100% - 0px);
    }

    .pc-wrapper {
        padding: 0 36px;
    }

    .pc-card-img {
        height: 160px;
    }
}

/* ===== INFRASTRUCTURE GALLERY ===== */

/* Stats row */
.infra-stats-row {
    background: var(--secondary);
    padding: 20px 0;
}

.infra-stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.infra-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.infra-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--accent);
    flex-shrink: 0;
}

.infra-stat-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.infra-stat-item span {
    font-size: .75rem;
    opacity: .7;
}

/* Filter buttons */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}

.gf-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 700;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--secondary);
    cursor: pointer;
    transition: all .22s;
}

.gf-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.gf-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.gf-count {
    background: rgba(0, 0, 0, .1);
    color: inherit;
    font-size: .72rem;
    font-weight: 800;
    padding: 1px 7px;
    border-radius: 20px;
    min-width: 22px;
    text-align: center;
}

.gf-btn.active .gf-count {
    background: rgba(255, 255, 255, .25);
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

/* Gallery item */
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery-item:hover .gallery-item-inner img {
    transform: scale(1.07);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 21, 128, .88) 0%, rgba(61, 21, 128, .2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    padding: 18px 16px;
    color: #fff;
    width: 100%;
}

.gallery-overlay-content h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-overlay-content p {
    font-size: .78rem;
    opacity: .85;
    line-height: 1.5;
    margin-bottom: 8px;
}

.gallery-cat-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: capitalize;
}

.gallery-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .2);
    border: 1.5px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    color: #fff;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    backdrop-filter: blur(4px);
}

.gallery-zoom:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.gallery-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.gallery-empty i {
    font-size: 3rem;
    margin-bottom: 14px;
    opacity: .35;
    display: block;
}

/* ── LIGHTBOX ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 4, 40, .94);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.lightbox-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.lb-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap img {
    max-width: 88vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .6);
    display: block;
}

.lb-spinner {
    position: absolute;
    color: #fff;
    font-size: 2rem;
    display: none;
}

.lb-spinner.show {
    display: block;
}

.lb-caption {
    text-align: center;
    color: #fff;
    padding: 16px 20px 0;
    max-width: 700px;
}

.lb-caption h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.lb-caption p {
    font-size: .88rem;
    opacity: .75;
    margin-bottom: 8px;
}

#lbCounter {
    font-size: .75rem;
    opacity: .5;
}

.lb-close {
    position: fixed;
    top: 20px;
    right: 22px;
    width: 40px;
    height: 40px;
    z-index: 10000;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.lb-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.lb-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lb-prev {
    left: 16px;
}

.lb-next {
    right: 16px;
}

@media (max-width: 680px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
    }

    .lb-arrow {
        width: 36px;
        height: 36px;
        font-size: .85rem;
    }

    .lb-prev {
        left: 8px;
    }

    .lb-next {
        right: 8px;
    }

    .infra-stats-grid {
        justify-content: flex-start;
        gap: 14px;
    }
}

/* ===== ABOUT PAGE ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.tl-item {
    position: relative;
    margin-bottom: 36px;
}

.tl-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--primary);
}

.tl-year {
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.tl-item h4 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.tl-item p {
    font-size: .9rem;
    color: var(--text-muted);
}

/* ===== INFRASTRUCTURE ===== */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.infra-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.infra-card-top {
    height: 160px;
    background: linear-gradient(135deg, #4a1aaa, #6a22cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, .7);
}

.infra-card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.infra-card-body {
    padding: 22px;
}

.infra-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.infra-card-body p {
    font-size: .88rem;
    color: var(--text-muted);
}

.capability-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.cap-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
    font-size: .9rem;
    font-weight: 600;
    color: var(--secondary);
}

.cap-item::before {
    content: '⚙';
    font-size: 1.2rem;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(135deg, var(--primary), #4a1aaa);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-band h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-band p {
    opacity: .88;
    margin-bottom: 28px;
    font-size: 1rem;
}

.cta-band .btn-outline {
    border-color: #fff;
    color: #fff;
    margin-left: 12px;
}

.cta-band .btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(160deg, #f9f7ff 0%, #eee8fb 50%, #fff 100%);
    color: #333;
    padding: 60px 0 0;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .brand-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: .88rem;
    line-height: 1.7;
    color: #555;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--secondary);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: .88rem;
    color: #555;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col .f-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col .f-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .87rem;
    color: #555;
}

.footer-col .f-contact li span {
    /* color: var(--primary); */
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .82rem;
    color: #777;
    /* background: linear-gradient(90deg, #f0ebff, #fff, #f0ebff); */
}

.footer-bottom a {
    color: var(--primary);
}

/* ===== RESPONSIVE ===== */

/* Drawer + overlay hidden on desktop by default */
.nav-drawer {
    display: none;
}

.nav-overlay {
    display: none;
}

.drawer-close {
    display: none;
}

.drawer-brand {
    display: none;
}

/* ── TABLET + MOBILE (≤ 900px) ── */
@media (max-width: 900px) {

    /* Hide top bar */
    .top-bar {
        display: none;
    }

    /* Hide desktop nav-menu */
    .nav-menu {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Layout fixes */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .badge-est {
        position: static;
        display: inline-block;
        margin-top: 16px;
    }

    /* ── DRAWER PANEL ── */
    .nav-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 270px;
        background: #fff;
        z-index: 9000;
        transform: translateX(-100%);
        transition: transform .3s cubic-bezier(.4, 0, .2, 1);
        overflow: hidden;
        box-shadow: 6px 0 30px rgba(0, 0, 0, .25);
    }

    .nav-drawer.open {
        transform: translateX(0);
    }

    /* ── DRAWER HEADER STRIP ── */
    .drawer-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 16px;
        background: var(--light);
        border-bottom: 3px solid var(--accent);
        flex-shrink: 0;
        min-height: 66px;
        justify-content: space-between;
    }

    .drawer-brand img {
        /* width: 38px; */
        height: 35px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .drawer-brand span {
        flex: 1;
        font-size: .9rem;
        font-weight: 700;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, .18);
        color: #000000;
        border: 1.5px solid rgb(0 0 0 / 45%);
        border-radius: 50%;
        font-size: .85rem;
        line-height: 1;
        cursor: pointer;
        transition: background .2s;
    }

    .drawer-close:hover {
        background: rgba(255, 255, 255, .35);
    }

    /* ── DRAWER LINKS ── */
    .drawer-links {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        flex: 1;
    }

    .drawer-links a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 22px;
        font-size: .97rem;
        font-weight: 600;
        color: var(--secondary);
        border-bottom: 1px solid var(--border);
        text-decoration: none;
        transition: background .18s, color .18s, border-left .18s;
        position: relative;
        z-index: 1;
    }

    .drawer-links a::before {
        content: '›';
        color: var(--accent);
        font-size: 1.3rem;
        font-weight: 800;
        line-height: 1;
        flex-shrink: 0;
    }

    .drawer-links a:hover {
        background: var(--light);
        color: var(--primary);
        border-left: 3px solid var(--primary);
        padding-left: 26px;
    }

    .drawer-links a.active {
        background: #ede8ff;
        color: var(--primary);
        font-weight: 700;
        border-left: 3px solid var(--primary);
        padding-left: 26px;
    }

    /* ── OVERLAY ── */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .52);
        z-index: 8000;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }

    .nav-overlay.visible {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ── MOBILE ONLY (≤ 680px) ── */
@media (max-width: 680px) {
    .nav-drawer {
        width: 260px;
    }

    .hero h2 {
        font-size: 1.7rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 0px;
    }
}

/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .nav-drawer {
        width: 80vw;
    }
}