@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* =============================
   CSS VARIABLES – LIGHT MODE
   ============================= */
:root {
    --primary: #1d4ed8;
    --primary-light: #60a5fa;
    --primary-dark: #1e3a8a;
    --accent: #2563eb;
    --accent-glow: rgba(37, 99, 235, 0.25);
    --green: #2563eb;
    --green-dark: #1d4ed8;

    --text-main: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;

    --bg-body: #fdfbf7;
    --bg-card: #ffffff;
    --bg-surface: #fdfbf7;
    --bg-input: #f5f3eb;

    --border: #e5e7eb;
    --border-hover: #d1d5db;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(29, 78, 216, 0.06);
    --shadow-md: 0 4px 24px rgba(29, 78, 216, 0.08);
    --shadow-lg: 0 12px 40px rgba(29, 78, 216, 0.12);
    --shadow-glow: 0 0 30px rgba(29, 78, 216, 0.12);

    --radius: 16px;
    --radius-sm: 10px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.18s ease;
    --header-h: 70px;

    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e40af 40%, #1d4ed8 100%);
    --gradient-accent: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);

    --footer-bg: #0f172a;
    --footer-text: #64748b;
}


/* =============================
   RESET
   ============================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background var(--transition), color var(--transition)
}

a {
    text-decoration: none;
    color: inherit
}

ul,
ol {
    list-style: none
}

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

button {
    cursor: pointer;
    font-family: inherit
}

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto
}

/* =============================
   ANIMATIONS
   ============================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

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

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

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

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.04)
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(0)
    }
}

/* =============================
   HEADER
   ============================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition), background var(--transition)
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08)
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: transform var(--transition)
}

.logo-link:hover {
    transform: scale(1.03)
}

.logo-img {
    height: 42px;
    width: 42px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.18);
    border: 2px solid rgba(29, 78, 216, 0.15)
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.logo-text span {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast)
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width var(--transition)
}

.nav-link:hover {
    color: var(--primary)
}

.nav-link:hover::after {
    width: 100%
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.15rem;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.88rem;
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    border: none
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.3)
}



/* =============================
   BURGER MENU
   ============================= */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    transition: all var(--transition);
    outline: none;
}

.burger:hover {
    background: rgba(15, 23, 42, 0.05);
    transform: scale(1.05);
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-main);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 1050;
    padding: 100px 1.5rem 2rem;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.05);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-direction: column;
    gap: 0.5rem;
    display: flex;
    border-left: none;
}

.mobile-nav.active {
    right: 0;
}

.mob-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    background: transparent;
    border: none;
    overflow: hidden;
}

.mob-link:hover, .mob-link.active-page {
    color: var(--primary);
    background: rgba(29, 78, 216, 0.05);
    padding-left: 1.5rem;
}

.mob-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3.5px;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transition: transform var(--transition);
    transform-origin: center;
    border-radius: 0 4px 4px 0;
}

.mob-link:hover::after, .mob-link.active-page::after {
    transform: scaleY(1);
}

.mob-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    justify-content: center;
}

/* =============================
   HERO
   ============================= */
.hero {
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradient-shift 14s ease infinite;
    color: #fff;
    padding: 3rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(96, 165, 250, 0.18)0, transparent 50%), radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.12)0, transparent 40%);
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp .6s ease both;
    backdrop-filter: blur(6px)
}

.hero h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1rem;
    animation: fadeInUp .6s ease .15s both
}

.hero h2 .highlight {
    background: linear-gradient(90deg, #60a5fa, #93c5fd, #60a5fa);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite
}

.hero p {
    font-size: 1.05rem;
    opacity: .85;
    max-width: 560px;
    margin: 0 auto;
    animation: fadeInUp .6s ease .3s both;
    line-height: 1.7
}

/* =============================
   CONTROLS
   ============================= */
.controls-section {
    margin-top: -2.2rem;
    position: relative;
    z-index: 10;
    background: #ffffff;
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: fadeInUp .5s ease .4s both;
}

.search-wrapper {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.search-icon svg {
    width: 18px;
    height: 18px;
}

.search-wrapper input {
    width: 100%;
    height: 48px;
    padding: 0 1rem 0 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .92rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: #f8fafc;
    outline: none;
    transition: all var(--transition);
}

.search-wrapper input::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.search-wrapper input:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.filters {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    height: 48px;
    padding: 0 2.5rem 0 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .92rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: #f8fafc;
    cursor: pointer;
    outline: none;
    transition: all var(--transition);
    font-weight: 500;
}

.select-wrap select:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.select-wrap::after {
    content: '▾';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
    font-size: .9rem;
}

.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    animation: fadeIn .5s ease .5s both
}

.results-count {
    font-size: .9rem;
    color: var(--text-muted);
    font-weight: 500
}

/* =============================
   PRODUCT GRID
   ============================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    animation: fadeInUp .5s ease both;
    position: relative
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
    z-index: 2
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light)
}

.product-card:hover::before {
    transform: scaleX(1)
}

.card-visual {
    height: 180px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden
}

.card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(255, 255, 255, 0.5)100%)
}

.card-icon {
    font-size: 3.2rem;
    z-index: 1;
    transition: transform var(--transition)
}

.product-card:hover .card-icon {
    transform: scale(1.12);
    animation: float 2s ease-in-out infinite
}

.card-body {
    padding: 1.15rem 1.35rem 1.35rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.card-category {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--primary);
    margin-bottom: .4rem
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: .5rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: .8rem;
    flex-grow: 1
}

.spec-chip {
    font-size: .7rem;
    padding: .2rem .55rem;
    background: var(--bg-body);
    border-radius: 5px;
    color: var(--text-secondary);
    font-weight: 500;
    border: 1px solid var(--border)
}

.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: .8rem;
    border-top: 1px solid var(--border)
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem 1rem;
    background: var(--gradient-accent);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform var(--transition), box-shadow var(--transition)
}

.btn-details:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3)
}

.btn-details .arrow {
    transition: transform var(--transition);
    display: inline-block
}

.product-card:hover .btn-details .arrow {
    transform: translateX(3px)
}

.no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted)
}

.no-results .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block
}

/* =============================
   ABOUT / HSN SECTIONS
   ============================= */
.info-sections {
    margin-bottom: 3rem
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
    animation: fadeInUp .5s ease both
}

.info-card:hover {
    box-shadow: var(--shadow-md)
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.info-card h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border)
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: .8rem;
    margin-top: 1rem
}

.about-stat {
    padding: .8rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--bg-body);
    border: 1px solid var(--border);
    transition: var(--transition)
}

.about-stat:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px)
}

.about-stat .label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: .25rem
}

.about-stat .value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-main)
}

.hsn-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: .5rem
}

.hsn-table th,
.hsn-table td {
    padding: .75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: .88rem
}

.hsn-table th {
    background: var(--bg-body);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px
}

.hsn-table td {
    color: var(--text-main)
}

.hsn-table tr:hover td {
    background: rgba(37, 99, 235, 0.03)
}

.hsn-code {
    display: inline-block;
    padding: .2rem .6rem;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    font-size: .82rem
}

/* =============================
   PRODUCT DETAILS PAGE
   ============================= */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    padding: .5rem 1rem;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.06);
    transition: var(--transition)
}

.back-link:hover {
    background: rgba(37, 99, 235, 0.12);
    transform: translateX(-4px)
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp .5s ease both
}

/* Image Carousel */
.carousel-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative
}

.carousel-viewport {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3
}

.carousel-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    height: 100%
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface)
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    color: var(--text-main)
}

.carousel-btn:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-50%) scale(1.1)
}

.carousel-prev {
    left: 10px
}

.carousel-next {
    right: 10px
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 0
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition)
}

.carousel-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 8px
}

/* Detail Info Panel */
.detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.detail-category-badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(29, 78, 216, 0.08);
    padding: .3rem .85rem;
    border-radius: 50px;
    width: fit-content
}

.detail-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -.5px;
    line-height: 1.25
}

.detail-description {
    font-size: .98rem;
    color: var(--text-secondary);
    line-height: 1.8
}

.quote-box {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-top: .5rem
}

.quote-box .label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: .25rem
}

.quote-box .sublabel {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: .8rem
}

.btn-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .8rem;
    background: linear-gradient(135deg, var(--green)0%, var(--green-dark)100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
    font-family: 'Outfit', sans-serif
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35)
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .7rem;
    background: transparent;
    color: var(--primary);
    font-size: .9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    transition: var(--transition);
    margin-top: .5rem;
    font-family: 'Outfit', sans-serif
}

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

/* Specs Section */
.detail-specs {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 2rem;
    animation: fadeInUp .5s ease .15s both
}

.specs-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--bg-surface)
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.spec-row {
    display: flex;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition-fast)
}

.spec-row:last-child {
    border-bottom: none
}

.spec-row:hover {
    background: rgba(29, 78, 216, 0.03)
}

.spec-key {
    flex: 0 0 48%;
    padding: .8rem 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: .88rem;
    background: var(--bg-surface)
}

.spec-val {
    flex: 1;
    padding: .8rem 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    font-size: .88rem
}

.additional-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 4rem;
    animation: fadeInUp .5s ease .25s both
}

.additional-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.additional-list li {
    padding: .55rem 0;
    display: flex;
    gap: .6rem;
    align-items: center;
    font-size: .9rem;
    border-bottom: 1px dashed var(--border)
}

.additional-list li:last-child {
    border-bottom: none
}

.additional-list li strong {
    color: var(--text-secondary);
    min-width: 140px
}

/* =============================
   QUOTE MODAL
   ============================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 30, 18, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition)
}

.modal-overlay.active {
    display: flex;
    opacity: 1
}

.modal-box {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 440px;
    width: 92%;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp .35s ease both;
    position: relative
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary)
}

.modal-close:hover {
    background: red;
    color: #fff;
    border-color: red
}

.modal-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.modal-box p {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem
}

.modal-input {
    width: 100%;
    padding: .8rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: var(--bg-input);
    outline: none;
    transition: var(--transition);
    margin-bottom: .75rem
}

.modal-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1)
}

.modal-submit {
    width: 100%;
    padding: .8rem;
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition)
}

.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.3)
}

.modal-success {
    display: none;
    text-align: center;
    padding: 1.5rem 0
}

.modal-success .check {
    font-size: 3rem;
    margin-bottom: .75rem;
    display: block
}

.modal-success h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.modal-success p {
    font-size: .88rem;
    color: var(--text-muted)
}

/* =============================
   FOOTER
   ============================= */
.footer {
    background: linear-gradient(180deg, var(--footer-bg)0%, #061a0d 100%);
    color: var(--footer-text);
    margin-top: auto;
    padding: 3.5rem 0 0;
    position: relative;
    overflow: hidden
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem
}

.footer-brand {
    display: flex;
    flex-direction: column
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1rem
}

.footer-logo img {
    height: 36px;
    width: 36px;
    border-radius: 8px;
    object-fit: cover
}

.footer-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff
}

.footer-brand>p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: .87rem
}

.badge-indiamart {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 50px;
    color: #60a5fa;
    font-weight: 600;
    font-size: .82rem;
    transition: var(--transition);
    width: fit-content
}

.badge-indiamart:hover {
    background: rgba(96, 165, 250, 0.18)
}

.footer-col h4 {
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    position: relative;
    padding-bottom: .65rem
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px
}

.footer-col li {
    margin-bottom: .65rem
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .87rem;
    color: var(--footer-text);
    transition: color var(--transition-fast), padding-left var(--transition)
}

.footer-link:hover {
    color: #fff;
    padding-left: 4px
}

.footer-bottom {
    border-top: 1px solid rgba(96, 165, 250, 0.12);
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .82rem
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem
}

.footer-bottom-links a {
    color: #5a7a5a;
    transition: color var(--transition-fast)
}

.footer-bottom-links a:hover {
    color: #fff
}

/* =============================
   RESPONSIVE
   ============================= */
@media(max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

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

    .detail-layout {
        grid-template-columns: 1fr
    }

    .specs-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .header-nav {
        display: flex;
        gap: 0.85rem
    }

    .nav-link {
        font-size: 0.88rem
    }

    .logo-text {
        font-size: 1.15rem
    }

    .hero {
        padding: 4rem 0 3.5rem
    }

    .hero h2 {
        font-size: 1.9rem
    }

    .hero p {
        font-size: .95rem
    }

    .controls-section {
        flex-direction: column;
        align-items: stretch;
        margin-top: -1.5rem
    }

    .filters {
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 0.35rem
    }

    .select-wrap {
        width: auto
    }

    .select-wrap select {
        width: auto;
        padding: 0.5rem 2.1rem 0.5rem 0.85rem;
        font-size: 0.82rem
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .card-visual {
        height: 130px
    }

    .card-body {
        padding: .9rem
    }

    .card-title {
        font-size: .9rem
    }

    .card-specs {
        display: none
    }

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

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

    .about-grid {
        grid-template-columns: 1fr 1fr
    }

    .detail-title {
        font-size: 1.4rem
    }

    .spec-row {
        flex-direction: column
    }

    .spec-key {
        flex: unset;
        padding-bottom: .15rem
    }

    .spec-val {
        padding-top: .15rem
    }
}

@media(max-width:480px) {
    .product-grid {
        grid-template-columns: 1fr
    }

    .card-visual {
        height: 160px
    }

    .card-body {
        padding: 1.1rem
    }

    .card-title {
        font-size: 1rem
    }

    .card-specs {
        display: flex
    }

    .about-grid {
        grid-template-columns: 1fr
    }
}

/* Stagger */
.product-card:nth-child(1) {
    animation-delay: .04s
}

.product-card:nth-child(2) {
    animation-delay: .08s
}

.product-card:nth-child(3) {
    animation-delay: .12s
}

.product-card:nth-child(4) {
    animation-delay: .16s
}

.product-card:nth-child(5) {
    animation-delay: .20s
}

.product-card:nth-child(6) {
    animation-delay: .24s
}

.product-card:nth-child(7) {
    animation-delay: .28s
}

.product-card:nth-child(8) {
    animation-delay: .32s
}

.product-card:nth-child(9) {
    animation-delay: .36s
}

.product-card:nth-child(10) {
    animation-delay: .40s
}

.product-card:nth-child(11) {
    animation-delay: .44s
}

.product-card:nth-child(12) {
    animation-delay: .48s
}

/* =============================
   SECTION HEADER
   ============================= */
.section-header {
    text-align: center;
    margin: 3.5rem 0 2.5rem;
    animation: fadeInUp .5s ease both
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -.5px;
    margin-bottom: .6rem
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    margin: .75rem auto 0
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: .5rem auto 0;
    line-height: 1.7
}

/* =============================
   CATEGORY GRID (INDEX PAGE)
   ============================= */
.category-carousel-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.category-grid {
    margin-bottom: 1rem;
}

.category-grid.carousel-mode {
    display: flex;
    overflow-x: auto;
    gap: 1.25rem;
    padding: 1rem 0 2rem 0;
    /* padding to ensure hover shadows don't clip */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-grid.carousel-mode::-webkit-scrollbar {
    display: none;
}

.category-grid.carousel-mode .category-card {
    min-width: 280px;
    flex-shrink: 0;
    margin-left: 2px;
}

.category-grid.grid-mode {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1rem 0;
}

@media(max-width: 1024px) {
    .category-grid.grid-mode {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px) {
    .category-grid.grid-mode {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px) {
    .category-grid.grid-mode {
        grid-template-columns: 1fr;
    }
}

.category-card {
    position: relative;
    background: #0f172a;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp .5s ease both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    min-height: 200px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    z-index: 3;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.cat-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.category-card:hover .cat-bg-image {
    transform: scale(1.08);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.85) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.category-card:hover .cat-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.92) 100%);
}



.cat-content {
    flex-grow: 1;
    margin-bottom: 2rem;
    z-index: 2;
}

.cat-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.category-card:hover .cat-title {
    color: var(--primary-light);
}

.cat-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.cat-action svg {
    width: 20px;
    height: 20px;
}

.category-card:hover .cat-action {
    background: #ffffff;
    color: var(--text-main);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* =============================
   CATEGORY HERO (CATEGORY PAGE)
   ============================= */
.category-hero {
    padding: 2.5rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    animation: fadeInUp .5s ease both
}

.category-hero::before {
    display: none
}

.category-hero-icon {
    font-size: 3rem;
    margin-bottom: .75rem;
    animation: float 3s ease-in-out infinite
}

.category-hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -.5px;
    margin-bottom: .5rem
}

.category-hero-subtitle {
    font-size: .95rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem
}

.category-hero-stats {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap
}

.stat-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .9rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--shadow-xs)
}

.stat-number {
    color: var(--primary);
    font-weight: 700
}

/* =============================
   CATEGORY SEARCH BAR
   ============================= */
.category-search-bar {
    position: relative;
    margin-bottom: 1.5rem;
    animation: fadeInUp .5s ease .1s both
}

.category-search-bar .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 1rem
}

.category-search-bar input {
    width: 100%;
    padding: .85rem 1.2rem .85rem 2.8rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: .95rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: var(--bg-card);
    outline: none;
    transition: var(--transition);
    box-shadow: var(--shadow-xs)
}

.category-search-bar input::placeholder {
    color: var(--text-muted)
}

.category-search-bar input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1)
}

/* =============================
   PRODUCT CARD THUMBNAIL
   ============================= */
.card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform var(--transition)
}

.product-card:hover .card-thumb {
    transform: scale(1.05)
}

.card-icon-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    z-index: 1
}

.card-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem
}

.card-price {
    font-size: .92rem;
    font-weight: 700;
    color: var(--green-dark);
    background: rgba(37, 99, 235, 0.08);
    padding: .2rem .6rem;
    border-radius: 6px
}

/* =============================
   LOADING / SPINNER
   ============================= */
.loading-placeholder {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted)
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: rotate 1s linear infinite
}

@keyframes rotate {
    to {
        transform: rotate(360deg)
    }
}

/* =============================
   PRODUCT DETAIL EXTRAS
   ============================= */
.detail-price-box {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: .5rem
}

.detail-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: -.5px
}

.detail-unit {
    font-size: .9rem;
    color: var(--text-muted);
    font-weight: 500
}

.detail-seller-info {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: .75rem 1rem;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: .5rem
}

.indiamart-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: .75rem;
    padding: .6rem 1.2rem;
    background: rgba(29, 78, 216, 0.06);
    color: var(--primary);
    font-weight: 600;
    font-size: .88rem;
    border-radius: 50px;
    border: 1px solid rgba(29, 78, 216, 0.15);
    transition: var(--transition)
}

.indiamart-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

.back-to-category-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 1.5rem 0;
    padding: .65rem 1.3rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(29, 78, 216, 0.06);
    border-radius: 50px;
    transition: var(--transition);
    font-size: .92rem
}

.back-to-category-btn:hover {
    background: rgba(29, 78, 216, 0.12);
    transform: translateX(-4px)
}

/* Carousel Thumbs */
.carousel-thumbs {
    display: flex;
    gap: .5rem;
    padding: .75rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.carousel-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0
}

.carousel-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.2)
}

.carousel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.carousel-thumb:hover {
    border-color: var(--primary-light)
}

/* =============================
   RESPONSIVE ADDITIONS
   ============================= */
@media(max-width:1024px) {
    .category-grid.grid-mode {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .category-grid.grid-mode {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }

    .category-card {
        padding: 1.5rem 1rem
    }

    .category-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px
    }

    .category-card-icon span {
        font-size: 1.6rem
    }

    .category-card-name {
        font-size: .88rem
    }

    .category-hero {
        padding: 1.75rem 1.25rem
    }

    .category-hero-title {
        font-size: 1.35rem
    }

    .section-title {
        font-size: 1.5rem
    }
}

@media(max-width:480px) {
    .category-grid.grid-mode {
        grid-template-columns: 1fr;
        gap: .75rem
    }

    .category-card {
        padding: 1.1rem .9rem
    }

    .category-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: .75rem
    }

    .category-card-icon span {
        font-size: 1.4rem
    }

    .category-card-name {
        font-size: .82rem;
        margin-bottom: .5rem
    }

    .category-card-arrow {
        width: 28px;
        height: 28px
    }
}

/* =============================
   LANDING PAGE — LIGHT PREMIUM
   ============================= */
@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(30px, -40px) scale(1.1)
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(-20px, 30px) scale(1.15)
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(15px, 20px) scale(0.9)
    }
}

@keyframes landingReveal {
    0% {
        opacity: 0;
        transform: translateY(24px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes logoGlow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.15)
    }

    50% {
        box-shadow: 0 0 50px rgba(37, 99, 235, 0.25)
    }
}

@keyframes lineSlide {
    0% {
        opacity: 0
    }

    50% {
        opacity: .08
    }

    100% {
        opacity: .05
    }
}

@keyframes btnShimmer {
    0% {
        left: -100%
    }

    100% {
        left: 200%
    }
}

.landing-page {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity .9s cubic-bezier(.4, 0, .2, 1), transform .9s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden
}

.landing-page.exit {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none
}

.landing-page.hidden {
    display: none
}

.landing-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at top right, #f0faf4 0%, #ffffff 100%)
}

.landing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .6
}

.landing-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.3), transparent 70%);
    top: -10%;
    left: -5%;
    animation: orbFloat1 12s ease-in-out infinite
}

.landing-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
    bottom: -5%;
    right: -5%;
    animation: orbFloat2 10s ease-in-out infinite
}

.landing-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(134, 239, 172, 0.25), transparent 70%);
    top: 40%;
    left: 60%;
    animation: orbFloat3 14s ease-in-out infinite
}

.landing-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37, 99, 235, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: lineSlide 3s ease both;
    pointer-events: none
}

.landing-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-main);
    padding: 2rem;
    max-width: 520px
}

.landing-eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: landingReveal .7s ease .1s both
}

.landing-logo-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid rgba(37, 99, 235, 0.2);
    animation: landingReveal .7s ease .2s both, logoGlow 4s ease-in-out infinite;
    background: #ffffff;
    box-shadow: var(--shadow-md)
}

.landing-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.landing-title {
    margin-bottom: .75rem;
    animation: landingReveal .7s ease .3s both;
    line-height: 1.1
}

.landing-title-line {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text-main)
}

.landing-title-accent {
    font-size: 3.8rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.landing-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: .5px;
    animation: landingReveal .7s ease .45s both;
    margin-bottom: 1.5rem
}

.landing-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 auto 1.5rem;
    animation: landingReveal .7s ease .5s both
}

.landing-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: landingReveal .7s ease .55s both
}

.landing-stat {
    text-align: center
}

.landing-stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -.5px
}

.landing-stat-label {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: .15rem
}

.landing-stat-sep {
    width: 1px;
    height: 32px;
    background: var(--border)
}

@keyframes loaderFill {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

@keyframes dotPulse {
    0% {
        content: ''
    }

    33% {
        content: '.'
    }

    66% {
        content: '..'
    }

    100% {
        content: '...'
    }
}

.landing-loader {
    animation: landingReveal .7s ease .65s both;
    text-align: center
}

.landing-loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 4px;
    margin: 0 auto .75rem;
    overflow: hidden
}

.landing-loader-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-accent);
    border-radius: 4px;
    animation: loaderFill 3s ease-in-out forwards
}

.landing-loader-text {
    font-size: .8rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase
}

.landing-dots::after {
    content: '';
    animation: dotPulse 1.5s steps(1) infinite
}

.landing-verified {
    font-size: .75rem;
    color: var(--primary);
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: .5px;
    animation: landingReveal .7s ease .8s both;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .8rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50px
}

.main-site {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
    pointer-events: none
}

.main-site.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all
}

@media(max-width:768px) {
    .landing-title-line {
        font-size: 2.2rem
    }

    .landing-title-accent {
        font-size: 2.6rem
    }

    .landing-tagline {
        font-size: .88rem
    }

    .landing-logo-wrap {
        width: 72px;
        height: 72px;
        border-radius: 18px
    }

    .landing-stats {
        gap: 1rem
    }

    .landing-stat-num {
        font-size: 1.3rem
    }

    .landing-enter-btn {
        padding: .8rem 1.8rem;
        font-size: .92rem
    }

    .landing-orb-1 {
        width: 250px;
        height: 250px
    }

    .landing-orb-2 {
        width: 200px;
        height: 200px
    }

    .landing-orb-3 {
        width: 150px;
        height: 150px
    }
}

/* =============================
   ABOUT HERO SECTION
   ============================= */
.about-hero-section {
    padding: 4.5rem 0 3.5rem;
    background: linear-gradient(180deg, #fff 0%, var(--bg-surface) 100%);
    position: relative;
    overflow: hidden
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent)
}

.about-hero-header {
    text-align: center;
    margin-bottom: 3rem
}

.about-hero-icon-wrap {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm)
}

.about-hero-icon {
    font-size: 2rem
}

.about-hero-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -.8px;
    margin-bottom: 1rem
}

.about-hero-title span {
    color: var(--primary)
}

.about-hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.8
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem
}

.about-stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.about-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: center
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.about-stat-card:hover::after {
    transform: scaleX(1)
}

.about-stat-icon {
    font-size: 1.8rem;
    margin-bottom: .65rem
}

.about-stat-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: .35rem
}

.about-stat-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main)
}

.hsn-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-xs)
}

.hsn-heading {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    text-align: center
}

.hsn-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.hsn-card {
    padding: 1.25rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all .25s ease
}

.hsn-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm)
}

.hsn-code-badge {
    display: inline-block;
    padding: .25rem .7rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: .65rem
}

.hsn-card p {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.65
}

@media(max-width:900px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hsn-cards {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .about-hero-title {
        font-size: 1.8rem
    }

    .about-hero-desc {
        font-size: .95rem
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:480px) {
    .about-stats-grid {
        grid-template-columns: 1fr
    }
}

/* =============================
   VIDEO SECTION
   ============================= */
.videos-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface) 100%)
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.video-card {
    position: relative;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
    aspect-ratio: 9/14
}

.video-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15)
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .3s ease;
    filter: brightness(.9)
}

.video-card:hover .video-thumbnail {
    transform: scale(1.08);
    filter: brightness(.4)
}

.video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
    opacity: 0;
    transition: opacity .3s ease
}

.video-card:hover .video-iframe,
.video-card.playing .video-iframe {
    opacity: 1
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    transition: opacity .3s ease;
    pointer-events: none
}

.video-card:hover .video-overlay {
    opacity: 0
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all .3s ease;
    backdrop-filter: blur(8px);
    pointer-events: none
}

.video-play-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-left: 2px
}

.video-card:hover .video-play-btn {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5)
}

.video-title {
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.45;
    z-index: 3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.video-duration {
    display: inline-block;
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: .5rem;
    font-weight: 500;
    padding: .2rem .5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px
}

@media(max-width:900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem
    }
}

/* =============================
   PAGE VIEW SYSTEM
   ============================= */
.page-view {
    display: none;
    animation: fadeIn .4s ease both
}

.page-view.active {
    display: block
}

/* =============================
   VIEW MORE BUTTON
   ============================= */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 2rem;
    background: transparent;
    color: var(--primary);
    font-size: .95rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Outfit', sans-serif
}

.view-more-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(29, 78, 216, 0.25)
}

/* =============================
   ABOUT PAGE
   ============================= */
.about-page {
    padding: 3rem 0 5rem;
}

/* --- Hero Banner --- */
.about-page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem 4rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0eaff 40%, #f8faff 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 28px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.08), 0 1px 3px rgba(30, 58, 138, 0.04);
    gap: 3rem;
}

.about-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
    pointer-events: none;
}

.about-hero-content {
    flex: 1;
    z-index: 2;
}

.about-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.about-page-title {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
    line-height: 1.08;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-page-desc {
    font-size: 1.1rem;
    color: #475569;
    max-width: 550px;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.about-badge {
    padding: 0.45rem 1.1rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.25);
    letter-spacing: 0.2px;
}

.about-hero-visual {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    flex-shrink: 0;
}

.hero-glow-orb {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

.about-page-logo {
    width: 160px;
    height: 160px;
    border-radius: 28px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
}

.about-page-logo:hover {
    transform: rotate(0deg) scale(1.05);
}

/* --- Section Headings --- */
.about-section-heading {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.about-section-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;
    flex-shrink: 0;
}

.about-section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.about-section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* --- Factsheet --- */
.about-factsheet {
    margin-bottom: 4rem;
}

.factsheet-subtitle {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.factsheet-subtitle.mt-4 {
    margin-top: 3rem;
}

.factsheet-subtitle::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
}

.factsheet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.fact-card-gst {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .factsheet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fact-card-gst {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .factsheet-grid {
        grid-template-columns: 1fr;
    }
    .fact-card-gst {
        grid-column: span 1;
    }
}

.fact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fact-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 12px 24px -10px rgba(37, 99, 235, 0.08);
}

.fc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.08);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.fact-card:hover .fc-icon {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.fc-info {
    display: flex;
    flex-direction: column;
}

.fc-key {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.6px;
    margin-bottom: 0.2rem;
}

.fc-val {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-main);
}

/* --- Infrastructure --- */
.about-infra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.infra-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.infra-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.infra-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.infra-overlay h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.infra-card:hover img {
    transform: scale(1.1);
}

.infra-card:hover .infra-overlay h3 {
    transform: translateY(0);
}

/* --- Responsive About --- */
@media(max-width:900px) {
    .about-page-hero {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }
    .about-badges { justify-content: center; }
    .about-infra { grid-template-columns: 1fr; gap: 1.5rem; }
    .infra-card { height: 250px; }
    .about-section-heading { flex-direction: column; text-align: center; gap: 0.75rem; }
}

@media(max-width:768px) {
    .about-page-title { font-size: 2.2rem; }
    .about-page-desc { font-size: 1rem; }
    .about-section-title { font-size: 1.5rem; }
}

/* =============================
   TEAM SECTION
   ============================= */
.about-team-section {
    margin-bottom: 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.team-card-banner {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
    position: relative;
}

.team-card-banner::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50% 50% 0 0;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(30, 58, 138, 0.14);
    border-color: rgba(37, 99, 235, 0.25);
}

.team-card-ceo {
    border-color: rgba(37, 99, 235, 0.2);
}

.team-card-ceo .team-card-banner {
    height: 90px;
    background: linear-gradient(135deg, #0f2460 0%, #1e3a8a 30%, #2563eb 70%, #60a5fa 100%);
}

.team-card-ceo .team-card-banner::after {
    background: var(--bg-card);
}

.team-img-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin: -60px auto 0;
    border-radius: 50%;
    z-index: 2;
}

.team-card-ceo .team-img-wrap {
    width: 180px;
    height: 180px;
    margin-top: -70px;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.22);
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem 2rem;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.3px;
    margin: 0;
}

.team-role {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    padding: 0.4rem 1.1rem;
    background: var(--bg-surface);
    border-radius: 50px;
    border: 1px solid var(--border);
}

.team-role-ceo {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    font-size: 0.8rem;
    padding: 0.45rem 1.25rem;
}

.team-phone-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.team-phone-link:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.team-phone-link svg {
    flex-shrink: 0;
}

/* --- Team Responsive --- */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .team-img-wrap {
        width: 140px;
        height: 140px;
        margin-top: -55px;
    }
    .team-card-ceo .team-img-wrap {
        width: 150px;
        height: 150px;
        margin-top: -60px;
    }
    .team-card-banner {
        height: 70px;
    }
    .team-card-ceo .team-card-banner {
        height: 75px;
    }
    .team-info {
        padding: 1rem 1.25rem 1.75rem;
    }
}

/* =============================
   VIDEOS FULL PAGE
   ============================= */
.videos-full-page {
    padding-top: 2rem
}

.videos-full-page .video-grid {
    grid-template-columns: repeat(4, 1fr)
}

@media(max-width:1024px) {
    .videos-full-page .video-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .videos-full-page .video-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* NAV ACTIVE STATE */
.nav-link.active-page {
    color: var(--primary)
}

.nav-link.active-page::after {
    width: 100%
}


/* =============================
   MOBILE UI & RESPONSIVE OPTIMIZATIONS
   ============================= */
html, body {
    overflow-x: hidden; /* Prevent unexpected horizontal overflows on mobile */
}

h1, h2, h3, h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    /* Mobile Header Layout with Hamburger Menu */
    .header-nav {
        display: none !important;
    }
    
    .burger {
        display: flex !important;
    }
    
    .logo-text {
        font-size: 1.1rem !important;
    }
    
    .logo-img {
        height: 36px !important;
        width: 36px !important;
    }

    /* Fix page-view paddings */
    .page-view {
        padding-top: 1rem !important;
    }
}

@media (max-width: 480px) {
    /* Modal Box Tighter Paddings for Maximum Content Space */
    .modal-box {
        padding: 1.25rem !important;
        width: 94% !important;
        border-radius: 14px !important;
    }
    
    .modal-box h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .modal-box p {
        font-size: 0.88rem !important;
        line-height: 1.4 !important;
    }
    
    /* Reduce gaps on spec listings inside dynamic modals or details pages */
    .detail-specs table td {
        padding: 6px !important;
        font-size: 0.8rem !important;
    }

    /* Scale back button sizing and margins */
    .back-to-category-btn {
        margin: 1rem 0 !important;
        font-size: 0.88rem !important;
        padding: 0.5rem 0.8rem !important;
    }

    /* Tidy up Hero padding to fit screen more compactly */
    .hero {
        padding: 2.5rem 0 3rem !important;
    }

    .hero h2 {
        font-size: 1.65rem !important;
        line-height: 1.3 !important;
    }

    /* Streamline quote container layout for detail page */
    .quote-box {
        padding: 1.25rem !important;
        text-align: center !important;
    }
    
    .btn-quote {
        font-size: 0.95rem !important;
        padding: 0.8rem !important;
        width: 100% !important;
    }
}


/* =============================
   PHOTO GALLERY PAGE STYLES
   ============================= */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    animation: fadeInUp 0.4s ease both;
}

@media (max-width: 992px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.photo-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
}

.photo-img-box {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f3f4f6;
}

.photo-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-info {
    padding: 0.95rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-card);
}

.photo-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Global Loader Spinner Overlay */
.global-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    animation: fadeIn 0.3s ease both;
}

.global-loader-overlay p {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
}

.global-loader-overlay .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .photo-info {
        padding: 0.75rem 0.5rem;
    }
    .photo-title {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
}