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

/* Typography Variables */
:root {
    /* Font Family */
    --font-primary: 'Gotham', sans-serif;
    
    /* Font Weights */
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    
    /* Font Sizes */
    --font-xs: 14px;
    --font-sm: 16px;
    --font-md: 18px;
    --font-lg: 20px;
    --font-xl: 24px;
    --font-2xl: 32px;
    --font-3xl: 48px;
    --font-4xl: 64px;
    
    /* Line Heights */
    --line-xs: 1.2;
    --line-sm: 1.4;
    --line-md: 1.6;
    --line-lg: 1.8;
    
    /* Responsive Font Sizes */
    --h1-size: clamp(36px, 6.24vw, 64px);
    --h2-size: clamp(28px, 5vw, 48px);
    --h3-size: clamp(20px, 3vw, 24px);
    --p-size: clamp(16px, 1.8vw, 18px);
    --small-size: clamp(14px, 1.4vw, 16px);
}

body {
    font-family: var(--font-primary);
    background-color: white;
    color: var(--lunar-night);
    line-height: var(--line-sm);
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    font-display: swap;
    font-weight: 400;
}

/* Only keep the colors we're using */
:root {
    --alchem-sunrise: #FCFF00;    
    --lunar-night: #071935;     
    --sterling-skies: #F6F6F6;    
}

/* Base responsive styles */
:root {
    --content-width: min(1440px, 95vw); /* Reduced from 90vw to 95vw */
    --content-padding: clamp(16px, 4vw, 40px); /* Reduced from 20px to 16px minimum */
    --card-gap: clamp(12px, 2vw, 26px); /* Reduced from 16px to 12px minimum */
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    top: 20px;
    z-index: 100;
    opacity: 1;
    padding: 0 40px;
}

/* Dark theme styles */
.navbar.dark-theme .logo img {
    filter: brightness(0); /* Makes the logo black */
}

.navbar.dark-theme .nav-links a {
    color: var(--lunar-night);
    text-shadow: none;
}

.navbar.dark-theme .nav-links a::after {
    background-color: var(--lunar-night);
}

.navbar.dark-theme .nav-links a:hover {
    color: var(--lunar-night);
    opacity: 0.8;
}

.navbar.dark-theme .container {
    background: rgba(255, 255, 255, 0.8);
}

.navbar.on-light-bg .logo path,
.navbar.on-light-bg .menu-icon {
    fill: var(--lunar-night);  /* Dark color for light backgrounds */
}

.navbar.on-light-bg .menu-text {
    color: var(--lunar-night);  /* Dark color for light backgrounds */
}

/* Default state remains light/white for dark backgrounds */
.navbar .logo path,
.navbar .menu-icon {
    fill: white;
}

.navbar .menu-text {
    color: white;
}

.navbar .container {
    position: relative;
    background: rgba(255, 255, 255, 0.08); /* More transparent */
    backdrop-filter: blur(25px) saturate(180%); /* Adjusted blur */
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    width: 100%;
    max-width: 1400px;
    height: 80px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

/* Adjust logo positioning in header */
.logo {
    display: flex;
    align-items: center;
    height: 32px;
    text-decoration: none;
    margin-left: 16px; /* Add left margin to move logo left */
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 48px;
    margin-left: auto;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateX(50px);
    opacity: 0;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: var(--font-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--alchem-sunrise);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--alchem-sunrise);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Staggered animation */
.nav-links a:nth-child(1) { transition-delay: 0.1s; }
.nav-links a:nth-child(2) { transition-delay: 0.2s; }
.nav-links a:nth-child(3) { transition-delay: 0.3s; }
.nav-links a:nth-child(4) { transition-delay: 0.4s; }

.nav-links.active a {
    transform: translateX(0);
    opacity: 1;
}

/* Menu Toggle */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 101;
    margin-left: 48px;
}

.menu-toggle:hover {
    color: var(--alchem-sunrise);
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    gap: 48px;
    margin-left: auto;
}

/* Increase mobile breakpoint to prevent overlap */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 16px;
    }

    .navbar .container {
        padding: 0 20px;
        height: 60px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        border: 1px solid rgba(7, 25, 53, 0.1);
        border-radius: 16px;
        padding: 16px;
        flex-direction: column;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .menu-toggle {
        display: block;
    }

    .nav-links a {
        color: var(--lunar-night) !important;
        text-shadow: none !important;
        font-weight: 500;
    }

    .nav-links a:hover {
        background: rgba(7, 25, 53, 0.05);
        color: var(--lunar-night) !important;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0 12px; /* Reduced from 16px */
    }

    .navbar .container {
        padding: 0 16px; /* Reduced from 20px */
        height: 60px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        background: rgba(255, 255, 255, 0.95) !important; /* Force white background */
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        border: 1px solid rgba(7, 25, 53, 0.1);
        border-radius: 16px;
        padding: 16px;
        flex-direction: column;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        color: var(--lunar-night) !important; /* Force dark text */
        text-shadow: none !important;
        font-weight: 500;
    }

    .nav-links a:hover {
        background: rgba(7, 25, 53, 0.05);
        color: var(--lunar-night) !important;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: fadeInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .menu-toggle {
        margin-left: 24px;
    }

    .hero {
        height: auto;
        min-height: 600px; /* Reduced from 800px */
        padding: 100px 16px 140px; /* Reduced padding */
    }

    .metrics-container {
        bottom: -75px; /* Adjusted from -85px */
    }

    .text-content {
        padding: 1.5rem 0; /* Reduced from 2rem */
    }

    .cost-comparison {
        margin: 32px auto; /* Reduced from 40px */
    }

    .preview-card {
        height: 420px; /* Reduced from 480px */
    }

    .preview-card h2 {
        font-size: 28px; /* Reduced from 32px */
        bottom: 24px; /* Reduced from 28px */
        left: 24px; /* Reduced from 30px */
        max-width: 85%; /* Reduced from 90% */
    }

    /* For mobile screens, adjust the positioning further */
    .logo {
        margin-left: 8px; /* Less margin on mobile */
    }
    
    .navbar .container {
        padding-left: 0; /* Reduce left padding to move logo closer to edge */
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 0 24px;
    }

    .navbar .container {
        padding: 0 24px;
        height: 70px;
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0;
    }
    to { 
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

/* Hero Section */
.hero {
    height: 1000px; /* Increased height to accommodate moved cards */
    position: relative;
    text-align: center;
    background: url('../Assets/Images/herobg.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible; /* Allow accents to overlap */
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 350px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.9) 60%,
        white 75%,
        white 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Update overlay to be less blue */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(-60px); /* Move content up to center it */
}

/* Update responsive typography */
.hero h1 {
    font-size: clamp(31.2px, 6.24vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: clamp(18.2px, 3.12vw, 25px);
}

.hero h1 .white-text {
    color: white;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.2);
    filter: brightness(1.2);
    display: block;
    margin-bottom: clamp(4px, 1vw, 8px);
    font-size: 120%; /* Make CLEAN METALS 20% bigger */
    font-weight: 700; /* Keep bold */
}

.hero h1 .highlight {
    color: var(--alchem-sunrise);
    display: block;
    text-shadow: 
        0 0 30px rgba(252, 255, 0, 0.3),
        0 0 60px rgba(252, 255, 0, 0.2);
    font-size: 80%; /* Make THE FUTURE OF METAL SUPPLY 20% smaller */
    font-weight: 500; /* Make it lighter */
}

.hero p {
    font-size: clamp(14px, 1.95vw, 18.7px); /* Increased from clamp(10.8px, 1.5vw, 14.4px) */
    line-height: 1.4;
    color: white;
    opacity: 0.95;
    max-width: min(780px, 90%); /* Increased from 600px */
    margin: 0 auto clamp(25px, 3.9vw, 37.4px); /* Increased from clamp(19.2px, 3vw, 28.8px) */
}

/* Primary Button */
.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 1.5vw, 16px) clamp(24px, 3vw, 32px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 255, 0, 0.3);
    border-radius: 100px;
    color: var(--alchem-sunrise);
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 4;
}

/* Shine effect */
.button-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: 0.5s;
}

/* Hover state */
.button-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--alchem-sunrise);
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(252, 255, 0, 0.2),
        inset 0 0 10px rgba(252, 255, 0, 0.1);
}

.button-primary:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Active state */
.button-primary:active {
    transform: translateY(1px);
    transition: transform 0.1s;
}

/* Ensure text stays above shine effect */
.button-primary span {
    position: relative;
    z-index: 1;
}

/* Stats Cards Container */
.metrics-container {
    position: absolute;
    bottom: -150px;
    left: 0;
    right: 0;
    z-index: 3;
    width: 100%;
}

/* Add white background section */
.metrics-section {
    background: white;
    position: relative;
    padding: 0 20px 120px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 289.97px);
    gap: 32px;
    max-width: 1440px;
    margin: 0 auto;
    justify-content: center;
    padding: 0 20px;
}

/* Metric Value */
.metric-value {
    font-size: 64px;
    font-weight: bold;
    color: #3265D5;
    margin-bottom: 24px;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: contents;
    display: inline-block;
}

/* Add this for smoother number transitions */
.metric-value.animating {
    transition: none;
}

/* Text container */
.text-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Text spacing and alignment adjustments */
.content-section h2 {
    position: static;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--lunar-night);
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    text-align: left; /* Explicitly set left alignment */
}

/* Description text - left aligned with responsive margins */
.description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0 auto 60px 0; /* Left margin 0, right margin auto */
    max-width: 1000px;
    text-align: left;
    padding-right: clamp(20px, 4vw, 40px);
}

/* Cost statement section - centered with responsive sizing */
.cost-statement {
    width: 100%;
    position: relative;
    text-align: center;
    padding: 60px 0;
    margin: 0;
    background: white;
}

.cost-statement .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.cost-statement .price {
    font-size: clamp(28px, 5vw, 48px);
    color: #3265D5;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cost-statement .context {
    font-size: clamp(16px, 2vw, 20px);
    color: #666;
    line-height: 1.4;
}

/* Remove old cost comparison styles */
.cost-comparison {
    text-align: center;
    margin: 40px 0;
}

/* Adjust spacing around cost statement */
.text-container + .cost-statement {
    margin-top: -20px;
}

.cost-statement + .text-container {
    margin-top: 40px;
}

/* Individual Stat Card */
.metric-card {
    width: 289.97px;
    height: 324.77px;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-radius: 21px;
    padding: 48px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(11, 18, 35, 0.21);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Text */
.metric-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #3265D5;
    margin-bottom: 16px;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.metric-card p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(11, 18, 35, 0.72);
}

/* Hover Effects */
.metric-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.36);
    box-shadow: 
        0 12px 32px rgba(11, 18, 35, 0.24),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Active state */
.metric-card:active {
    transform: translateY(-2px);
    transition: transform 0.1s;
}

/* Mission Statement Section */
.mission-statement {
    background: white;
    padding: 120px 20px 120px; /* Reset to original padding */
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-statement .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-statement p {
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--lunar-night);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.3s;
}

.mission-statement p .highlight-blue {
    color: #3265D5; /* Adjusted blue color to match the screenshot exactly */
}

/* Media queries for mission statement */
@media (max-width: 768px) {
    .mission-statement {
        padding: 40px 0;
    }
    
    .mission-statement p {
        font-size: 18px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .mission-statement {
        padding: 240px 20px 80px;
    }

    .mission-statement p {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .mission-statement {
        padding: 280px 20px 100px;
    }

    .mission-statement p {
        font-size: 28px;
    }
}

/* Mobile Carousel */
@media (max-width: 1280px) {
    .metrics-grid {
        display: flex;
        overflow-x: hidden;
        padding: 24px;
        gap: calc(12px + 1vw);
        width: 100%;
        margin: 0 auto;
    }

    .metric-card {
        flex: 0 0 calc(260px + 2vw);
        height: calc(280px + 2vw);
        padding: calc(32px + 1vw) calc(36px + 1vw);
        transition: all 0.3s ease;
    }

    .metric-value {
        font-size: 56px;
    }

    .metric-card h3 {
        font-size: 18px;
        white-space: nowrap;
    }

    .metric-card p {
        font-size: calc(14px + 0.2vw);
        line-height: 1.4;
    }
}

@media (max-width: 1024px) {
    .metric-card {
        flex: 0 0 calc(220px + 1.5vw);
        height: calc(240px + 1.5vw);
        padding: calc(28px + 0.8vw) calc(20px + 0.8vw);
    }

    .metric-value {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 700px;
    }
    
    .metrics-container {
        bottom: -85px;
    }

    .mission-statement {
        padding: 240px 20px 80px;
    }

    .mission-statement p {
        font-size: 24px;
    }

    .metric-card {
        flex: 0 0 calc(180px + 1vw);
        height: calc(200px + 1vw);
        padding: calc(24px + 0.5vw) calc(16px + 0.5vw);
    }

    .metric-value {
        font-size: 40px;
    }

    .metric-card h3 {
        font-size: 16px;
        white-space: nowrap;
    }

    .metric-card p {
        font-size: calc(12px + 0.15vw);
    }
}

/* Remove all carousel controls styles */
.carousel-controls,
.carousel-arrow,
.carousel-arrow.prev-arrow,
.carousel-arrow.next-arrow {
    display: none;
}

/* Technology Preview Section */
.technology-preview {
    background: var(--lunar-night);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 744px; /* Matches the height from specs */
}

.preview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Increased padding */
    position: relative;
    z-index: 2;
}

.clock-icon {
    width: 81.73px; /* Exact size from specs */
    height: 81.73px;
    margin-bottom: 305px; /* Spacing from specs */
}

.clock-icon img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.preview-content h2 {
    font-size: 72px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 684px; /* From specs */
}

.preview-content h2 span {
    display: block;
}

.preview-content h2 em {
    color: var(--alchem-sunrise);
    font-style: normal;
}

.preview-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%; /* Increased width */
    height: 100%;
    z-index: 1;
}

.preview-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        var(--lunar-night) 0%,
        rgba(7, 25, 53, 0) 50%,
        var(--lunar-night) 100%
    );
    opacity: 0.8;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.8) brightness(0.9);
}

/* Move glass accents to hero section and ensure proper positioning */
.hero {
    position: relative;
    overflow: visible;
}

/* Independent glass accents positioning */
.glass-accents {
    display: none;
}

.glass-accents .accent-1,
.glass-accents .accent-2,
.preview-card .glass-accents,
.preview-card .glass-accents .accent-1,
.preview-card .glass-accents .accent-2,
.glass-accent {
    display: none;
}

/* Base glass accents */
.glass-accents img {
    display: none;
}

/* Text spacing adjustments */
.content-section h2 {
    position: static;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 48px; /* Increased spacing */
    letter-spacing: -0.02em;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0px; /* Increased spacing */
    max-width: 1000px;
}

.cost-comparison {
    text-align: center;
    margin-top: 60px; /* Increased spacing */
    margin-bottom: 60px; /* Added bottom margin */
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .text-container {
        margin-top: 360px;
    }
    
    .glass-accents {
        right: 80px; /* Slightly reduced margin but still maintained */
    }
}

@media (max-width: 1024px) {
    .text-container {
        margin-top: 320px;
    }
    
    .glass-accents {
        right: 60px; /* Further reduced but still visible */
    }
}

@media (max-width: 768px) {
    .text-container {
        margin-top: 280px;
    }
}

/* Adjust content section to accommodate accents */
.content-section {
    position: relative;
    max-width: 1400px;
    margin: -240px auto 0;
    padding: 0 40px;
    overflow: visible;
}

/* Remove extra bottom margin since accents are now in content */
.recycling-preview {
    position: relative;
    padding: 0;
    background: white;
    margin-bottom: 80px; /* Reduced from 120px */
}

/* Preview card section - mobile first */
.preview-card {
    position: relative;
    width: 100%;
    background: var(--deep-space);
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-shadow: none;
    z-index: 2;
    height: 120px; /* Further reduced height */
    display: flex;
    align-items: flex-end; /* Change from center to flex-end to align content to bottom */
    justify-content: flex-start;
}

.preview-card .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: flex-end; /* Align container content to bottom */
    padding-bottom: 15px; /* Add padding at the bottom for spacing */
}

.preview-card .card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.preview-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.preview-card h2 {
    position: relative;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    margin-left: 5px; /* Add left margin to shift right and align with text below */
    line-height: 1.1;
    text-align: left;
    color: var(--white);
    max-width: 100%;
}

.preview-card h2 .highlight {
    color: #F5E850; /* Yellow color from screenshot */
    font-weight: 700;
    display: inline;
}

/* Meteor animation container */
.meteor-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

/* Media queries for responsive design */
@media (min-width: 768px) {
    .preview-card {
        height: 150px; /* Further reduced height */
    }
    
    .preview-card h2 {
        font-size: 60px;
        margin-left: 5px; /* Maintain alignment with text below */
    }
    
    .preview-card .container {
        padding: 0 20px; /* Keep consistent with text-content container */
        padding-bottom: 20px; /* Slightly more bottom padding for larger screens */
    }
}

@media (min-width: 1024px) {
    .preview-card {
        height: 180px; /* Further reduced height */
    }
    
    .preview-card h2 {
        font-size: 80px;
        margin-left: 5px; /* Maintain alignment with text below */
    }
    
    .preview-card .container {
        padding: 0 20px; /* Keep consistent with text-content container */
        padding-bottom: 25px; /* More bottom padding for larger screens */
    }
}

@media (min-width: 1440px) {
    .preview-card {
        height: 200px; /* Further reduced height */
    }
    
    .preview-card h2 {
        font-size: 100px;
        margin-left: 5px; /* Maintain alignment with text below */
    }
    
    .preview-card .container {
        padding: 0 20px; /* Keep consistent with text-content container */
        padding-bottom: 30px; /* More bottom padding for larger screens */
    }
}

.preview-card .neon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue-glow);
}

.preview-card .power-icon {
    position: absolute;
    top: 10px; /* Reduced position */
    right: 10px; /* Reduced position */
    width: 20px; /* Reduced size */
    height: 20px; /* Reduced size */
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.preview-card .power-icon img {
    width: 10px; /* Reduced size */
    height: 10px; /* Reduced size */
}

/* Footer Styles */
.footer {
    background-color: var(--lunar-night);
    color: white;
    padding: 60px 0;
}

.footer-container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.footer-brand {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: var(--font-sm);
    line-height: var(--line-md);
    opacity: 0.8;
    max-width: 90%;
    margin-bottom: 24px;
}

.footer-links {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h3 {
    font-size: var(--font-md);
    font-weight: var(--weight-medium);
    margin-bottom: 20px;
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: var(--font-sm);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--alchem-sunrise);
}

/* Remove all social media related styles */
.social-links,
.social-icon,
.social-icon:hover {
    display: none !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-description {
        text-align: center;
        max-width: 90%;
        margin: 16px auto;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
    }
}

/* Main content section */
.content-section {
    position: relative;
    max-width: 1400px;
    margin: -240px auto 0;
    padding: 0 40px;
    overflow: visible;
}

/* Text content section */
.text-content {
    position: relative;
    padding: 0; /* Remove padding to allow for proper centering */
    z-index: 2;
    text-align: left;
    margin-top: -10px; /* Negative margin to reduce space above */
    display: flex;
    align-items: center; /* Center content vertically */
    min-height: 100px; /* Set minimum height for the section */
}

.text-content .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px; /* Add vertical padding to the container instead */
    text-align: left;
    display: flex;
    align-items: center; /* Center content vertically */
    padding-left: 25px; /* Match the preview card h2 margin-left + container padding */
}

.text-content .description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: var(--deep-space);
    text-align: left;
    max-width: 100%;
}

.cost-comparison {
    text-align: center;
    margin: 24px auto; /* Reduced from 40px */
}

.cost-comparison .price {
    color: #3265D5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cost-comparison .price span {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px; /* Reduced from 20px */
    color: #3265D5;
}

.cost-comparison .when {
    font-size: 16px;
    color: #666666;
    line-height: 1.2;
    margin-bottom: 24px; /* Added consistent spacing */
}

/* Last description paragraph spacing */
.text-content .description:last-child {
    margin-bottom: 0;
}

.cost-comparison {
    text-align: center;
    margin: 40px auto;
}

.cost-comparison .price {
    color: #3265D5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cost-comparison .price span {
    font-size: 52px; /* Reduced from 64px */
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #3265D5;
}

.cost-comparison .when {
    font-size: 16px; /* Reduced from 18px */
    color: #666666;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .text-content .white-card {
        padding: 24px;
    }

    .text-content h2 {
        font-size: 32px;
    }

    .cost-comparison .price span {
        font-size: 36px; /* Reduced from 42px */
    }
    
    .cost-comparison .when {
        font-size: 14px; /* Reduced from 16px */
    }
}

.content-columns {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 999;
    width: 100%;
}

.text-column {
    flex: 0 1 60%;
    position: relative;
    z-index: 999;
}

.text-column h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    position: relative;
    z-index: 999;
}

.text-column ul {
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 999;
    margin: 0 0 32px 0;
}

.text-column ul li {
    position: relative;
    margin-bottom: 16px;
    line-height: 1.5;
    color: #e6e6e6;
    z-index: 999;
    font-size: 14px;
    padding-left: 16px;
}

.text-column ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e6e6e6;
}

.image-column {
    flex: 0 1 40%;
    position: relative;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    max-width: 400px;
}

.image-column img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 999;
    background: white;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
    .text-content .container {
        padding: 0 30px; /* Reduced from 60px to 30px (50% reduction) */
    }
    
    .content-columns {
        gap: 20px; /* Reduced from 40px to 20px (50% reduction) */
    }
    
    .image-column {
        padding: 0 15px;
    }
    
    .image-column img {
        max-width: 280px;
    }
}

@media (max-width: 992px) {
    .image-column img {
        max-width: 260px;
    }
}

@media (max-width: 768px) {
    .content-columns {
        flex-direction: column;
    }
    
    .text-column,
    .image-column {
        flex: 0 1 100%;
    }
    
    .image-column {
        padding: 10px;
        margin-top: 20px;
    }
    
    .image-column img {
        max-width: 240px;
    }

    .text-content .container {
        padding: 0 16px; /* Reduced from 20px */
    }
    
    .text-content h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .image-column img {
        max-width: 220px;
    }
}

/* Lower the z-index of potentially conflicting elements */
.preview-card,
.partnerships-card,
.glass-accents {
    z-index: 1;
    position: relative;
}

@media (max-width: 1200px) {
    .text-content .container {
        padding: 0 60px;
    }
    
    .text-content h2 {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .content-columns {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .content-columns {
        flex-direction: column;
    }
    
    .text-column,
    .image-column {
        flex: 0 1 100%;
    }

    .text-content .container {
        padding: 0 16px; /* Reduced from 20px */
    }
    
    .text-content h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

.text-content .description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(7, 25, 53, 0.8);
    margin-bottom: 0px;
    max-width: 1000px;
    text-align: left; /* Changed from center to left */
    margin-left: 0; /* Changed from auto to 0 */
    margin-right: auto;
}

.text-content .description strong {
    font-weight: 600;
    color: #071935;
}

.text-content .description .highlight {
    color: #000000; /* Consistent yellow for highlighted text */
}

/* Cost statement section */
.cost-statement {
    text-align: center;
    padding: 0;
    margin: 0 auto 75px;
}

.cost-statement .container {
    max-width: 1045px;
    margin: 0 auto;
}

/* Remove display: none from cost-comparison */
.cost-comparison {
    text-align: left; /* Changed from center to left */
    margin: 40px 0;
}

/* Glass accents */
.glass-accents {
    display: none;
}

.glass-accents .accent-1,
.glass-accents .accent-2 {
    display: none;
}

/* Remove all other content-section styles */
.content-section, .recycling-preview {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .text-content .container {
        padding: 0 80px;
    }
    
    .glass-accents {
        right: 80px; /* Slightly reduced margin but still maintained */
    }
}

@media (max-width: 1024px) {
    .text-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .text-content .container {
        padding: 0 40px;
    }
    
    .glass-accents {
        right: 60px; /* Further reduced but still visible */
    }
}

@media (max-width: 768px) {
    .text-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .text-content .container {
        padding: 0 16px; /* Reduced from 20px */
    }
}

/* Preview Section */
.preview-section {
    padding: calc(var(--section-padding) * 0.9) 0; /* Reduce padding by 10% */
    position: relative;
    overflow: hidden;
}

.preview-card {
    height: 90%; /* Reduce height by 10% */
    min-height: calc(500px * 0.9); /* Reduce min-height by 10% if it has a fixed value */
}

.preview-card .image-container {
    position: absolute;
    top: -100px;
    left: 0;
    right: -200px;
    bottom: -100px;
    width: calc(100% - 40px);
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-left: 40px;
    border-radius: 20px 0 0 20px; /* Top-left and bottom-left corners rounded, right corners square */
    overflow: hidden; /* Ensure content doesn't overflow the rounded corners */
}

.preview-card .image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--preview-image);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.preview-card .image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        var(--lunar-night) 0%,
        rgba(7, 25, 53, 0) 50%
    );
    opacity: 0.8;
}

.preview-card .power-icon {
    position: absolute;
    top: 24px; /* Fixed margin for mobile */
    left: 24px; /* Fixed margin for mobile */
    width: 48px;
    height: 48px;
    z-index: 2;
}

.preview-card .power-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preview-card h2 {
    position: absolute;
    bottom: 24px; /* Fixed margin for mobile */
    left: 24px; /* Fixed margin for mobile */
    font-size: clamp(32px, 6vw, 42px);
    line-height: 1.1;
    color: white;
    z-index: 2;
    max-width: calc(100% - 48px);
}

@media (min-width: 769px) {
    .preview-card h2,
    .preview-card .power-icon {
        left: 52.4px;
    }

    .preview-card h2 {
        bottom: 40px;
        font-size: clamp(42px, 7vw, 82px);
    }

    .preview-card .power-icon {
        top: 40px;
        width: 64px;
        height: 64px;
    }
}

.preview-card .neon {
    color: var(--alchem-sunrise);
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .preview-card {
        height: 680px;
    }
    
    .preview-card .image-container::before {
        transform: translateX(-50%) scale(1.15);
    }
    
    .preview-card .power-icon {
        width: 58px;
        height: 58px;
        top: 36px;
        left: 52.4px; /* Keep aligned with text */
    }
}

@media (max-width: 1024px) {
    .preview-card {
        height: 580px;
    }
    
    .preview-card .image-container::before {
        transform: translateX(-50%) scale(1.2);
    }
    
    .preview-card .power-icon {
        width: 52px;
        height: 52px;
        top: 32px;
        left: 52.4px; /* Keep aligned with text */
    }
}

@media (max-width: 768px) {
    .preview-card {
        height: 480px;
    }
    
    .preview-card .power-icon {
        width: 46px;
        height: 46px;
        top: 28px;
        left: 52.4px; /* Keep aligned with text */
    }
}

@media (max-width: 480px) {
    .preview-card {
        height: 400px;
    }
    
    .preview-card .power-icon {
        width: 40px;
        height: 40px;
        top: 24px;
        left: 52.4px; /* Keep aligned with text */
    }
}

.glass-accent {
    position: absolute;
    width: 195px;
    height: 415px;
    background: url("data:image/svg+xml,%3Csvg width='195' height='415' viewBox='0 0 195 415' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_bd_3013_999)'%3E%3Crect x='12.3965' y='6.60901' width='169.963' height='390.056' rx='84.9814' fill='white' fill-opacity='0.21' shape-rendering='crispEdges'/%3E%3Crect x='12.8965' y='7.10901' width='168.963' height='389.056' rx='84.4814' stroke='url(%23paint0_linear_3013_999)' shape-rendering='crispEdges'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_bd_3013_999' x='-11.6035' y='-17.391' width='217.963' height='438.056' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeGaussianBlur in='BackgroundImageFix' stdDeviation='12'/%3E%3CfeComposite in2='SourceAlpha' operator='in' result='effect1_backgroundBlur_3013_999'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='6'/%3E%3CfeGaussianBlur stdDeviation='6'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.0431373 0 0 0 0 0 0 0 0 0.0705882 0 0 0 0 0 0.137255 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='effect1_backgroundBlur_3013_999' result='effect2_dropShadow_3013_999'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_3013_999' result='shape'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_3013_999' x1='97.3779' y1='6.60901' x2='97.3779' y2='396.665' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%233265D5'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    pointer-events: none;
}

/* Preview card glass accents */
.preview-card .glass-accents {
    display: none;
}

.preview-card .glass-accents .accent-1,
.preview-card .glass-accents .accent-2 {
    display: none;
}

/* Remove glass accent */
.glass-accent {
    display: none;
}

/* Remove all glass accent related code */
.glass-accents,
.preview-card .glass-accents,
.glass-accent {
    display: none;
}

@keyframes metalFlow {
    0% {
        filter: brightness(0.8) saturate(0.8) contrast(1.02);
        transform: scale(1.02) translateY(-5px);
    }
    25% {
        filter: brightness(0.82) saturate(0.82) contrast(1.01);
        transform: scale(1.025) translateY(0px);
    }
    50% {
        filter: brightness(0.83) saturate(0.83) contrast(1);
        transform: scale(1.03) translateY(5px);
    }
    75% {
        filter: brightness(0.82) saturate(0.82) contrast(1.01);
        transform: scale(1.025) translateY(0px);
    }
    100% {
        filter: brightness(0.8) saturate(0.8) contrast(1.02);
        transform: scale(1.02) translateY(-5px);
    }
}

/* Add subtle parallax effect on hover */
.preview-card:hover .card-image {
    animation-duration: 2s; /* Faster on hover */
}

/* Meteor animation */
@keyframes meteor {
    0% {
        transform: rotate(35deg) translateX(var(--start-offset));
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: rotate(35deg) translateX(calc(100vw + 100px));
        opacity: 0;
    }
}

@keyframes meteorAggressive {
    0% {
        transform: rotate(35deg) translateX(var(--start-offset)) scale(1.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: rotate(35deg) translateX(calc(100vw + 100px)) scale(1.5);
        opacity: 0;
    }
}

.meteor-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.meteor {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    left: -100px; /* Changed from right to left */
    animation: meteor var(--duration) cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
    animation-delay: var(--delay);
    transform-origin: left; /* Changed from right to left */
    --angle: 35deg; /* Changed from -35deg to 35deg */
    --start-offset: 0px;
    will-change: transform, opacity;
    opacity: 0;
}

.meteor.aggressive {
    animation: meteorAggressive 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    width: 3px;
    height: 3px;
    background: rgba(252, 255, 0, 0.8);
    will-change: transform, opacity;
    left: -100px; /* Changed from right to left */
}

.meteor.aggressive::before {
    width: 100px;
    background: linear-gradient(to right, rgba(252, 255, 0, 0.8), transparent); /* Changed gradient direction */
}

.meteor::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0; /* Changed from right to left */
    height: 1px;
    width: 50px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7), transparent); /* Changed gradient direction */
}

/* Partnerships Card - Mobile First Approach */
.partnerships-card {
    position: relative;
    width: calc(100% - 40px); /* Reduced width to create margins */
    max-width: 1400px; /* Maximum width for very large screens */
    min-height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    margin: 0 auto; /* Center the card with auto margins */
    color: white;
    border-radius: 12px; /* Rounded corners */
}

.partnerships-card .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4);
    border-radius: 12px; /* Match the card's border radius */
}

.partnerships-card .card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 90%;
}

.partnerships-card h2 {
    font-size: calc(var(--h2-size) * 0.4);
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
}

.partnerships-card h2 .highlight {
    color: var(--alchem-sunrise);
}

/* No custom button styles to ensure it matches the hero button exactly */

/* Tablet styles */
@media (min-width: 768px) {
    .partnerships-card {
        width: calc(100% - 60px); /* Slightly larger margins on tablet */
        min-height: 400px;
        padding: 60px 40px;
    }
    
    .partnerships-card .card-content {
        max-width: 80%;
    }
    
    .partnerships-card h2 {
        font-size: calc(var(--h2-size) * 0.5);
        margin-bottom: 30px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .partnerships-card {
        width: calc(100% - 80px); /* Larger margins on desktop */
        min-height: 500px;
        padding: 80px 60px;
    }
    
    .partnerships-card .card-content {
        max-width: 70%;
    }
    
    .partnerships-card h2 {
        font-size: calc(var(--h2-size) * 0.6);
        margin-bottom: 40px;
    }
}

/* Large desktop styles */
@media (min-width: 1440px) {
    .partnerships-card {
        width: calc(100% - 100px); /* Even larger margins on large screens */
        min-height: 600px;
    }
    
    .partnerships-card .card-content {
        max-width: 60%;
    }
}

/* Update dark theme styles */
.navbar.dark-theme .menu-toggle {
    background: transparent;
    color: var(--lunar-night);
}

.navbar.dark-theme .nav-links a {
    color: var(--lunar-night);
    text-shadow: none;
}

.navbar.dark-theme .nav-links a::after {
    background-color: var(--lunar-night);
}

.navbar.dark-theme .nav-links a:hover {
    color: var(--lunar-night);
    opacity: 0.8;
}

/* Mobile menu styles */
.navbar.dark-theme .menu-toggle {
    background: transparent;
    color: var(--lunar-night);
}

@media (max-width: 768px) {
    .navbar.dark-theme.on-light-bg .menu-toggle {
        color: var(--lunar-night);
    }
    
    .navbar.dark-theme.on-light-bg .logo img {
        filter: brightness(0);
    }

    .navbar.dark-theme .nav-links {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(7, 25, 53, 0.1);
    }

    .navbar.dark-theme .nav-links a {
        color: var(--lunar-night);
        text-shadow: none;
        opacity: 0.9;
    }

    .navbar.dark-theme .nav-links a:hover {
        color: var(--lunar-night);
        opacity: 1;
    }
}

/* Star animation styles */
.partnerships-card {
    position: relative;
    overflow: hidden;
}

.partnerships-card .star-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; /* Between background image and content */
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
    opacity: 0;
}

@keyframes twinkle {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Update z-index of existing elements */
.partnerships-card .background-image {
    z-index: 0; /* Behind stars */
}

.partnerships-card .card-content {
    z-index: 2; /* In front of stars */
}

/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 600px;
    background-image: url('../Assets/Images/secondaryhbg.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

/* Remove the hero-overlay div from about.html if it exists */
.about-hero .hero-overlay {
    display: none; /* Hide any existing overlay */
}

/* Make grid lines slightly more visible against brighter background */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Grid container styles */
.grid-cells {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, 50px);
    grid-template-rows: repeat(auto-fill, 50px);
    z-index: 1;
}

/* Enhanced grid cell effects */
.grid-cell {
    width: 100%;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.grid-cell.active {
    background-color: rgba(252, 255, 0, 0.15);
    animation: cellFadeOut 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cellFadeOut {
    0% {
        background-color: rgba(252, 255, 0, 0.15);
        opacity: 0;
    }
    20% {
        background-color: rgba(252, 255, 0, 0.15);
        opacity: 1;
    }
    100% {
        background-color: rgba(252, 255, 0, 0);
        opacity: 0;
    }
}

/* Ensure proper layering */
.about-hero .hero-overlay {
    z-index: 2;
}

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

.about-hero h1 {
    font-size: 72px;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    font-family: 'Gotham', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.about-hero h1 .highlight {
    color: var(--alchem-sunrise);
    font-family: inherit;
    font-weight: inherit;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
}

/* Keep responsive behavior */
@media (max-width: 768px) {
    .about-hero .hero-content {
        transform: translateY(35px); /* Adjusted for mobile */
    }
}

/* Vision Mission Section */
.vision-mission {
    padding: 120px 0;
    background: white;
}

.vision-mission .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.vision-block, .mission-block {
    max-width: 480px;
}

.vision-mission h2 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--lunar-night);
    margin-bottom: 24px;
    font-weight: 500;
}

.vision-mission h2 .highlight {
    color: #3265D5;
}

.vision-mission p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(7, 25, 53, 0.8);
}

/* Add mobile styles */
@media (max-width: 768px) {
    .vision-mission {
        padding: 60px 0;
    }

    .vision-mission .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-block, .mission-block {
        max-width: 100%;
    }

    .vision-mission h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .vision-mission p {
        font-size: 16px;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .about-hero h1 {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 500px;
        min-height: 500px;
    }

    .about-hero h1 {
        font-size: 48px;
    }

    .about-hero p {
        font-size: 18px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero p {
        font-size: 16px;
    }
}

.core-values {
    background-color: var(--lunar-night);
    padding: 70px 0;
}

.core-values .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.core-values h2 {
    font-size: 42px;
    line-height: 1.2;
    color: white;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 500;
}

.core-values h2 .highlight {
    color: var(--alchem-sunrise);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 140px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 5px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

/* Enhanced icon hover effect */
.value-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    color: #FCFF00;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: translateY(-5px);
    filter: drop-shadow(0 0 12px rgba(252, 255, 0, 0.4));
}

/* Animated line effect */
.value-item::after {
    content: '';
    position: absolute;
    left: 96px;
    top: 0;
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Line hover animation */
.value-item:hover::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(252, 255, 0, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    box-shadow: 0 0 8px rgba(252, 255, 0, 0.3);
}

/* Smooth content transition */
.value-content {
    margin-left: 24px;
    transition: transform 0.3s ease;
}

.value-item:hover .value-content {
    transform: translateY(-5px);
}

/* Keep last item (Integrity) consistent */
.value-item:last-child:hover {
    transform: translateY(-5px);
}

/* Position items in specific grid areas */
.value-item:nth-child(1) { grid-area: 1 / 1; }
.value-item:nth-child(2) { grid-area: 1 / 2; }
.value-item:nth-child(3) { grid-area: 2 / 1; }
.value-item:nth-child(4) { grid-area: 2 / 2; }

/* Center the last item (Integrity) */
.value-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 300px;
    margin-top: 10px;
    transform: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .core-values {
        padding: 60px 0;
    }
    
    .core-values h2 {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .core-values {
        padding: 50px 0;
    }
    
    .values-grid {
        gap: 32px;
        padding-bottom: 0;
    }
}

.value-content h3 {
    color: var(--alchem-sunrise);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.value-content p {
    color: white;
    font-size: 14px;
    line-height: 1.4;
    max-width: 280px;
}

.value-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    color: #FCFF00;
    margin-top: 2px;
}

/* Team Section */
.team-section {
    padding: 120px 0 80px;
    background-color: white;
}

.team-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-section h2 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--lunar-night);
    margin-bottom: 30px; /* Reduced from default spacing */
    text-align: left; /* Ensure left alignment */
}

/* Add spacing between sections */
.team-section h2:not(:first-child) {
    margin-top: 60px; /* Add space above the DIRECTORS title */
    margin-bottom: 30px; /* Keep consistent with first title */
}

.team-section h2 .highlight {
    color: #3265D5;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-member {
    display: flex;
    gap: 20px; /* Further reduced from 34px */
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.team-member.appear {
    opacity: 1;
    transform: translateY(0);
}

.member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 24px;
    color: var(--lunar-night);
    margin-bottom: 16px;
    font-weight: 500;
}

.member-info .title {
    color: #3265D5;
}

.member-info p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(7, 25, 53, 0.8);
    max-width: 800px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-section {
        padding: 80px 0 60px;
    }

    .team-member {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .member-image {
        width: 120px;
        height: 120px;
    }

    .member-info h3 {
        font-size: 20px;
    }

    .team-section h2 {
        font-size: 42px;
        margin-bottom: 25px; /* Slightly reduced for mobile */
    }

    .team-section h2:not(:first-child) {
        margin-top: 50px; /* Slightly reduced for mobile */
        margin-bottom: 25px;
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
}

.fade-in.appear {
    animation: fadeInUp 0.8s ease forwards;
}

/* Grid background animation */
.about-hero {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 600px;
    background-image: url('../Assets/Images/secondaryhbg.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

/* Update grid overlay to be more visible */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Enhanced grid cell effects */
.grid-cell {
    width: 100%;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.grid-cell:hover {
    background-color: rgba(252, 255, 0, 0.25);
    animation: none;
}

/* Natural dispersion effect */
.grid-cell.active {
    background-color: rgba(252, 255, 0, 0.15);
    animation: cellFadeOut 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cellFadeOut {
    0% {
        background-color: rgba(252, 255, 0, 0.15);
        opacity: 0;
    }
    20% {
        background-color: rgba(252, 255, 0, 0.15);
        opacity: 1;
    }
    100% {
        background-color: rgba(252, 255, 0, 0);
        opacity: 0;
    }
}

/* Ensure content stays on top */
.about-hero .hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(55px);
}

/* Technology Info Section */
.technology-info {
    background-color: white;
    padding: 120px 0;
}

.technology-info .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.technology-info h2 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--lunar-night);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

.technology-info h2 .highlight {
    color: #3265D5;
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(7, 25, 53, 0.8);
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tech-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.detail-block {
    text-align: center;
}

.detail-block h3 {
    color: var(--lunar-night);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}

.detail-block p {
    color: rgba(7, 25, 53, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .technology-info {
        padding: 80px 0;
    }

    .tech-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .technology-info h2 {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .lead-text {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .detail-block h3 {
        font-size: 20px;
    }
}

/* Process Section Styles */
.process-section {
    padding: 80px 0; /* Reduced from 120px to 80px */
    background-color: white;
}

.process-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-section h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--lunar-night);
}

.process-section .highlight {
    color: #3265D5;
}

/* Tab Styles */
.process-tabs {
    display: flex;
    flex-direction: row;  /* Changed from column to row */
    gap: 80px;  /* Increased gap between tabs and content */
    align-items: flex-start;
}

.tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 320px;  /* Fixed width for tab buttons */
}

.tab-button {
    background: none;
    border: none;
    text-align: left;
    font-size: 24px;
    color: rgba(7, 25, 53, 0.5);
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    transform: translateX(0);
}

.tab-button:hover {
    color: #3265D5;
    transform: translateX(8px);
}

.tab-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleY(0.6);
    opacity: 0;
}

.tab-button:hover::before {
    background: rgba(50, 101, 213, 0.5);
    transform: scaleY(0.8);
    opacity: 1;
}

.tab-button.active {
    color: #3265D5;
    transform: translateX(12px);
}

.tab-button.active::before {
    background: #3265D5;
    transform: scaleY(1);
    opacity: 1;
}

.tab-content {
    flex: 1;
    padding-top: 16px;
    position: relative;
    min-height: 200px;
    overflow: hidden; /* Contains absolute positioned children */
}

.tab-panel {
    display: block;
    position: absolute;
    width: 100%; /* Ensure full width */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.tab-panel.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Add exit animation class */
.tab-panel.exit {
    transform: translateY(-20px); /* Exit upward */
    opacity: 0;
}

.tab-panel .main-text,
.tab-panel .sub-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--lunar-night);
    margin-bottom: 24px;
    max-width: 800px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-section {
        padding: 40px 0; /* Further reduced for mobile */
    }
    
    .process-section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .tab-button {
        font-size: 20px;
        padding: 12px 20px;
    }

    .process-tabs {
        flex-direction: column;
        gap: 40px;
    }

    .tab-buttons {
        min-width: 100%;
    }

    .tab-content {
        padding-left: 0;
    }
}

/* Future Section Styles */
.future-section {
    background-color: #001529;
    padding: 80px 0;
}

.white-text {
    color: #FFFFFF !important;
}

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

.future-section .title-container {
    text-align: left;
    margin-bottom: 60px;
}

.future-section h2 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    font-weight: 500;
}

.future-section .highlight {
    color: #FCFF00;
}

.future-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center; /* Changed from flex-start to center */
}

.future-text {
    flex: 1;
    max-width: 50%;
}

.future-text .text-block {
    margin-bottom: 30px;
}

.future-text h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

.future-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.future-text ul.white-text li {
    color: #FFFFFF !important;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}

.future-text ul.white-text li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFFFFF !important;
}

.chart-container {
    flex: 1;
    max-width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sales-chart {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    background: white;
    padding: 16px;
}

.chart-reference {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    text-align: center;
    width: 100%;
}

.chart-reference a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.chart-reference a:hover {
    color: var(--alchem-sunrise);
}

/* Responsive styles */
@media (max-width: 768px) {
    .future-content-wrapper {
        flex-direction: column;
        gap: 60px; /* Increased gap for better spacing on mobile */
    }
    
    .future-text,
    .chart-container {
        max-width: 100%;
    }

    .chart-container {
        padding: 0 20px; /* Add some padding on mobile */
    }
    
    .sales-chart {
        max-width: 90%; /* Make image slightly smaller on mobile for better margins */
        margin: 0 auto; /* Center the image */
    }

    .future-section h2 {
        font-size: 36px;
    }

    .future-text h3 {
        font-size: 20px;
    }

    .future-text ul.white-text li {
        font-size: 14px;
    }

    .chart-reference {
        font-size: 10px;
        margin-top: 6px;
        padding-left: 12px;
    }
}

@media (max-width: 480px) {
    .chart-reference {
        padding-left: 8px;
    }
}

/* Key Sectors Section */
.sectors-section {
    padding: 80px 0 40px;
    background-color: white;
}

.sectors-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.sectors-section h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 60px;
    text-align: center;
    color: var(--lunar-night);
}

.sectors-section .highlight {
    color: #0B42B0;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1140px;
    margin: 0 auto;
}

.sector-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 16px;
    padding: 32px;
    min-height: 256px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.1);
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(11, 66, 176, 0.15);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.sector-card .card-icon {
    width: 80px;
    height: 80px;
    background: #0B42B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 3px 10px rgba(11, 66, 176, 0.2);
    flex-shrink: 0;
    position: relative;
}

.sector-card .card-icon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sector-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    flex-grow: 1;
    text-align: center;
}

.sector-card h3 {
    color: #0B42B0;
    font-family: var(--font-primary);
    font-size: 21.6px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    letter-spacing: 0.02em;
}

.sector-card p {
    color: rgba(7, 25, 53, 0.7);
    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    max-width: 224px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .sectors-grid {
        gap: 24px;
    }
    
    .sector-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .sectors-section {
        padding: 60px 0 30px;
    }

    .sectors-section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sector-card {
        width: 85%;
        min-width: 280px;
        max-width: 320px;
        padding: 16px;
        margin: 0 auto;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        transform: scale(0.9);
    }

    .sector-card .card-icon {
        width: 50px;
        height: 50px;
        margin-top: 16px;
    }

    .sector-card .card-content {
        gap: 8px;
        padding: 0;
        margin: 0;
        margin-top: 8px;
        justify-content: flex-start;
    }

    .sector-card h3 {
        font-size: calc(var(--h3-size) * 0.8);
        margin: 0;
        line-height: 1.2;
    }

    .sector-card p {
        font-size: calc(var(--p-size) * 0.8);
        line-height: 1.4;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .sector-card {
        width: 90%;
        min-width: 260px;
        padding: 20px;
        min-height: 200px;
    }

    .sector-card .card-icon {
        width: 45px;
        height: 45px;
        margin-top: 12px;
    }

    .sector-card .card-content {
        margin-top: 6px;
    }
}

/* Partnerships card spacing */
.partnerships-card {
    margin-top: 30px; /* Added spacing above the card */
    margin-bottom: 80px;
}

/* Page Transition Styles */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--lunar-night);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.65, 0, 0.35, 1); /* Reduced from 0.6s to 0.3s, smoother easing */
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Investment Section Styles */
.investment-section {
    padding: 120px 0;
    background-color: white;
}

.investment-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center; /* Center container content */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the button */
}

.investment-section h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--lunar-night);
}

.investment-section .highlight {
    color: #0B42B0;
}

.investment-description {
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--lunar-night);
    opacity: 0.9;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 100px;
    padding: 20px 32px;
    text-decoration: none;
    color: var(--lunar-night);
    font-weight: 500;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 0 auto; /* Center the button */
    border: 1px solid rgba(7, 25, 53, 0.1); /* Thinner, more subtle border */
}

/* Gradient border effect */
.download-button::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 100px;
    z-index: -1;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(7, 25, 53, 0.2); /* Slightly darker border on hover */
}

.download-icon {
    width: 24px;
    height: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .investment-section {
        padding: 80px 0;
    }

    .investment-section h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .investment-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .download-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* News Section Styles */
.news-section {
    padding: 150px 0 120px; /* Changed from padding: 120px 0 */
    background-color: white;
    margin-top: -120px; /* This creates 150px space between sections */
}

.news-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-section h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 48px;
    color: var(--lunar-night);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smoother easing */
    cursor: pointer;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Add subtle image zoom effect on hover */
.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #071935;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.news-content {
    padding: 32px;
}

.news-content h3 {
    font-size: 28px;
    color: var(--lunar-night);
    margin-bottom: 16px;
    font-weight: 500;
}

.news-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--lunar-night);
    opacity: 0.8;
}

.load-more {
    display: block;
    margin: 0 auto;
    padding: 12px 32px;
    background: white;
    border: 1px solid rgba(11, 66, 176, 0.2);
    border-radius: 100px;
    color: #0B42B0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more:hover {
    border-color: rgba(11, 66, 176, 0.4);
    box-shadow: 0 8px 32px rgba(11, 66, 176, 0.1);
    transform: translateY(-2px);
}

/* Article Modal Styles */
.article-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 25, 53, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.article-content {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    background: white;
    border-radius: 24px;
    padding: 40px;
}

.close-article {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--lunar-night);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-article:hover {
    transform: rotate(90deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .news-section {
        padding: 80px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-section h2 {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .article-content {
        margin: 20px;
        padding: 24px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 120px 0;
    background-color: white;
}

.contact-section .container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

.contact-section h1 {
    font-size: var(--h1-size);
    font-weight: var(--weight-bold);
    font-family: var(--font-primary);
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: var(--p-size);
    font-family: var(--font-primary);
    margin-bottom: 40px;
    color: rgba(7, 25, 53, 0.8);
    line-height: var(--line-md);
}

.contact-form {
    max-width: 800px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(7, 25, 53, 0.2);
    border-radius: 12px;
    font-size: var(--font-sm);
    color: var(--lunar-night);
    background-color: rgba(246, 246, 246, 0.5);
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(7, 25, 53, 0.5);
    font-weight: var(--weight-regular);
    font-family: var(--font-primary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(11, 66, 176, 0.5);
    background-color: white;
    box-shadow: 0 4px 12px rgba(11, 66, 176, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.send-button {
    display: inline-block;
    padding: 16px 48px;
    background-color: #0B42B0;
    border: none;
    border-radius: 100px;
    color: white;
    font-size: var(--font-sm);
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    box-shadow: 0 4px 12px rgba(11, 66, 176, 0.2);
}

.send-button:hover {
    background-color: #0935A0;
    box-shadow: 0 6px 16px rgba(11, 66, 176, 0.3);
    transform: translateY(-2px);
}

.send-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(11, 66, 176, 0.2);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section h1 {
        font-size: calc(var(--h1-size) * 0.8);
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        font-size: calc(var(--font-sm) - 1px);
    }
    
    .send-button {
        width: 100%;
        padding: 14px 24px;
    }
}

/* Accessibility Improvements */
/* Visually hidden class for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Ensure sufficient color contrast */
.news-content p {
    color: rgba(7, 25, 53, 0.9); /* Increased opacity for better contrast */
}

/* Focus styles for interactive elements */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #0B42B0;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0B42B0;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Improve tap target sizes for mobile */
@media (max-width: 768px) {
    .nav-links a,
    .footer-links a {
        padding: 12px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Remove default focus outline and add custom focus styles */
*:focus {
    outline: none;
}

/* Add subtle focus styles for interactive elements */
a:focus,
button:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Ensure focus styles only show up when using keyboard navigation */
*:focus:not(:focus-visible) {
    box-shadow: none;
}

*:focus-visible {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Remove all focus outlines and add custom focus styles */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

a:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Only show focus styles for keyboard navigation */
*:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) !important;
}

/* Replace metrics-container styles with: */
.content-cards {
    position: absolute;
    bottom: -100px; /* Changed from -120px to -100px to move cards up */
    left: 0;
    right: 0;
    z-index: 3;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.content-cards .card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    min-height: 256px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.1);
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition */
}

.content-cards .card:hover {
    transform: translateY(-8px); /* Lift effect */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%); /* Slightly lighter on hover */
    border-color: rgba(255, 255, 255, 0.2); /* Brighter border */
}

.content-cards .card-icon {
    width: 80px;
    height: 80px;
    background: #0B42B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 3px 10px rgba(11, 66, 176, 0.2);
    flex-shrink: 0;
    position: relative;
}

.content-cards .card-icon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content-cards .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px; /* Reduced from 16px by 20% */
    flex-grow: 1;
}

.content-cards h3 {
    color: #0B42B0;
    font-family: 'Gotham', sans-serif;
    font-size: 21.6px; /* Increased from 18px by 20% */
    font-weight: 700; /* Changed from 500 to bold */
    line-height: 1.2;
    text-align: center;
    margin: 0;
    letter-spacing: 0.02em;
}

.content-cards p {
    color: rgba(7, 25, 53, 0.7);
    font-family: 'Gotham', sans-serif;
    font-size: 12px; /* Reduced from 15px by 20% */
    line-height: 1.6; /* Match text content */
    margin: 0;
    text-align: center;
    max-width: 224px; /* Reduced from 280px by 20% */
    font-weight: 400; /* Match text content */
    letter-spacing: 0.02em; /* Match text content */
}

/* Adjust mobile size proportionally */
@media (max-width: 768px) {
    .content-cards h3 {
        font-size: clamp(21.6px, 3.6vw, 26.4px); /* Increased by 20% */
    }
}

/* Carousel styles */
@media (max-width: 768px) {
    .content-cards {
        grid-template-columns: 1fr;
        overflow-x: auto;
        overflow-y: visible; /* Allow vertical overflow to show shadows */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 16px; /* Reduced from 20px */
        margin-bottom: 40px;
        transform: translateY(60px); /* Changed from 80px to 60px to move up */
        padding-bottom: 16px;
    }

    .content-cards::-webkit-scrollbar {
        display: none;
    }

    .content-cards.carousel {
        display: flex;
        padding-bottom: 2rem;
        padding-top: 2rem;
        gap: 24px; /* Consistent gap */
        width: 100%;
        overflow-y: visible; /* Allow vertical overflow to show shadows */
    }

    .content-cards.carousel .card {
        flex: 0 0 280px; /* Reduced from 300px */
        min-height: 240px; /* Reduced from 256px */
        margin-right: 0;
        transform: none;
    }

    /* Clone cards for infinite scroll */
    .content-cards.carousel .card.clone {
        flex: 0 0 280px; /* Reduced from 300px */
        min-height: 240px; /* Reduced from 256px */
    }
}

/* Adjust mission statement top padding to maintain equal spacing */
.mission-statement {
    padding-top: 180px; /* Increased from 150px to 180px to create more space */
    padding-bottom: 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* General Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Typography Adjustments */
    h1 {
        font-size: clamp(28px, 5vw, 36px);
        line-height: 1.2;
    }

    h2 {
        font-size: clamp(24px, 4vw, 32px);
        line-height: 1.2;
    }

    h3 {
        font-size: clamp(18px, 3vw, 22px);
    }

    p {
        font-size: clamp(14px, 2vw, 16px);
    }

    /* Container Widths */
    .container {
        padding: 0 16px; /* Reduced from 20px */
        width: 100%;
    }

    /* Section Spacing */
    section {
        padding: 60px 0;
    }

    /* Hero Sections */
    .hero, .about-hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 16px 140px; /* Reduced padding */
    }

    .hero-content {
        padding: 0 16px; /* Reduced from 20px */
    }

    /* Process Section */
    .process-tabs {
        flex-direction: column;
    }

    .tab-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .tab-button {
        width: 100%;
        text-align: left;
        padding: 15px;
    }

    /* Sectors Grid */
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
    }

    .sector-card {
        padding: 24px;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .member-image {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }

    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
    }

    .value-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 20px;
    }

    .value-icon {
        width: 48px;
        margin-right: 20px;
    }

    /* Future Section */
    .future-section .container {
        flex-direction: column;
        gap: 40px;
    }

    .chart-container {
        width: 100%;
        overflow-x: auto;
    }

    /* Partnerships Card */
    .partnerships-card {
        max-width: 100%;
        margin: 20px;
        padding: 40px 20px;
    }

    .partnerships-card h2 {
        font-size: clamp(24px, 4vw, 32px);
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px; /* Reduced from 40px */
        padding: 32px 16px; /* Reduced from 20px */
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Tablet Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Larger Screens */
@media (min-width: 1025px) and (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

/* ... existing styles ... */

.legal-content {
    padding: 120px 0 60px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
}

.legal-content .container {
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content .last-updated {
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 40px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}

/* Add white background to the entire body for legal pages */
body.legal-page {
  background-color: white;
}

/* Force dark logo and menu on legal pages */
body.legal-page .navbar .logo img {
  filter: brightness(0) !important; /* Force black logo */
}

body.legal-page .navbar .menu-toggle {
  color: var(--lunar-night) !important; /* Force dark menu icon */
}

/* Force dark nav links on legal pages */
body.legal-page .navbar .nav-links a {
  color: var(--lunar-night) !important;
  text-shadow: none !important;
}

body.legal-page .navbar .nav-links a:hover {
  color: var(--lunar-night) !important;
  opacity: 0.8;
}

body.legal-page .navbar .nav-links a::after {
  background-color: var(--lunar-night) !important;
}

.future-section h3 {
    color: var(--lunar-night);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.future-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 24px;
}

.future-section li {
    color: var(--lunar-night);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.text-content {
    position: relative;
    width: 100%;
    padding: 40px 0; /* Reduced from 80px to 40px (50% reduction) */
    background-color: white;
    color: var(--deep-space);
    overflow: hidden;
}

.text-content .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left; /* Changed from center to left */
}

.text-content .description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto; /* Removed top/bottom margins */
    max-width: 900px;
    color: var(--deep-space);
    text-align: left; /* Explicitly set to left */
    margin-left: 0; /* Align with left edge instead of centering */
}

/* Ensure consistent spacing between sections */
.mission-statement + .preview-card,
.preview-card + .text-content,
.text-content + .partnerships-card {
    margin-top: 40px; /* Consistent spacing between sections */
}

@media (max-width: 768px) {
    .text-content {
        padding: 30px 0; /* Reduced from 60px to 30px for mobile */
    }
    
    .text-content .description {
        font-size: 16px;
        line-height: 1.5;
        margin-left: 0; /* Maintain left alignment on mobile */
    }
    
    /* Maintain consistent spacing on mobile */
    .mission-statement + .preview-card,
    .preview-card + .text-content,
    .text-content + .partnerships-card {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .text-content {
        padding: 25px 0; /* Further reduced for small mobile */
    }
}

.cost-comparison {
    text-align: center;
    margin: 40px auto;
}

.cost-comparison .price {
    color: #3265D5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cost-comparison .price span {
    font-size: 52px; /* Reduced from 64px */
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #3265D5;
}

.cost-comparison .when {
    font-size: 16px; /* Reduced from 18px */
    color: #666666;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .text-content .white-card {
        padding: 24px;
    }

    .text-content h2 {
        font-size: 32px;
    }

    .cost-comparison .price span {
        font-size: 36px; /* Reduced from 42px */
    }
    
    .cost-comparison .when {
        font-size: 14px; /* Reduced from 16px */
    }
}

.content-columns {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 999;
    width: 100%;
}

.text-column {
    flex: 0 1 60%;
    position: relative;
    z-index: 999;
}

.image-column {
    flex: 0 1 40%;
    position: relative;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    max-width: 400px;
}

.image-column img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 999;
    background: white;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
    .text-content .container {
        padding: 0 60px;
    }
    
    .content-columns {
        gap: 40px;
    }
    
    .image-column {
        padding: 0 15px;
    }
    
    .image-column img {
        max-width: 280px;
    }
}

@media (max-width: 992px) {
    .image-column img {
        max-width: 260px;
    }
}

@media (max-width: 768px) {
    .content-columns {
    flex-direction: column;
    }
    
    .text-column,
    .image-column {
        flex: 0 1 100%;
    }
    
    .image-column {
        padding: 10px;
        margin-top: 20px;
    }
    
    .image-column img {
        max-width: 240px;
    }

    .text-content .container {
        padding: 0 16px; /* Reduced from 20px */
    }
    
    .text-content h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .image-column img {
        max-width: 220px;
    }
}

/* Lower the z-index of potentially conflicting elements */
.preview-card,
.partnerships-card,
.glass-accents {
    z-index: 1;
    position: relative;
}

@media (max-width: 1200px) {
    .text-content .container {
        padding: 0 60px;
    }
    
    .text-content h2 {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .content-columns {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .content-columns {
        flex-direction: column;
    }
    
    .text-column,
    .image-column {
        flex: 0 1 100%;
    }

    .text-content .container {
        padding: 0 16px; /* Reduced from 20px */
    }
    
    .text-content h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

/* Add this CSS rule to style the bullet points in the future-section */
.future-text ul {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0;
}

.future-text ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.8em;
}

.future-text ul li::before {
    content: "• •"; /* Double bullet points with space between */
    position: absolute;
    left: 0;
    color: var(--accent-color, #00B2FF);
    letter-spacing: 0.2em; /* Space between the two dots */
}

/* Base heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--weight-bold);
    line-height: var(--line-xs);
    margin-bottom: 0.5em;
}

h1 {
    font-size: var(--h1-size);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--h2-size);
    font-weight: var(--weight-medium);
}

h3 {
    font-size: var(--h3-size);
    font-weight: var(--weight-medium);
}

p {
    font-size: var(--p-size);
    line-height: var(--line-md);
    margin-bottom: 1em;
}

/* Hero heading styles */
.hero h1, .about-hero h1 {
    font-size: var(--h1-size);
    font-weight: var(--weight-bold);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero h1 .highlight, .about-hero h1 .highlight {
    font-family: inherit;
    color: var(--alchem-sunrise);
}

/* Section heading styles */
.content-section h2, 
.vision-mission h2,
.core-values h2,
.team-section h2,
.technology-info h2,
.process-section h2,
.future-section h2,
.sectors-section h2,
.investment-section h2,
.news-section h2,
.text-content h2 {
    font-size: var(--h2-size);
    font-weight: var(--weight-medium);
    line-height: var(--line-xs);
}

/* Card heading styles */
.preview-card h2,
.partnerships-card h2,
.metric-card h3,
.value-content h3,
.member-info h3,
.detail-block h3,
.sector-content h3,
.news-content h3,
.content-cards h3 {
    font-family: var(--font-primary);
    font-weight: var(--weight-medium);
}

/* Highlight styles for consistency */
.highlight {
    color: var(--alchem-sunrise);
    font-family: inherit;
    font-weight: inherit;
}

/* Responsive styles for content cards */
@media (max-width: 768px) {
    .content-cards .card {
        padding: 24px;
    }
    
    .content-cards .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .content-cards .card-icon img {
        width: 55%;
        height: 55%;
    }
    
    .content-cards h3 {
        font-size: var(--h3-size);
        margin-bottom: 12px;
    }
    
    .content-cards p {
        font-size: calc(var(--p-size) * 0.9);
    }
}

@media (max-width: 480px) {
    .content-cards .card {
        padding: 20px;
    }
    
    .content-cards .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Center footer contents on mobile */
@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-description {
        text-align: center;
        max-width: 90%;
        margin: 16px auto;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 16px;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
}

/* Fix alignment for copyright/all rights reserved text */
.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
    font-size: var(--font-xs);
    color: rgba(255, 255, 255, 0.6);
    width: 100%;
}

/* Ensure proper alignment on mobile */
@media (max-width: 768px) {
    .footer-copyright {
        margin-top: 24px;
        padding: 0 16px;
    }
}

/* Style the footer bottom section to match other footer content */
.footer-bottom {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 40px;
    text-align: left;
    padding: 0 var(--content-padding);
}

.footer-bottom p {
    font-size: var(--font-xs);
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--line-sm);
}

/* Ensure proper alignment on mobile */
@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
        margin-top: 32px;
    }
    
    .footer-bottom p {
        margin: 0 auto;
    }
}

/* ... existing code ... */

/* Shrink hero heading font by 20% and raise text position */
.hero h1 {
    font-size: calc(var(--h1-size) * 0.8); /* Reduce font size by 20% */
    margin-bottom: 24px; /* Keep existing margin */
}

.hero .hero-content {
    transform: translateY(-40px); /* Raise the text and button up */
}

/* Ensure responsive behavior is maintained */
@media (max-width: 768px) {
    .hero h1 {
        font-size: calc(var(--h1-size) * 0.8); /* Maintain 20% reduction on mobile */
    }
    
    .hero .hero-content {
        transform: translateY(-30px); /* Slightly less shift on mobile */
    }
}

/* Make cards much smaller on mobile */
@media (max-width: 768px) {
    .content-cards .card {
        width: 75%; /* Significantly reduce width */
        min-width: 240px; /* Smaller minimum width */
        max-width: 280px; /* Smaller maximum width */
        padding: 16px; /* Further reduce padding */
        margin: 0 auto 24px; /* Increase bottom margin for more vertical space */
        transform: scale(0.9); /* Scale down the entire card */
    }
    
    .content-cards {
        padding: 0 20px; /* Increase container padding */
        gap: 30px; /* Increase gap between cards */
    }
    
    /* Make icons smaller */
    .content-cards .card-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Reduce text size */
    .content-cards h3 {
        font-size: calc(var(--h3-size) * 0.8); /* 20% smaller */
        margin-bottom: 8px;
    }
    
    .content-cards p {
        font-size: calc(var(--p-size) * 0.8); /* 20% smaller */
        line-height: 1.4;
        margin-bottom: 6px;
    }
}

/* Even smaller for very small screens */
@media (max-width: 480px) {
    .content-cards .card {
        width: 70%; /* Even smaller width */
        min-width: 220px;
        padding: 14px;
        transform: scale(0.85); /* Scale down even more */
    }
    
    .content-cards .card-icon {
        width: 45px;
        height: 45px;
    }
}

/* ... existing code ... */

/* Fix horizontal scrolling issues */
html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    position: relative;
}

/* Ensure all containers respect viewport width */
.container, 
.hero-content,
.footer-container,
.navbar .container,
section > .container {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix any potential overflow issues with images */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure preview sections don't overflow */
.preview-section,
.preview-card {
    max-width: 100vw;
    overflow: hidden;
}

/* Fix potential issues with absolute positioned elements */
.hero::after,
.hero-overlay,
.preview-image::after {
    width: 100%;
    max-width: 100vw;
    left: 0;
    right: 0;
}

/* ... existing code ... */

/* Improve core values section for mobile */
@media (max-width: 768px) {
    .values-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        grid-template-columns: unset; /* Remove grid layout */
        padding: 0 16px; /* Add horizontal padding */
    }
    
    .value-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        grid-area: unset !important; /* Remove grid positioning */
        padding: 24px; /* Consistent padding */
        border-radius: 16px; /* Maintain rounded corners */
    }
    
    /* Reset grid positioning */
    .value-item:nth-child(1),
    .value-item:nth-child(2),
    .value-item:nth-child(3),
    .value-item:nth-child(4) {
        grid-area: unset !important;
    }
    
    /* Adjust icon size for better proportions */
    .value-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    /* Ensure last item doesn't have special styling */
    .value-item:last-child {
        width: 100%;
        max-width: 400px;
        grid-column: unset;
        grid-row: unset;
    }
}

/* Increase margins for partnerships card and mission statement on mobile */
@media (max-width: 768px) {
    .partnerships-card {
        margin: 60px auto; /* Increase vertical margins by ~10% */
        padding: 40px 24px; /* Increase horizontal padding */
        width: 90%; /* Slightly narrower to create more margin */
    }
    
    .mission-statement {
        padding: 66px 0; /* Increase vertical padding by ~10% */
        margin: 55px 0; /* Increase vertical margins by ~10% */
    }
    
    .mission-statement .container {
        width: 90%; /* Create more horizontal margin */
        padding: 0 22px; /* Increase horizontal padding by ~10% */
    }
    
    /* Ensure text remains properly sized */
    .partnerships-card h2 {
        margin-bottom: 22px; /* Increase spacing */
    }
}

/* Further increase margins on very small screens */
@media (max-width: 480px) {
    .partnerships-card {
        margin: 66px auto; /* Further increase margins */
        width: 88%; /* Even more horizontal margin */
    }
    
    .mission-statement {
        padding: 72px 0; /* Further increase padding */
    }
    
    .mission-statement .container {
        width: 88%; /* More horizontal margin */
    }
}

/* ... existing code ... */

/* Improve vertical centering of mission statement on mobile */
@media (max-width: 768px) {
    .mission-statement {
        padding: 66px 0; /* Keep the increased padding */
        margin: 55px 0; /* Keep the increased margins */
        display: flex;
        align-items: center; /* Center vertically */
        min-height: 300px; /* Ensure minimum height for centering */
    }
    
    .mission-statement .container {
        width: 90%; /* Keep the increased horizontal margin */
        padding: 0 22px; /* Keep the increased horizontal padding */
        margin-top: 30px; /* Move the content down a bit */
        position: relative;
        top: 15px; /* Additional downward adjustment */
    }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    .mission-statement {
        min-height: 320px; /* Slightly taller minimum height */
    }
    
    .mission-statement .container {
        margin-top: 40px; /* Move down more on very small screens */
        top: 20px; /* More downward adjustment */
    }
}

/* ... existing code ... */

/* Improve vertical centering and increase margins for text content on mobile */
@media (max-width: 768px) {
    .text-content {
        padding: 66px 0; /* Increase vertical padding by ~10% */
        margin: 55px 0; /* Increase vertical margins by ~10% */
        display: flex;
        align-items: center; /* Center vertically */
        min-height: 300px; /* Ensure minimum height for centering */
    }
    
    .text-content .container {
        width: 90%; /* Create more horizontal margin (10% total margin) */
        padding: 0 22px; /* Increase horizontal padding by ~10% */
        margin-top: 30px; /* Move the content down a bit */
        position: relative;
        top: 15px; /* Additional downward adjustment */
    }
    
    /* Ensure text remains properly sized and spaced */
    .text-content h2 {
        margin-bottom: 22px; /* Increase spacing */
    }
    
    .text-content .description {
        margin-bottom: 22px; /* Increase spacing */
    }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    .text-content {
        min-height: 320px; /* Slightly taller minimum height */
    }
    
    .text-content .container {
        margin-top: 40px; /* Move down more on very small screens */
    }
}

/* ... existing code ... */

/* Decrease padding on text content by 30% on each side */
.text-content {
    padding-left: calc(var(--content-padding) * 0.7); /* 30% less padding on left */
    padding-right: calc(var(--content-padding) * 0.7); /* 30% less padding on right */
}

.text-content .container {
    padding-left: calc(var(--content-padding) * 0.7); /* 30% less padding on left */
    padding-right: calc(var(--content-padding) * 0.7); /* 30% less padding on right */
    max-width: calc(var(--content-width) * 0.9); /* Slightly narrower to account for reduced padding */
}

/* Maintain responsive behavior */
@media (max-width: 768px) {
    .text-content {
        padding-left: calc(var(--content-padding) * 0.7); /* 30% less padding on left */
        padding-right: calc(var(--content-padding) * 0.7); /* 30% less padding on right */
    }
    
    .text-content .container {
        padding-left: calc(var(--content-padding) * 0.7); /* 30% less padding on left */
        padding-right: calc(var(--content-padding) * 0.7); /* 30% less padding on right */
    }
}

/* ... existing code ... */

/* Make padding more compact on mobile */
@media (max-width: 768px) {
    .text-content {
        padding-top: 40px; /* Reduce top padding */
        padding-bottom: 40px; /* Reduce bottom padding */
        padding-left: 16px; /* Significantly reduce left padding */
        padding-right: 16px; /* Significantly reduce right padding */
        margin: 30px 0; /* Reduce vertical margins */
    }
    
    .text-content .container {
        padding-left: 12px; /* Very compact left padding */
        padding-right: 12px; /* Very compact right padding */
        width: 95%; /* Use more of the available width */
    }
    
    /* Make paragraph text more compact */
    .text-content p {
        margin-bottom: 16px; /* Less space between paragraphs */        line-height: 1.5; /* Slightly tighter line height */
    }
}

/* First, let's define all the Gotham font faces */
@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-ThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-XLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-XLightItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-BookItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-Black.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-BlackItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-Ultra.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Gotham/Gotham-UltraItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* Base typography settings */
:root {
    /* Font Family */
    --font-primary: 'Gotham', sans-serif;
}

/* Ensure all text elements use Gotham */
* {
    font-family: var(--font-primary);
}

@media (max-width: 768px) {
    .partnerships-card {
        min-height: 400px;
        padding: 40px 20px;
    }

    .partnerships-card h2 {
        font-size: calc(var(--h2-size) * 0.6); /* Reduced from 0.6 to 0.5 for mobile */
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .partnerships-card .button-primary {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .partnerships-card {
        min-height: 350px;
    }

    .partnerships-card h2 {
        font-size: calc(var(--h2-size) * 0.6); /* Further reduced for smaller screens */
        margin-bottom: 10px;
    }
    
    .partnerships-card .button-primary {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 100px;
    }
}

/* Media queries for responsive design to match preview card */
@media (min-width: 768px) {
    .text-content {
        min-height: 120px; /* Increase minimum height for larger screens */
        padding: 0;
        margin-top: -10px;
    }
    
    .text-content .container {
        padding: 25px 25px; /* Increase vertical padding for larger screens */
    }
    
    .text-content .description {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .text-content {
        min-height: 140px; /* Increase minimum height for larger screens */
        padding: 0;
        margin-top: -10px;
    }
    
    .text-content .container {
        padding: 30px 25px; /* Increase vertical padding for larger screens */
    }
    
    .text-content .description {
        font-size: 18px;
    }
}

@media (min-width: 1440px) {
    .text-content {
        min-height: 160px; /* Increase minimum height for larger screens */
        padding: 0;
        margin-top: -10px;
    }
    
    .text-content .container {
        padding: 35px 25px; /* Increase vertical padding for larger screens */
    }
    
    .text-content .description {
        font-size: 18px;
    }
}

/* Thank you page styles */
.thank-you-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.thank-you-message p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--lunar-night);
}

.button-container {
    margin-top: 40px;
}

/* Form status messages */
.form-status {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: 500;
}

.form-status.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.form-status.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
    border: 1px solid #d32f2f;
}

/* Blue button for thank-you page */
.thank-you-message .button-primary {
    background: #3265D5;
    border: 1px solid #3265D5;
    color: white;
}

.thank-you-message .button-primary:hover {
    background: #2755c3;
    border-color: #2755c3;
    box-shadow: 
        0 0 20px rgba(50, 101, 213, 0.3),
        inset 0 0 10px rgba(50, 101, 213, 0.2);
}

.content-cards .card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    min-height: 256px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.1);
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-cards .card-icon {
    width: 80px;
    height: 80px;
    background: #0B42B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 3px 10px rgba(11, 66, 176, 0.2);
    flex-shrink: 0;
    position: relative;
}

.content-cards .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    flex-grow: 1;
    text-align: center;
}

/* Mobile styles */
@media (max-width: 768px) {
    .content-cards .card {
        width: 75%;
        min-width: 240px;
        max-width: 280px;
        padding: 24px;
        margin: 0 auto;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Changed from center to flex-start */
        gap: 16px;
    }
    
    .content-cards .card-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        margin-top: 16px; /* Added top margin to lower the icon */
    }
    
    .content-cards .card-content {
        gap: 8px;
        padding: 0;
        margin: 0;
        margin-top: 8px; /* Added space between icon and content */
        justify-content: flex-start; /* Changed from center to flex-start */
    }
    
    .content-cards h3 {
        font-size: calc(var(--h3-size) * 0.8);
        margin: 0;
        line-height: 1.2;
    }
    
    .content-cards p {
        font-size: calc(var(--p-size) * 0.8);
        line-height: 1.4;
        margin: 0;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .content-cards .card {
        width: 70%;
        min-width: 220px;
        padding: 20px;
        min-height: 200px;
    }
    
    .content-cards .card-icon {
        width: 45px;
        height: 45px;
        margin-top: 12px; /* Slightly reduced top margin for smaller screens */
    }
    
    .content-cards .card-content {
        margin-top: 6px; /* Slightly reduced top margin for smaller screens */
    }
}

/* Hero Section Typography */
.hero h1 {
    font-size: clamp(31.2px, 6.24vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: clamp(18.2px, 3.12vw, 25px);
}

.hero h1 .white-text {
    color: white;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.2);
    filter: brightness(1.2);
    display: block;
    margin-bottom: clamp(4px, 1vw, 8px);
    font-size: 120%; /* Make CLEAN METALS 20% bigger */
    font-weight: 700; /* Keep bold */
}

.hero h1 .highlight {
    color: var(--alchem-sunrise);
    display: block;
    text-shadow: 
        0 0 30px rgba(252, 255, 0, 0.3),
        0 0 60px rgba(252, 255, 0, 0.2);
    font-size: 80%; /* Make THE FUTURE OF METAL SUPPLY 20% smaller */
    font-weight: 500; /* Make it lighter */
}

/* Large screens */
@media (min-width: 1440px) {
    .hero h1 {
        font-size: 64px;
    }
    
    .hero h1 .white-text {
        font-size: 120%; /* Maintain 20% bigger */
    }
    
    .hero h1 .highlight {
        font-size: 80%; /* Maintain 20% smaller */
    }
}

/* Medium screens */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero h1 {
        font-size: clamp(48px, 5vw, 64px);
    }
    
    .hero h1 .white-text {
        font-size: 120%; /* Maintain 20% bigger */
    }
    
    .hero h1 .highlight {
        font-size: 80%; /* Maintain 20% smaller */
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero h1 {
        font-size: clamp(40px, 4.5vw, 48px);
    }
    
    .hero h1 .white-text {
        font-size: 120%; /* Maintain 20% bigger */
    }
    
    .hero h1 .highlight {
        font-size: 80%; /* Maintain 20% smaller */
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero h1 {
        font-size: clamp(32px, 4vw, 40px);
    }
    
    .hero h1 .white-text {
        font-size: 120%; /* Maintain 20% bigger */
    }
    
    .hero h1 .highlight {
        font-size: 80%; /* Maintain 20% smaller */
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(28px, 3.5vw, 32px);
    }
    
    .hero h1 .white-text {
        font-size: 120%; /* Maintain 20% bigger */
    }
    
    .hero h1 .highlight {
        font-size: 80%; /* Maintain 20% smaller */
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
}

/* Hero Section Typography */
.hero-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
}

.hero h1 {
    font-size: clamp(31.2px, 6.24vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: clamp(18.2px, 3.12vw, 25px);
}