/* Basic styling for the hamburger spans */
        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333; /* Or your theme color */
            margin: 5px 0;
            transition: 0.4s;
        }
        
        /* Animation when menu is open */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        } 
        
        /* --- Main Content Layout --- */
        
        /* Banner: Full Width */
        .about-banner {
            background:#000, 
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 90px 20px; /* Vertical padding for height */
            text-align: center;  
            width: 100%; /* Full width */
			margin-top: 70px !important;
        }

        .about-banner h1 {
            margin: 0;
            font-size: 48px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .about-banner p { margin: 10px 0 0; font-size: 18px; opacity: 0.9; }
        .banner-breadcrumb { position: absolute; top: 20px; left: 20px; font-size: 14px; opacity: 0.8; }

        /* Container for content width constraint */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Flex layout for Intro and Factsheet */
        .main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        /* Left Column */
        .left-col { flex: 2; min-width: 300px; }
        .company-title {
            font-size: 28px;
            color: #0066cc;
            margin-bottom: 15px;
            font-weight: bold;
            border-bottom: 2px solid #0066cc;
            padding-bottom: 5px;
            display: inline-block;
        }
        .description { margin-bottom: 20px; text-align: justify; }
        .product-range {
            background-color: #f9f9f9;
            padding: 20px;
            border-left: 4px solid #0066cc;
            margin-bottom: 20px;
            border-radius: 0 8px 8px 0;
        }
        .product-range h3 { margin-top: 0; font-size: 20px; color: #333; }
        .product-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
        .product-list li { background: #eef5fc; padding: 8px 15px; border-radius: 20px; font-size: 14px; color: #004282; font-weight: 500; }

        /* Right Column (Factsheet) */
        .right-col { flex: 1; min-width: 280px; }
        .factsheet-box { border: 1px solid #e5e7eb; background-color: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
        .factsheet-header { background-color: #0066cc; color: white; padding: 12px 20px; font-weight: bold; font-size: 18px; }
        .factsheet-table { width: 100%; border-collapse: collapse; }
        .factsheet-table td { padding: 12px 20px; border-bottom: 1px solid #f3f4f6; font-size: 14px; vertical-align: top; }
        .factsheet-table td:first-child { font-weight: bold; color: #555; width: 40%; background: #f9fafb; }

        /* Why Us Section */
        .why-us-section { margin-top: 40px; border-top: 1px solid #eee; padding-top: 30px; }
        .section-title { font-size: 24px; color: #333; margin-bottom: 20px; font-weight: bold; }
        .why-us-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
        .why-us-list li {
            background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%230066cc"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat 15px center;
            background-size: 20px;
            padding: 15px 15px 15px 45px;
            background-color: #f0f8ff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-weight: 500;
        }

        /* Gallery Section */
        .gallery-section { margin-top: 50px; }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
        .gallery-item {
            background-color: #ddd; height: 400px; display: flex; align-items: center; justify-content: center;
            color: #666; font-size: 14px; border-radius: 8px; border: 1px solid #ccc;
            background-size: cover; background-position: center; transition: transform 0.3s;
        }
        .gallery-item:hover { transform: scale(1.02); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

        /* --- Footer Styles --- */
        .footer { background-color: #111827; color: #9ca3af; }
        .footer-link { color: #9ca3af; transition: color 0.2s; text-decoration: none; display: block; margin-bottom: 0.5rem; }
        .footer-link:hover { color: #ffffff; }
        .social-icon { width: 36px; height: 36px; background: #1f2937; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #9ca3af; transition: all 0.2s; }
        .social-icon:hover { background: #EA580C; color: white; }
        .copyright { background-color: #0b1120; color: #6b7280; font-size: 0.875rem; border-top: 1px solid #1f2937; }
        .logo-img { height: 30px; filter: grayscale(100%) brightness(150%); opacity: 0.7; }

        /* Responsive Fixes */
        @media (max-width: 768px) {
            .about-banner { padding: 50px 20px; }
            .about-banner h1 { font-size: 32px; }
            .main-content { flex-direction: column; }
            .mobile-menu-btn { display: flex; } /* Show mobile button */
            .desktop-nav { display: none; } /* Hide desktop nav */
        }/* Main Container */
        .container {
            max-width: 1200px;
            margin: 20px auto;
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        } /* --- NEW BANNER CODE --- */
        .about-banner {
            background: linear-gradient(rgba(0, 66, 130, 0.85), rgba(0, 66, 130, 0.9));
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 60px 40px;
            text-align: center;
            position: relative;
        }

        .about-banner h1 {
            margin: 0;
            font-size: 42px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .about-banner p {
            margin: 10px 0 0;
            font-size: 16px;
            opacity: 0.9;
        }

        .banner-breadcrumb {
            position: absolute;
            top: 20px;
            left: 40px;
            font-size: 14px;
            opacity: 0.8;
        }
        
        .banner-breadcrumb span {
            color: #ccc;
        } /* Left Column - Company Intro */
        .left-col {
            flex: 2;
            min-width: 300px;
        }

        .company-title {
            font-size: 24px;
            color: #0066cc; /* Indiamart-like blue */
            margin-bottom: 10px;
            font-weight: bold;
            border-bottom: 2px solid #0066cc;
            padding-bottom: 5px;
            display: inline-block;
        }

        .description {
            margin-bottom: 20px;
            text-align: justify;
        }

        .product-range {
            background-color: #f9f9f9;
            padding: 15px;
            border-left: 4px solid #0066cc;
            margin-bottom: 20px;
        }

        .product-range h3 {
            margin-top: 0;
            font-size: 18px;
            color: #333;
        }

        .product-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            list-style: none;
            padding: 0;
        }

        .product-list li {
            background: #eef5fc;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
        }

        /* Right Column - Factsheet */
        .right-col {
            flex: 1;
            min-width: 250px;
        }

        .factsheet-box {
            border: 1px solid #ddd;
            background-color: #fff;
        }

        .factsheet-header {
            background-color: #0066cc;
            color: white;
            padding: 10px 15px;
            font-weight: bold;
            font-size: 18px;
        }

        .factsheet-table {
            width: 100%;
            border-collapse: collapse;
        }

        .factsheet-table td {
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
            font-size: 14px;
            vertical-align: top;
        }

        .factsheet-table td:first-child {
            font-weight: bold;
            color: #555;
            width: 40%;
        }

        /* Why Us Section */
        .why-us-section {
            margin-top: 40px;
            border-top: 1px solid #ddd;
            padding-top: 20px;
        }

        .section-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .why-us-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .why-us-list li {
            background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%230066cc"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
            background-size: 20px;
            padding-left: 30px;
            position: relative;
            padding: 10px 10px 10px 35px;
            background-color: #f0f8ff;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
        }

        /* Gallery Section */
        .gallery-section {
            margin-top: 40px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px; margin-top: 20px;
        }

        .gallery-item {
            background-color: #ddd;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 14px;
            border: 1px solid #ccc;
            background-size: contain;
            background-position: center;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
        }:root {
    --bg: #f8f9fa;
    --bg-secondary: #ffffff;
    --fg: #111111;
    --muted: #5a5a5a;
    --accent: #ff6b00;
    --accent-light: #ff8c38;
    --card: #ffffff;
    --border: #e1e4e8;
    --gradient-start: #ff6b00;
    --gradient-end: #ff3d00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--fg);
    overflow-x: hidden;
}

.font-display {
    font-family: 'Bebas Neue', cursive;
}

/* Animated Background for Hero (Light Theme) */
.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 0, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 61, 0, 0.05), transparent),
        var(--bg);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.04) 0%, transparent 40%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); background: #fff;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Navigation */
.nav-link {
    position: relative;
    color: var(--fg);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 107, 0, 0.08);
    color: var(--accent);
    transform: translateX(4px);
}

/* Hero Slider */
.slider-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Light overlay for text readability on images */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.92) 0%, rgba(248, 249, 250, 0.7) 50%, rgba(248, 249, 250, 0.4) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
}

.slide-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    color: #0a0a0b;
}

.slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

.slide-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--accent);
    margin-top: 1.5rem;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.slide.active .slide-subtitle {
    transform: translateY(0);
    opacity: 1;
}

.slide-text {
    max-width: 600px;
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.slide.active .slide-text {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 10%;
    left: 5%;
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.slider-dot {
    width: 60px;
    height: 4px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-dot::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.slider-dot.active::after {
    width: 100%;
    animation: progress 5s linear forwards;
}

@keyframes progress {
    from { width: 0; }
    to { width: 100%; }
}

.slider-dot:hover {
    background: rgba(0, 0, 0, 0.25);
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.25);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    color: #333;
    transition: all 0.3s ease;
}

.slider-arrow:hover svg {
    color: #fff;
}

.slider-arrow.prev { left: 2%; }
.slider-arrow.next { right: 2%; }

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.02em;
    line-height: 1;
    color: #0a0a0b;
}

.section-subtitle {
    color: var(--accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

/* Product Cards */
.product-card {
    position: relative;
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(60px, -60px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.product-card:hover .product-icon {
    transform: translate(0, 0);
}

.product-content {
    padding: 1.5rem;
    background: #fff;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    color: #111;
}

.product-card:hover .product-title {
    color: var(--accent);
}

.product-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
}

.stat-card {
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* HSN Table */
.table-container {
    background: var(--card);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.table-header {
    background: rgba(255, 107, 0, 0.05);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.hsn-table {
    width: 100%;
}

.hsn-table th,
.hsn-table td {
    padding: 1.25rem 2rem;
    text-align: left;
}

.hsn-table th {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #fafafa;
}

.hsn-table tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.hsn-table tbody tr:hover {
    background: rgba(255, 107, 0, 0.03);
}

.hsn-table tbody tr:last-child {
    border-bottom: none;
}

.hsn-code {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #111;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #111;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #1a1a1a; /* Dark footer for contrast */
    color: #fff;
    border-top: 1px solid #333;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
}

.footer h4 {
    color: #fff;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.social-icon svg {
    color: #fff;
}

/* Copyright */
.copyright {
    background: #111;
    border-top: 1px solid #333;
}

.copyright p {
    color: #777;
}

.logo-img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1); /* Make logos white */
}

.logo-img:hover {
    opacity: 1;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #111;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: right 0.4s ease;
    padding: 6rem 2rem 2rem;
    border-left: 1px solid var(--border);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #111;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    .hsn-table th,
    .hsn-table td {
        padding: 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}