/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Outfit:wght@400;600;700&display=swap');

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-magenta), var(--primary-green));
    z-index: 2000;
    transition: width 0.1s ease;
}

:root {
    /* Light Theme - Brand Colors */
    --primary-blue: #0070bb;
    --primary-magenta: #a3328e;
    --primary-green: #68bd45;

    /* Light Theme - Backgrounds and Accents */
    --bg-white: #ffffff;
    --bg-light-purple: #f8ebf5;
    --bg-light-green: #f2fbf1;
    --bg-dark: #222222;

    /* Light Theme - Text Colors */
    --text-dark: #333333;
    --text-blue: #0070bb;
    --text-white: #ffffff;
    --text-gray: #666666;

    /* Spacing and Borders */
    --section-padding: 80px 5%;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Dark Theme - System Preference */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        /* Dark Theme - Brand Colors (Brightened for visibility) */
        --primary-blue: #3a9bff;
        --primary-magenta: #e055b8;
        --primary-green: #7fd656;

        /* Dark Theme - Backgrounds */
        --bg-white: #1a1a1a;
        --bg-light-purple: #252525;
        --bg-light-green: #2a2a2a;
        --bg-dark: #0f0f0f;

        /* Dark Theme - Text Colors */
        --text-dark: #e0e0e0;
        --text-blue: #3a9bff;
        --text-white: #ffffff;
        --text-gray: #a0a0a0;
    }
}

/* Dark Theme - Manual Toggle */
[data-theme="dark"] {
    /* Dark Theme - Brand Colors (Brightened for visibility) */
    --primary-blue: #3a9bff;
    --primary-magenta: #e055b8;
    --primary-green: #7fd656;

    /* Dark Theme - Backgrounds */
    --bg-white: #1a1a1a;
    --bg-light-purple: #252525;
    --bg-light-green: #2a2a2a;
    --bg-dark: #0f0f0f;

    /* Dark Theme - Text Colors */
    --text-dark: #e0e0e0;
    --text-blue: #3a9bff;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;

    color-scheme: dark;
}

/* Dark Theme - Specific Element Styling */
[data-theme="dark"] header {
    background: rgba(26, 26, 26, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .logo img {
    filter: invert(1) hue-rotate(180deg);
}

[data-theme="dark"] .logo-divider {
    background: rgba(255, 255, 255, 0.2) !important;
}

[data-theme="dark"] .menu-toggle {
    color: var(--primary-blue);
}

[data-theme="dark"] nav ul {
    background: rgba(26, 26, 26, 0.98) !important;
}

[data-theme="dark"] nav ul li a {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .blob {
    opacity: 0.08;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: var(--text-gray);
}

[data-theme="dark"] .map-container {
    background: #2a2a2a;
}

/* Smooth transition when toggling theme */
html {
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 5%;
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 30px;
}

.logo img {
    height: 45px;
    display: block;
}

nav {
    display: flex;
    justify-content: center;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Theme Toggle Button */
#theme-toggle-btn {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

#theme-toggle-btn:hover {
    background: rgba(0, 112, 187, 0.1);
    transform: scale(1.1);
}

[data-theme="dark"] #theme-toggle-btn {
    color: var(--primary-blue);
}

[data-theme="dark"] #theme-toggle-btn:hover {
    background: rgba(58, 155, 255, 0.2);
}

/* Header Action Container */
.header-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    color: var(--primary-magenta);
}

nav ul li a:hover {
    color: var(--primary-green);
}

.btn-get-started,
.btn-submit {
    background: linear-gradient(135deg, var(--primary-magenta), #c24bb0);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(163, 50, 142, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-get-started:hover,
.btn-submit:hover {
    background: linear-gradient(135deg, #c24bb0, var(--primary-magenta));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(163, 50, 142, 0.6);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-get-started:active,
.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(163, 50, 142, 0.4);
}

/* Add icon to Get In Touch via CSS */
.btn-get-started::after {
    content: '\f061';
    /* FontAwesome Arrow Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.btn-get-started:hover::after {
    transform: translateX(5px);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    border: none;
    /* Reset for button element */
    font-size: 1rem;
    padding: 15px;
}

/* Decorative Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: pulse-soft 10s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--primary-magenta);
    bottom: -200px;
    right: -100px;
    animation-delay: -2s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    top: 40%;
    right: 10%;
    animation-delay: -5s;
}

/* Ashoka Hero Section */
.hero-ashoka {
    padding: 100px 5% 60px;
    text-align: center;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.branding-block {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.branding-block .hero-logo {
    width: 100%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.1));
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlights Section */
.highlights {
    padding: 40px 5% 80px;
    background: var(--bg-white);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-box {
    border: 3px solid #000;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    background: white;
}

.highlight-box:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

/* Distributor Banner */
.distributor-banner {
    background: var(--primary-blue);
    color: white;
    padding: 25px 5%;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 112, 187, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 10px;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
}

.about {
    background: var(--bg-white);
}

.services {
    background: var(--bg-light-purple);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto 0;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 25px;
    /* Offset for icon overlap if needed, or just padding */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(163, 50, 142, 0.15);
    border-color: var(--primary-magenta);
}

.service-header {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-header img {
    transform: scale(1.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-magenta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    top: 170px;
    /* Positioned to overlap the header and body */
    left: 30px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(163, 50, 142, 0.3);
    border: 3px solid white;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 112, 187, 0.3);
}

.service-body {
    padding: 40px 30px 30px;
    flex-grow: 1;
}

.service-body h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-body p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.products {
    background: var(--bg-light-green);
    padding: 100px 5%;
}

.product-range-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto 0;
}

.product-range-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    flex: 1 1 280px;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

.product-range-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(104, 189, 69, 0.15);
    border-color: var(--primary-green);
}

.card-icon {
    width: 120px;
    height: 60px;
    background: var(--bg-light-green);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.product-range-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.product-range-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.product-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.product-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.product-list li i {
    color: var(--primary-green);
    font-size: 0.8rem;
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    background: transparent;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: auto;
    width: 100%;
}

.card-link:hover {
    color: white;
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 112, 187, 0.2);
    gap: 12px;
}

.contact {
    background: var(--bg-white);
    padding: 100px 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1400px;
    margin: 40px auto 0;
    align-items: stretch;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
}

/* Quick Contact Grid */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 112, 187, 0.1);
    border-color: var(--primary-blue);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light-purple);
    color: var(--primary-magenta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--primary-magenta);
    color: white;
    transform: rotateY(360deg);
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.contact-card-value {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-card-link {
    color: var(--primary-magenta);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-value:hover,
.contact-card-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.map-container {
    flex-grow: 1;
    min-height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #eee;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Modern Product Gallery */
.gallery {
    background: var(--bg-light-purple);
    padding: 100px 5%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(163, 50, 142, 0.9), rgba(0, 112, 187, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Category Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid rgba(0, 112, 187, 0.2);
    background: rgba(255, 255, 255, 0.5);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

.filter-btn:hover {
    background: rgba(0, 112, 187, 0.05);
    border-color: var(--primary-blue);
}

.filter-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(0, 112, 187, 0.2);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 112, 187, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-form-wrapper p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 112, 187, 0.1);
    border-radius: 8px;
    background: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-magenta);
    box-shadow: 0 5px 15px rgba(163, 50, 142, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 18px;
    border-radius: 8px;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-submit:hover {
    background: var(--primary-magenta);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(163, 50, 142, 0.2);
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        min-height: 400px;
        order: 2;
    }
}

/* Card Enhancements */
.card-premium {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12) !important;
    border-color: var(--primary-magenta) !important;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 60px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-magenta);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
    header {
        position: fixed;
        /* Force fixed on mobile */
        top: 0;
        left: 0;
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        /* Ensure header is on top */
    }

    /* Add padding to body/main to prevent content hide */
    body {
        padding-top: 80px;
    }

    .logo {
        order: 1;
    }

    .header-action {
        order: 2;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-right: 15px;
    }

    .header-action .btn-get-started {
        display: none;
    }

    .logo img {
        height: 55px;
        /* Sightly larger for mobile prominence */
    }

    .menu-toggle {
        display: flex !important;
        /* Force flex display to ensure visibility */
        align-items: center;
        justify-content: center;
        color: var(--primary-blue);
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 2005;
        /* High priority to be clickable */
        position: relative;
    }

    nav {
        order: 3;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        /* Align hamburger to the right */
        z-index: 2002;
        /* Ensure nav container is above */
    }

    nav ul {
        position: fixed;
        top: 75px;
        /* Adjust based on header height, ensure no gap */
        right: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        /* items at top */
        padding-top: 40px;
        transition: var(--transition);
        z-index: 1001;
        /* Below header (2000) so menu slides under or matches */
        /* Wait, if header is 2000, and menu is fixed, it should be above content but maybe below header? */
        /* Actually, usually menu is part of header. If header is fixed, menu is fixed relative to viewport. */
        /* Let's make menu z-index 1999 to stay behind header bar but above page */
        z-index: 1999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    nav ul li a {
        color: var(--text-dark);
        font-size: 1.5rem;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
    }

    .btn-get-started {
        display: inline-block;
        margin-top: 10px;
    }

    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
        gap: 30px;
        width: 100%;
    }

    .hero-slider {
        /* Ensure slider width remains consistent with slide count on mobile */
        width: 400%;
    }

    .hero-image {
        text-align: center;
        order: -1;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .distributor-banner {
        font-size: 1.1rem;
        /* Scaled down for mobile flow */
        padding: 15px 5%;
        letter-spacing: 1px;
    }

    .branding-block .hero-logo {
        max-width: 100%;
        max-height: 250px;
        object-fit: contain;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    section {
        padding: 40px 5%;
    }
}

.menu-toggle {
    display: none;
}

/* Supreme Branding */
.supreme-badge {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trigger-modal {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.trigger-modal:hover {
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 112, 187, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content-wrapper {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: zoom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-content {
    width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

#modal-caption {
    margin-top: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 60px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3001;
}

.close-modal:hover {
    color: var(--primary-magenta);
    transform: rotate(90deg);
}

@keyframes zoom {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media only screen and (max-width: 700px) {
    .modal-content-wrapper {
        width: 90%;
        padding: 20px;
    }

    .close-modal {
        right: 20px;
        top: 20px;
    }

    .hero-ashoka {
        padding: 50px 5% 30px;
        /* Brighter, tighter hero */
    }

    .supreme-badge {
        display: none;
        /* Hide in mobile header to save space */
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .service-card {
        padding-top: 0;
    }

    .service-body {
        padding: 30px 20px 20px;
    }

    .service-icon {
        top: 155px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary-magenta);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(163, 50, 142, 0.3);
    z-index: 2100;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0, 112, 187, 0.3);
    transform: scale(1.1);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    header .logo {
        gap: 8px !important;
    }
    header .logo img:first-of-type {
        height: 52px !important;
    }
    header .logo-divider {
        height: 32px !important;
    }
    header .logo img:last-of-type {
        height: 34px !important;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 10px !important;
    }
    header .logo {
        gap: 6px !important;
        flex-shrink: 0 !important;
    }
    header .logo img:first-of-type {
        height: 46px !important;
        flex-shrink: 0 !important;
    }
    header .logo-divider {
        height: 28px !important;
        flex-shrink: 0 !important;
    }
    header .logo img:last-of-type {
        height: 28px !important;
        flex-shrink: 0 !important;
    }
    .menu-toggle {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.4rem !important;
        flex-shrink: 0 !important;
    }
    #theme-toggle-btn {
        min-width: 36px !important;
        min-height: 36px !important;
        font-size: 1.1rem !important;
        flex-shrink: 0 !important;
    }
    .header-action {
        margin-right: 5px !important;
        gap: 5px !important;
        flex-shrink: 0 !important;
    }
    header nav {
        flex-shrink: 0 !important;
    }
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .product-range-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 360px) {
    header .logo {
        gap: 4px !important;
    }
    header .logo img:first-of-type {
        height: 42px !important;
    }
    header .logo-divider {
        height: 24px !important;
    }
    header .logo img:last-of-type {
        height: 25px !important;
    }
    .menu-toggle {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.2rem !important;
    }
    #theme-toggle-btn {
        min-width: 32px !important;
        min-height: 32px !important;
        font-size: 1rem !important;
    }
}