:root {
    --primary-purple: #6E3CBC;
    --primary-gold: #F2C94C;
    --white: #FFFFFF;
    --dark-text: #1F1F1F;
    --neutral-gray: #F6F6F6;
    --purple-dark: #5A2FA0;
    --purple-light: #8B5FCE;
    --gold-dark: #D4B042;
    --primary-blue: #0072ff;
    --light-blue: #00c6ff;
    --header-bg: #F3E8FF;
    --header-purple: #A87DC4;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-modern: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-elevated: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    --spacing-2xl: 120px;
}

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

body {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Full-width Header Image Slider */
.hero-slider-fullwidth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(110, 60, 188, 0.4) 100%);
    z-index: 1;
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

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

.slider-line {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-line:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scaleY(2) scaleX(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.slider-line:active {
    transform: scaleY(1.5) scaleX(0.95);
}

.line-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--primary-gold) 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.line-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

.slider-line.active {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(110, 60, 188, 0.4);
    transform: scaleY(1.3);
    border-color: rgba(110, 60, 188, 0.3);
}

.slider-line.active:hover {
    transform: scaleY(2.2) scaleX(1.1);
    box-shadow: 0 8px 25px rgba(110, 60, 188, 0.5);
}

.slider-line.active .line-progress {
    width: 100%;
    animation: progressFill 4s linear;
    box-shadow: 0 0 15px rgba(110, 60, 188, 0.6);
}

.slider-line.active .line-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0 2px 2px 0;
    animation: progressGlow 4s linear;
}

@keyframes progressFill {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes progressGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.5);
    }
}

/* Slider arrows removed - using line navigation only */

/* Website Loader */
.website-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.website-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-content {
    text-align: center;
    max-width: 300px;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: var(--neutral-gray);
    border-radius: 2px;
    margin: 20px 0;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-gold));
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.loader-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loader-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.loader-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.loader-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.loader-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loader-dot:nth-child(1) { animation-delay: -0.32s; }
.loader-dot:nth-child(2) { animation-delay: -0.16s; }
.loader-dot:nth-child(3) { animation-delay: 0s; }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Cookie Policy Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-purple);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: var(--primary-gold);
    color: var(--dark-text);
}

.cookie-btn-accept:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-btn-decline:hover {
    background: var(--white);
    color: var(--primary-purple);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cookie-banner-text {
        min-width: auto;
    }
    
    .cookie-banner-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Page Headers - Consistent Style Across All Pages */
.page-header {
    background: var(--header-bg);
    padding: 80px 0 50px;
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background for page headers without images - Updated 2025-12-29 */
.page-header.animated-bg {
    background: linear-gradient(
        45deg,
        #6E3CBC 0%,
        #A87DC4 25%,
        #F2C94C 50%,
        #A87DC4 75%,
        #6E3CBC 100%
    ) !important;
    background-size: 400% 400%;
    animation: stripeGradient 15s ease infinite;
}

/* Randomized animation variations per page */
.page-header.animated-bg.variant-1 {
    animation: stripeGradient 12s ease-in-out infinite;
    background: linear-gradient(
        60deg,
        #6E3CBC 0%,
        #9B59B6 30%,
        #F2C94C 60%,
        #A87DC4 100%
    ) !important;
}

.page-header.animated-bg.variant-2 {
    animation: stripeGradient 18s linear infinite;
    background: linear-gradient(
        30deg,
        #8E44AD 0%,
        #A87DC4 20%,
        #F39C12 50%,
        #6E3CBC 80%,
        #D8A7CA 100%
    ) !important;
}

.page-header.animated-bg.variant-3 {
    animation: stripeGradient 20s ease-out infinite;
    background: linear-gradient(
        -45deg,
        #6E3CBC 0%,
        #E74C3C 25%,
        #F2C94C 50%,
        #3498DB 75%,
        #A87DC4 100%
    ) !important;
}

.page-header.animated-bg.variant-4 {
    animation: stripeGradient 14s ease infinite reverse;
    background: linear-gradient(
        90deg,
        #9B59B6 0%,
        #6E3CBC 30%,
        #F1C40F 60%,
        #A87DC4 100%
    ) !important;
}

/* Default page header decorative backgrounds */
.page-header:not(.animated-bg)::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(174, 125, 196, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header:not(.animated-bg)::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(174, 125, 196, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Animated background shimmer overlay */
.page-header.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        -45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%
    );
    background-size: 200% 200%;
    animation: stripeShimmer 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6E3CBC 0%, #A87DC4 50%, #D8A7CA 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.page-header-icon .material-icons {
    font-size: 32px;
}

.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6E3CBC 0%, #A87DC4 50%, #D8A7CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header.animated-bg h1 {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #FFFFFF;
    background-clip: unset;
    text-fill-color: #FFFFFF;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header-subtitle {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 32px;
}

.page-header.animated-bg .page-header-subtitle {
    color: #FFFFFF;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.page-header.animated-bg .page-header-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-header.animated-bg .page-header-content {
    z-index: 2;
}

.page-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-header-cta:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(110, 60, 188, 0.3);
}

.page-header-cta .material-icons {
    font-size: 20px;
}


/* Consistent Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #6E3CBC 0%, #A87DC4 50%, #D8A7CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Override gradient text for hero section */
.hero h1,
.hero-title {
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-fill-color: #FFFFFF !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: #FFFFFF !important;
}

h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6E3CBC 0%, #A87DC4 50%, #D8A7CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.875rem;
    color: var(--dark-text);
    margin-bottom: 0.875rem;
}

h4 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 0.625rem;
}

h6 {
    font-size: 1.125rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6E3CBC 0%, #A87DC4 50%, #D8A7CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Modern Card Design - Based on Reference */
.modern-card-new {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.modern-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.modern-card-new .card-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(110, 60, 188, 0.1) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.modern-card-new .card-icon-circle .material-icons {
    font-size: 3rem !important;
    color: var(--primary-purple) !important;
}

.modern-card-new h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.modern-card-new p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modern-card-new .btn-outline-purple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-purple);
    border: 1px solid var(--primary-purple);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-card-new .btn-outline-purple:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 60, 188, 0.3);
}

.modern-card-new .btn-outline-purple .material-icons {
    font-size: 18px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header-subtitle {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2, .section-title {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .modern-card-new {
        padding: 32px 20px;
    }
    
    .modern-card-new .card-icon-circle {
        width: 70px;
        height: 70px;
    }
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
}

.section-sm {
    padding: var(--spacing-xl) 0;
}

.section-lg {
    padding: 100px 0;
}

.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 0;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 300;
}

.caption {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #666;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

a:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Modern Button Styles */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 16px 32px;
    margin: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: transparent;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    overflow: hidden;
}

.btn-primary {
    background-image: linear-gradient(135deg, var(--primary-purple), var(--purple-light));
    box-shadow: 0px 4px 0px var(--purple-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 0px var(--purple-dark);
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(0px);
    box-shadow: none;
    background-image: linear-gradient(135deg, var(--purple-light), var(--primary-purple));
}

.btn-primary:before,
.btn-primary:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}

.btn-primary:before {
    top: -3px;
    left: -3px;
    border-radius: 40px;
    border-top: 3px solid var(--white);
    border-left: 3px solid var(--white);
}

.btn-primary:after {
    bottom: -3px;
    right: -3px;
    border-radius: 40px;
    border-bottom: 3px solid var(--white);
    border-right: 3px solid var(--white);
}

.btn-secondary {
    background-image: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    color: var(--dark-text);
    box-shadow: 0px 4px 0px var(--gold-dark);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 0px var(--gold-dark);
    text-decoration: none;
}

.btn-secondary:active {
    transform: translateY(0px);
    box-shadow: none;
    background-image: linear-gradient(135deg, var(--gold-dark), var(--primary-gold));
}

.btn-secondary:before,
.btn-secondary:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}

.btn-secondary:before {
    top: -3px;
    left: -3px;
    border-radius: 40px;
    border-top: 3px solid var(--dark-text);
    border-left: 3px solid var(--dark-text);
}

.btn-secondary:after {
    bottom: -3px;
    right: -3px;
    border-radius: 40px;
    border-bottom: 3px solid var(--dark-text);
    border-right: 3px solid var(--dark-text);
}

.btn-white {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-modern);
}

.btn-white {
    background: var(--white);
    color: var(--primary-purple);
    box-shadow: 0px 4px 0px #e0e0e0;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 0px #e0e0e0;
    text-decoration: none;
}

.btn-icon {
    padding: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(110, 60, 188, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-modern);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.1);
}

.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: var(--purple-light);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-purple);
    background: rgba(110, 60, 188, 0.05);
}

.nav-menu a.active {
    color: var(--primary-purple);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
}

/* Mobile Navigation */
.nav-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-elevated);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: var(--spacing-lg);
    overflow-y: auto;
}

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

/* Modern Hero Sections */
.hero {
    min-height: calc(100vh - 80px); /* Subtract navbar height from viewport */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
    padding: 0 60px;
}

/* Force white text on hero section */
.hero .hero-text * {
    color: #FFFFFF !important;
}

.hero .hero-text h1,
.hero .hero-text p {
    color: #FFFFFF !important;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-fill-color: #FFFFFF !important;
    position: relative;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    background: none !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-gold));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #FFFFFF !important;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: nowrap;
    margin-top: var(--spacing-md);
    align-items: center;
}

/* Global rule: Keep all button containers horizontal */
.hero-buttons,
.button-container,
.cta-buttons {
    flex-wrap: nowrap !important;
}

/* Global Card Button Stacking Rule - Stack all buttons in cards vertically */
.product-card [style*="display: flex"][style*="gap"],
.modern-card [style*="display: flex"][style*="gap"],
.category-card [style*="display: flex"][style*="gap"],
.service-card [style*="display: flex"][style*="gap"],
.feature-card [style*="display: flex"][style*="gap"],
.item-card [style*="display: flex"][style*="gap"],
.school-card [style*="display: flex"][style*="gap"],
[class*="card"] [style*="display: flex"][style*="gap"]:has(.btn) {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
}

/* Ensure all buttons in cards take full width and are properly centered */
.product-card .btn,
.modern-card .btn,
.category-card .btn,
.service-card .btn,
.feature-card .btn,
.item-card .btn,
.school-card .btn,
[class*="card"] .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

/* Special handling for button containers with pricing */
.product-card [style*="display: flex"][style*="gap"]:has(.category-price),
.modern-card [style*="display: flex"][style*="gap"]:has(.category-price),
.category-card [style*="display: flex"][style*="gap"]:has(.category-price),
[class*="card"] [style*="display: flex"][style*="gap"]:has(.category-price) {
    flex-direction: column !important;
    gap: 10px !important;
}

/* Price tags in cards */
.category-price,
.price-tag,
[class*="price"] {
    text-align: center !important;
    margin-top: auto !important;
}

/* Override any inline styles that might interfere */
[class*="card"] [style*="flex: 1"] {
    flex: none !important;
    width: 100% !important;
}

/* Responsive card button improvements */
@media (max-width: 768px) {
    /* Force vertical stacking on mobile for all card buttons */
    [class*="card"] [style*="display: flex"] {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    /* Ensure buttons don't get squashed on mobile */
    [class*="card"] .btn {
        min-height: 44px !important;
        padding: 12px 16px !important;
        white-space: nowrap !important;
        font-size: 0.9rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet view - still stack buttons to prevent squashing */
    [class*="card"] [style*="display: flex"]:has(.btn) {
        flex-direction: column !important;
        gap: 10px !important;
    }
}

/* Enhanced Individual Uniform Page Headers */
.uniform-page-hero {
    position: relative;
    overflow: hidden;
}

.uniform-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(110, 60, 188, 0.85) 0%,
        rgba(242, 201, 76, 0.6) 50%,
        rgba(110, 60, 188, 0.9) 100%
    );
    z-index: 1;
    animation: gradientShift 8s ease-in-out infinite;
}

.uniform-page-hero .hero-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 40%, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%
    ),
    radial-gradient(
        circle at 70% 80%, 
        rgba(110, 60, 188, 0.2) 0%, 
        transparent 60%
    );
    border-radius: var(--radius-lg);
    animation: floatingOrbs 12s ease-in-out infinite;
}

.uniform-page-hero .hero-text {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(
            135deg,
            rgba(110, 60, 188, 0.85) 0%,
            rgba(242, 201, 76, 0.6) 50%,
            rgba(110, 60, 188, 0.9) 100%
        );
    }
    50% {
        background: linear-gradient(
            135deg,
            rgba(242, 201, 76, 0.7) 0%,
            rgba(110, 60, 188, 0.8) 50%,
            rgba(242, 201, 76, 0.9) 100%
        );
    }
}

@keyframes floatingOrbs {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(10px, -15px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-5px, -25px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(-15px, -10px) scale(1.05);
        opacity: 0.7;
    }
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-placeholder {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.hero-img-placeholder:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-img-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Floating elements */
.hero-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-modern);
    padding: var(--spacing-md);
    z-index: 3;
}

.hero-float-1 {
    top: 10%;
    right: -20px;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-purple);
}

.hero-float-2 {
    bottom: 15%;
    left: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-gold);
}

/* Modern Section Styles */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-text);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-gold));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: var(--spacing-2xl);
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Grid Layouts */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* Limit to max 3 columns on desktop */
@media (min-width: 1024px) {
    .modern-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        max-width: 1200px;
    }
}

@media (min-width: 1200px) {
    .modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Why Choose ZS Uniforms Section with Background */
.why-choose-section {
    position: relative;
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
}

.why-choose-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/embroidery-machine-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(110, 60, 188, 0.4) 100%);
    z-index: 2;
}

.why-choose-section .container {
    position: relative;
    z-index: 3;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-choose-section .section-title {
    color: #FFFFFF !important;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-md);
    -webkit-text-fill-color: #FFFFFF !important;
    text-fill-color: #FFFFFF !important;
    background: none !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

.why-choose-section .section-subtitle {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.125rem;
    opacity: 1 !important;
}

.why-choose-section .modern-card-new {
    background: var(--white) !important;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm) !important;
    transition: all 0.3s ease;
}

.why-choose-section .modern-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
}

.why-choose-section .modern-card-new h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.why-choose-section .modern-card-new p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.why-choose-section .card-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(110, 60, 188, 0.1) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-choose-section .card-icon-circle .material-icons {
    font-size: 3rem !important;
    color: var(--primary-purple) !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

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

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

/* Modern Card Styles - Updated Design */
.modern-card {
    background: var(--white);
    border-radius: 24px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

/* Card Icon/Image Section */
.modern-card .card-icon {
    width: calc(100% + var(--spacing-lg) * 2);
    height: 180px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--purple-light) 50%, var(--primary-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: calc(-1 * var(--spacing-lg)) calc(-1 * var(--spacing-lg)) var(--spacing-lg);
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.modern-card .card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.modern-card .card-icon .material-icons {
    font-size: 4rem;
    color: var(--white);
    z-index: 2;
    position: relative;
}

/* Card Content */
.modern-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modern-card h3 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
}

.modern-card p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.modern-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 50%, var(--primary-purple) 100%);
}

/* Global override for all card icon circles */
.card-icon-circle, 
.modern-card-new .card-icon-circle,
.why-choose-section .card-icon-circle {
    width: 80px !important;
    height: 80px !important;
    background: rgba(110, 60, 188, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
}

.card-icon-circle .material-icons,
.modern-card-new .card-icon-circle .material-icons,
.why-choose-section .card-icon-circle .material-icons {
    font-size: 3rem !important;
    color: var(--primary-purple) !important;
}

/* Legacy card-icon for other components */
.card-icon:not(.modern-card .card-icon) {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--purple-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    font-size: 1.5rem;
}

/* Modern Card Features */
.modern-card .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.modern-card .card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #555;
}

.modern-card .card-features li .material-icons {
    font-size: 16px;
    color: var(--primary-purple);
}

/* Legacy card-features for other components */
.card-features:not(.modern-card .card-features) {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
}

/* Card Actions */
.modern-card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--primary-purple);
    background: rgba(110, 60, 188, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.feature-tag .material-icons {
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: var(--spacing-md);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 60, 188, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-modern);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(110, 60, 188, 0.1), rgba(242, 201, 76, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-purple);
    font-size: 2rem;
}

/* CSI Initiative Cards - Modern Layout */
.csi-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* Force 3 columns on larger screens like products-grid */
@media (min-width: 1024px) {
    .csi-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        max-width: 1200px;
    }
}

@media (min-width: 1200px) {
    .csi-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.csi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.csi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.csi-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.csi-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.csi-card:hover .csi-card-image img {
    transform: scale(1.05);
}

.csi-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9a8b, #fecfef, #fecfef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    padding: var(--spacing-md);
}

.csi-card-content {
    position: relative;
    padding: 30px;
}

.csi-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.csi-card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.csi-card .btn-outline-purple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.csi-card .btn-outline-purple:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 60, 188, 0.3);
}

.csi-card .btn-outline-purple .material-icons {
    font-size: 18px;
}




/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Navigation styles */
.nav-menu a {
    display: flex;
    align-items: center;
}

/* Footer with icons */
.footer-section h4 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.footer-section .material-icons {
    font-size: 20px;
    opacity: 0.8;
}

.footer-section p {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

/* Utility classes */
.material-icons.small { font-size: 16px; }
.material-icons.medium { font-size: 24px; }
.material-icons.large { font-size: 32px; }

.about {
    padding: 80px 0;
    background: var(--neutral-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text > p {
    margin-bottom: 2rem;
    color: #666;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    background: var(--primary-purple);
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 600;
}

.feature h4 {
    margin-bottom: 0.25rem;
}

.feature p {
    color: #666;
    font-size: 0.875rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat h3 {
    color: var(--primary-purple);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
}

.services {
    padding: 80px 0;
    background: var(--white);
}

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

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--neutral-gray);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
}

.contact {
    padding: 80px 0;
    background: var(--neutral-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-links a {
    color: var(--primary-purple);
    font-weight: 500;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-2px) scale(1.05);
}

.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.footer-section p {
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Modern Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: var(--spacing-xl);
    }
    
    .modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .csi-cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Compress CSI cards on mobile - Enhanced specificity */
    .section {
        padding: 40px 0 !important;
    }
    
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }
    
    .csi-header {
        margin-bottom: 30px !important;
    }
    
    .csi-cards-grid .csi-card {
        border-radius: 12px !important;
        overflow: hidden !important;
        margin-bottom: 20px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    .csi-cards-grid .csi-card-image {
        height: 160px !important;
        margin: 0 !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .csi-cards-grid .csi-card-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    .csi-cards-grid .csi-card-content {
        padding: 16px !important;
    }
    
    .csi-cards-grid .csi-card-title {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
        letter-spacing: 0 !important;
    }
    
    .csi-cards-grid .csi-card-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
    }
    
    .csi-cards-grid .csi-card .btn-outline-purple {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        letter-spacing: 0.3px !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Smaller navbar on mobile */
        font-size: 14px; /* Slightly smaller base font for mobile */
    }
    
    .navbar {
        height: 70px;
    }
    
    .nav-wrapper {
        padding: 12px var(--spacing-md);
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    /* Navigation Toggle - Force Show on Mobile */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        padding: 8px;
        border-radius: 6px;
        transition: all 0.3s ease;
        z-index: 1001;
    }
    
    .nav-toggle:hover {
        background: rgba(110, 60, 188, 0.1);
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-purple);
        margin: 3px 0;
        transition: 0.3s ease;
        border-radius: 2px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(110, 60, 188, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        list-style: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 16px 24px;
        font-size: 18px;
        font-weight: 600;
        color: var(--dark-text);
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .nav-menu a:hover {
        background: rgba(110, 60, 188, 0.1);
        color: var(--primary-purple);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(110, 60, 188, 0.15);
    }
    
    .nav-menu a.active {
        background: linear-gradient(135deg, var(--primary-purple), var(--purple-light));
        color: white;
        border-color: var(--primary-purple);
        box-shadow: 0 6px 20px rgba(110, 60, 188, 0.3);
    }
    
    /* Mobile menu overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Container Spacing - Only on Mobile */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Fix Mobile Content Spacing */
    .catalog-hero {
        padding: 30px 20px 20px !important;
    }
    
    .catalog-hero h1 {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
    }
    
    .catalog-hero p {
        font-size: 0.9rem !important;
        margin-bottom: 0 !important;
    }
    
    /* Fix Mobile Sticky Navigation */
    .catalog-navigation {
        top: 70px !important;
        padding: 15px 0 !important;
    }
    
    /* Fix Mobile Grid Layout */
    .shop-layout {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .shop-sidebar {
        width: 100% !important;
        order: 2 !important;
        margin-top: 20px !important;
    }
    
    .shop-main {
        width: 100% !important;
        order: 1 !important;
    }
    
    /* Mobile Product Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
        gap: 15px !important;
        padding: 0 !important;
    }
    
    /* Mobile Product Cards */
    [class*="card"], .product-card, .school-card {
        margin: 10px 0 !important;
        padding: 15px !important;
        min-height: auto !important;
    }
    
    [class*="card"] img {
        max-width: 100% !important;
        height: 120px !important;
        object-fit: contain !important;
        margin-bottom: 10px !important;
    }
    
    [class*="card"] h3, [class*="card"] .product-name {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    
    [class*="card"] .price, [class*="card"] .product-price {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        margin: 8px 0 !important;
    }
    
    /* Fix Mobile Button Layout */
    [class*="card"] .btn-group,
    [class*="card"] [style*="display: flex"] {
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
    }
    
    [class*="card"] .btn,
    [class*="card"] button {
        width: 100% !important;
        min-height: 44px !important;
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
    }
    
    /* Size Selector Mobile Fix */
    .size-selector {
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin: 10px 0 !important;
    }
    
    .size-option {
        min-width: 35px !important;
        height: 35px !important;
        font-size: 0.8rem !important;
    }
    
    /* Mobile Filters */
    .filter-section {
        margin-bottom: 20px !important;
    }
    
    .filter-section h4 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    .filter-options {
        gap: 8px !important;
    }
    
    .filter-option {
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
        min-height: 40px !important;
    }
    
    /* Modal Mobile Fixes */
    .product-modal .modal-content {
        margin: 20px !important;
        max-width: calc(100vw - 40px) !important;
        max-height: calc(100vh - 40px) !important;
        overflow-y: auto !important;
    }
    
    .modal-body {
        padding: 20px !important;
        flex-direction: column !important;
    }
    
    .modal-image {
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto 20px !important;
    }
    
    .modal-details {
        width: 100% !important;
    }
    
    /* Typography Mobile Fixes */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.25rem !important; }
    h4 { font-size: 1.1rem !important; }
    
    /* Search Bar Mobile */
    .search-controls {
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .search-input {
        width: 100% !important;
        margin-bottom: 10px !important;
    }
    
    /* Cart Badge Mobile */
    .cart-badge {
        right: 15px !important;
        font-size: 0.75rem !important;
    }
}
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        justify-content: center;
        text-align: center;
    }
    
    .hero-text {
        max-width: 90%;
        margin: 0 auto;
        padding: 0 30px;
    }
    
    /* Slider arrows removed - line navigation only */
    
    .slider-controls {
        bottom: 20px;
        gap: 6px;
    }
    
    .slider-line {
        width: 65px;
        height: 5px;
    }
    
    .modern-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .csi-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .csi-card-image {
        height: 180px;
    }
    
    .csi-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .csi-stat {
        border-bottom: 1px solid #eee;
        padding-bottom: var(--spacing-xs);
    }
    
    .csi-stat:last-child {
        border-bottom: none;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-lg {
        padding: var(--spacing-2xl) 0;
    }
    
    .nav-menu a {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
}

/* Ultra-small screens - keep buttons horizontal */
@media (max-width: 480px) {
    .hero-buttons {
        flex-wrap: nowrap;
        gap: var(--spacing-xs);
        justify-content: center;
    }
    
    .btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
        font-size: 0.9rem;
        padding: 12px 16px;
    }
    
    .modern-card {
        padding: var(--spacing-md);
    }
    
    .card-features {
        gap: var(--spacing-xs);
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

/* Our Values Section Icon Styling */
.values-section .value-icon {
    width: 80px;
    height: 80px;
    background: #F8F6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.values-section .value-icon .material-icons {
    font-size: 36px !important;
    background: linear-gradient(135deg, #6E3CBC 0%, #A87DC4 50%, #D8A7CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Schools We Supply Section Icon Styling */
.schools-section .stat-icon {
    width: 80px;
    height: 80px;
    background: #F8F6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.schools-section .stat-icon .material-icons {
    font-size: 36px !important;
    background: linear-gradient(135deg, #6E3CBC 0%, #A87DC4 50%, #D8A7CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* 1000 Uniforms Initiative Section Icon Styling */
.uniforms-initiative .metric-icon {
    width: 80px;
    height: 80px;
    background: #F8F6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.uniforms-initiative .metric-icon .material-icons {
    font-size: 36px !important;
    background: linear-gradient(135deg, #6E3CBC 0%, #A87DC4 50%, #D8A7CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Highlight items in 1000 Uniforms Initiative */
.uniforms-initiative .highlight-item .material-icons {
    background: linear-gradient(135deg, #6E3CBC 0%, #A87DC4 50%, #D8A7CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Media Recognition Section Icon Styling */
.media-section .media-icon {
    width: 80px;
    height: 80px;
    background: #F8F6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.media-section .media-icon .material-icons {
    font-size: 36px !important;
    background: linear-gradient(135deg, #6E3CBC 0%, #A87DC4 50%, #D8A7CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* CRITICAL: Force hero text to be white - highest priority */
section.hero h1.hero-title,
section.hero p.hero-subtitle,
.hero h1,
.hero p,
.hero-content h1,
.hero-content p,
.hero-content-overlay h1,
.hero-content-overlay p,
.hero .hero-title,
.hero .hero-subtitle {
    color: #FFFFFF !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-fill-color: #FFFFFF !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    background: none !important;
}

/* Stripe-style gradient background effect */
.stripe-gradient-card {
    position: relative;
    overflow: hidden;
}

.stripe-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        #6E3CBC 0%,
        #A87DC4 25%,
        #F2C94C 50%,
        #A87DC4 75%,
        #6E3CBC 100%
    );
    background-size: 400% 400%;
    animation: stripeGradient 15s ease infinite;
    opacity: 0.9;
}

.stripe-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        -45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%
    );
    background-size: 200% 200%;
    animation: stripeShimmer 8s ease-in-out infinite;
}

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

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

/* White button styles */
.btn-white {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}


/* Desktop Styles - Restore Proper Desktop Layout */
@media (min-width: 1024px) {
    /* Restore Desktop Container */
    .container {
        max-width: 1400px !important;
        margin: 0 auto !important;
        padding: 0 40px !important;
    }
    
    /* Desktop Body */
    body {
        padding-bottom: 0 !important;
        padding-top: 80px !important;
    }
    
    /* Desktop Hero Section */
    .hero {
        min-height: 100vh !important;
        padding: 100px 0 !important;
    }
    
    .hero-content {
        max-width: 700px !important;
        margin: 0 !important;
    }
    
    .hero h1 {
        font-size: 4rem !important;
        line-height: 1.1 !important;
        margin-bottom: 30px !important;
    }
    
    .hero-lead {
        font-size: 1.25rem !important;
        line-height: 1.7 !important;
        margin-bottom: 40px !important;
    }
    
    /* Desktop Section Spacing */
    section {
        padding: 100px 0 !important;
    }
    
    /* Desktop Typography */
    h1 {
        font-size: 3.5rem !important;
        line-height: 1.2 !important;
    }
    
    h2, .section-title {
        font-size: 2.75rem !important;
        margin-bottom: 20px !important;
    }
    
    h3 {
        font-size: 1.875rem !important;
    }
    
    p {
        font-size: 1.0625rem !important;
        line-height: 1.7 !important;
    }
    
    /* Desktop Grid Layouts */
    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px !important;
    }
    
    /* Desktop Navigation */
    .navbar {
        height: 80px !important;
    }
    
    .nav-wrapper {
        padding: 20px 40px !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        transform: none !important;
        
        flex-direction: row !important;
        padding: 0 !important;
        height: auto !important;
        gap: 48px !important;
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    /* Desktop Buttons */
    .btn {
        padding: 16px 36px !important;
        font-size: 1rem !important;
    }
    
    .btn-lg {
        padding: 20px 48px !important;
        font-size: 1.125rem !important;
    }
}

/* FINAL OVERRIDE - FORCE ICON STYLING */
html .modern-card-new .card-icon-circle,
html .why-choose-section .card-icon-circle,
html .card-icon-circle {
    width: 80px !important;
    height: 80px !important;
    background: rgba(110, 60, 188, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    box-shadow: none !important;
    background-image: none !important;
}

html .modern-card-new .card-icon-circle .material-icons,
html .why-choose-section .card-icon-circle .material-icons,
html .card-icon-circle .material-icons {
    font-size: 3rem !important;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-gold)) !important;
    
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Product Hero Section */
.product-hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(110, 60, 188, 0.03) 0%, rgba(242, 201, 76, 0.03) 100%);
}

.product-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-text {
    padding: 40px 0;
}

.product-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-purple);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(110, 60, 188, 0.2);
}

.btn-hero-cta:hover {
    background: #5a2fa8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 60, 188, 0.3);
}

/* Hero Video Modern (from initiatives page) */
.hero-video-modern {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
}


/* Media Protection - Disable right click and text selection on images and videos */
img, video {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Re-enable pointer events for video containers to allow interaction */
.video-container {
    pointer-events: auto;
}

.video-container video {
    pointer-events: none;
}

/* Disable context menu on media elements */
.no-context-menu {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Prevent drag and drop */
.prevent-drag {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Minimal Features Section */
.minimal-features-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(110, 60, 188, 0.05) 0%, rgba(242, 201, 76, 0.05) 100%);
}

.minimal-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.minimal-feature {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.minimal-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(110, 60, 188, 0.1);
}

.minimal-feature .material-icons {
    font-size: 48px;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.minimal-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-purple);
    margin: 0;
}

/* Responsive Design for Product Pages */
@media (max-width: 968px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-hero-title {
        font-size: 2.5rem;
    }
    
    .product-hero-image {
        order: -1;
    }
    
    .minimal-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-hero-title {
        font-size: 2rem;
    }
    
    .product-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .minimal-features-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-hero-cta {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}
