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

:root {
    --primary-purple: #6A0DAD;
    --text-color: #FFFFFF;
    --background-color: #000000;
    --section-padding: 4rem 2rem;
    --gradient-orange: #FF8C00;
    --gradient-purple: #9370DB;
    --gradient-blue: #1E90FF;
}

body {
    margin: 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 70px;
    /* Adjust this value based on your header height */
}

html {
    scroll-behavior: smooth;
    /* Enables smooth scrolling for anchor links */
}

#main-header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* For Safari */
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#main-header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

#main-header .logo {
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
    background-image: linear-gradient(45deg, var(--gradient-orange), var(--gradient-purple), var(--gradient-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

#main-header .logo:hover {
    transform: scale(1.05);
}

#main-header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

#main-header nav ul li {
    margin-left: 20px;
}

#main-header nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

#main-header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#main-header nav ul li a:hover::after {
    width: 100%;
}

#main-header nav ul li a:hover,
#main-header nav ul li a.active {
    color: var(--text-color);
}

#main-header nav ul li a.active::after {
    width: 100%;
    background-color: var(--gradient-orange);
}

section {
    padding: var(--section-padding);
    min-height: 80vh;
    /* Ensure sections have some height */
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 2rem;
    background-image: linear-gradient(to right, var(--gradient-purple), #A47EEA, var(--gradient-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback for browsers that don't support background-clip: text */
}

/* Hero Section */
#hero {
    min-height: 100vh;
    /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
    /* Solid black background */
    text-align: center;
    padding: 0 2rem;
    /* Remove default section padding if it causes overflow */
    position: relative;
    /* Added for canvas positioning */
    overflow: hidden;
    /* To contain particles within the hero section */
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind hero content */
}

#hero .hero-content {
    position: relative;
    /* Ensure content is above canvas */
    z-index: 2;
    /* Above canvas */
}

#hero h1 {
    font-size: 5.5em;
    margin-bottom: 0.5rem;
    /* color: var(--text-color); */
    /* Replaced by gradient */
    font-family: 'Space Grotesk', 'Satoshi', sans-serif;
    /* Updated font */
    text-shadow: 0 0 15px rgba(106, 13, 173, 0.7), 0 0 25px rgba(106, 13, 173, 0.5);
    /* Added text shadow */
    transition: transform 0.3s ease-in-out;
    /* Added transition for hover effect */
    background-image: linear-gradient(45deg, var(--gradient-orange), var(--gradient-purple), var(--gradient-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback for browsers that don't support background-clip: text */
}

#hero h1:hover {
    transform: scale(1.05);
    /* Scale up on hover */
}

#hero p {
    font-size: 1.7em;
    max-width: 700px;
    color: #ccc;
    /* Lighter gray for subtitle */
    margin-bottom: 2rem;
    /* Added to give space for buttons */
}

/* Slogan in Hero Section */
.hero-slogan {
    font-size: 2.2em;
    /* Prominent size */
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    /* Space before CTA buttons */
    background-image: linear-gradient(45deg, var(--gradient-orange), var(--gradient-purple), var(--gradient-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 10px rgba(106, 13, 173, 0.4);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    margin-top: 2rem;
    /* Space above buttons */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    /* Space between buttons */
    flex-wrap: wrap;
    /* Allow buttons to wrap on smaller screens if needed */
}

.cta-button {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(106, 13, 173, 0.5);
    /* Default glow */
    animation: pulse 2s infinite ease-in-out;
    position: relative;
    z-index: 2;
    /* Ensure buttons are above canvas if any overlap */
}

.cta-button-primary {
    background-color: var(--primary-purple);
    color: var(--text-color);
    border: 2px solid var(--primary-purple);
}

.cta-button-primary:hover {
    background-color: #540080;
    /* Darker purple */
    box-shadow: 0 0 25px rgba(106, 13, 173, 0.8), 0 0 10px var(--text-color);
    transform: translateY(-2px);
}

.cta-button-secondary {
    background-color: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.cta-button-secondary:hover {
    background-color: rgba(106, 13, 173, 0.1);
    color: var(--text-color);
    border-color: var(--text-color);
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.7), 0 0 8px var(--text-color);
    transform: translateY(-2px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(106, 13, 173, 0.5);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(106, 13, 173, 0.8), 0 0 10px rgba(106, 13, 173, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(106, 13, 173, 0.5);
    }
}

/* Overview Section */
#overview .overview-content {
    max-width: 1200px;
    /* Increased for grid layout */
    margin: 0 auto;
    text-align: left;
    /* Content within (like paragraphs) will be left-aligned */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
    /* Prevent cards from stretching to match tallest card in row */
}

/* Style for introductory paragraphs in the overview section */
#overview .overview-content>p:first-of-type {
    grid-column: 1 / -1;
    /* Span full width of the grid */
    font-size: 1.8em;
    color: var(--text-color);
    margin-bottom: 1rem;
    /* Space between the two paragraphs */
    text-align: center;
}

#overview .overview-content>p:first-of-type strong {
    background-image: linear-gradient(to right, var(--gradient-orange), var(--gradient-purple), var(--gradient-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
    font-weight: 700;
    /* Ensure it's appropriately bold */
}

#overview .overview-content>p:nth-of-type(2) {
    grid-column: 1 / -1;
    /* Span full width of the grid */
    font-size: 1.15em;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 4rem;
    text-align: center;
}

/* Styles for Scattered Text in Overview Section */
.scattered-text-container {
    grid-column: 1 / -1;
    /* Span full width */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    /* Gap between phrases */
    padding: 2rem 0;
    margin-bottom: 2rem;
    /* Space below the scattered text */
    min-height: 150px;
    /* Give some space for scattering */
    position: relative;
    /* For absolute positioning of children if needed, though flex might be enough */
}

.scattered-phrase {
    font-size: 1.2em;
    /* Adjust as needed */
    color: #e0e0e0;
    padding: 0.5em 1em;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Subtle background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: inline-block;
    /* Important for transform */
    transition: transform 0.3s ease;
}

/* Styling for the agent icon */
#agent-icon {
    position: absolute;
    width: 50px;
    /* Adjust size as needed */
    height: 50px;
    /* Adjust size as needed */
    transition: top 0.5s ease-in-out, left 0.5s ease-in-out, transform 0.5s ease-in-out;
    /* Smooth transitions for movement and rotation */
    z-index: 10;
    /* Ensure it's above the phrases */
    filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(2293%) hue-rotate(228deg) brightness(95%) contrast(88%);
    /* Attempt to colorize to #A47EEA */
    opacity: 0.7;
    /* Added for transparency */
}

/* Apply fixed rotations to each scattered phrase */
.scattered-phrase:nth-child(1) {
    transform: rotate(-5deg);
}

.scattered-phrase:nth-child(2) {
    transform: rotate(8deg);
}

.scattered-phrase:nth-child(3) {
    transform: rotate(-3deg);
}

.scattered-phrase:nth-child(4) {
    transform: rotate(6deg);
}

#overview h3 {
    color: var(--primary-purple);
    font-size: 1.8em;
    margin-top: 2rem;
}

#overview ul {
    list-style: disc;
    margin-left: 2rem;
}

#overview ul li {
    margin-bottom: 0.5rem;
}

/* Enhancements for Overview Section Cards */
#overview .overview-card {
    background-color: #2a2a32;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
}

#overview .overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(147, 112, 219, 0.35);
    border-top-color: var(--gradient-purple);
    border-image-source: linear-gradient(to right, var(--gradient-orange), var(--gradient-purple), var(--gradient-blue));
    border-image-slice: 1;
    border-image-width: 3px 0 0 0;
    border-image-outset: 0;
    border-image-repeat: stretch;
}

#overview .overview-card h3 {
    font-size: 1.9em;
    margin-top: 0;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gradient-purple);
    /* Changed for a lighter purple gradient */
    background-image: linear-gradient(to right, var(--gradient-purple), #A47EEA, var(--gradient-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
}

#overview .overview-card ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
    flex-grow: 1;
}

#overview .overview-card ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    cursor: pointer;
}

#overview .overview-card ul li::before {
    content: '✓';
    color: var(--gradient-blue);
    position: absolute;
    left: 0.25rem;
    top: 0;
    font-weight: bold;
    font-size: 1.3em;
    line-height: inherit;
}

/* Make li clickable and add underline */
#overview .overview-card ul li>.clickable-content {
    text-decoration: underline;
    text-decoration-color: #aaa;
    /* Less dominant color */
    text-underline-offset: 0.2em;
    /* Lower the underline */
    display: inline-block;
    /* Added for transform and layout consistency */
    transition: transform 0.2s ease-in-out;
    /* Added for smooth scaling */
}

#overview .overview-card ul li:hover>.clickable-content {
    transform: scale(1.05);
    /* Apply pop-up effect to the whole clickable content */
}

/* Styles for toggleable info in overview cards */
.toggle-info {
    display: none;
    /* Initially hidden */
}

.info-icon {
    cursor: pointer;
    font-weight: bold;
    margin-left: 8px;
    /* color: var(--gradient-blue); */
    /* No longer needed for text color */
    display: inline-block;
    /* Allows for better spacing and potential future styling */
    vertical-align: middle;
    /* Align icon with text */
}

.info-icon img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
    filter: invert(1) brightness(67%);
    /* Changed to light gray */
}

.info-icon:hover img {
    transform: scale(1.15);
    filter: invert(1) brightness(80%);
    /* Adjusted hover brightness for gray icon */
}

.info-icon:active img {
    transform: scale(1.05);
    filter: invert(1) brightness(60%);
    /* Adjusted active brightness for gray icon */
}

.toggle-info.visible {
    display: block;
    /* Show on new line when icon is clicked */
    margin-top: 0.5rem;
    /* Add some space above the revealed text */
}

/* Meet the Team Section */
#team .team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Add this to reduce the empty space below the team section */
#team {
    min-height: auto;
    /* Override the default section min-height */
    padding-bottom: 4rem;
    /* Ensure some padding remains, adjust as needed */
}

#team>p.gradient-text {
    text-align: center;
    max-width: 700px;
    /* Make the paragraph narrower */
    margin: 0 auto 2rem auto;
    /* Center the block and add some bottom margin */
}

.team-member {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(106, 13, 173, 0.5);
}

.team-member-placeholder {
    width: 150px;
    height: 150px;
    background-color: var(--primary-purple);
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    color: var(--text-color);
}

.team-member h3 {
    font-size: 1.5em;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

/* Contact Us Section */
#contact-form {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: calc(100% - 20px);
    /* Account for padding */
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #2c2c2c;
    color: var(--text-color);
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    /* Added font */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 5px var(--primary-purple);
}

#contact-form button {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-purple);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
    /* Added font */
}

#contact-form button:hover {
    background-color: #540080;
    /* Darker purple on hover */
}

.alternative-contact {
    margin-top: 2rem;
}

.alternative-contact a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: bold;
}

.alternative-contact a:hover {
    text-decoration: underline;
}

/* Add this to reduce the empty space below the contact section */
#contact {
    min-height: auto;
    /* Override the default section min-height */
    padding-bottom: 4rem;
    /* Ensure some padding remains, adjust as needed */
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #111;
    color: #aaa;
    font-size: 0.9em;
}

/* Responsive Design */
/* Tablet-specific styles */
@media (max-width: 1024px) {
    body {
        padding-top: 70px;
        /* Consistent header height */
    }

    #main-header {
        padding: 0.8rem 1.5rem;
    }

    #main-header nav ul li a {
        padding: 0.5rem 0.8rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    section h2 {
        font-size: 2.2em;
    }

    #hero h1 {
        font-size: 4.5em;
    }

    #hero p {
        font-size: 1.5em;
    }

    .cta-button {
        font-size: 1em;
        padding: 0.7rem 1.8rem;
    }

    #overview .overview-content>p:first-of-type {
        font-size: 1.4em;
    }

    #overview .overview-content>p:nth-of-type(2) {
        font-size: 1.15em;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
        /* Reduced from 202px to be more mobile-friendly */
    }

    #main-header {
        padding: 0.8rem 1rem;
    }

    .menu-toggle {
        display: flex;
        /* Show hamburger on mobile */
    }

    #main-header nav ul {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        top: 0;
        right: -100%;
        /* Hide off-screen initially */
        height: 100vh;
        width: 70%;
        max-width: 300px;
        flex-direction: column;
        padding-top: 70px;
        /* Space for header */
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    #main-header nav ul.active {
        right: 0;
        /* Slide in when active */
    }

    #main-header nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    #main-header nav ul li a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    /* When menu is open, transform hamburger to X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    #hero h1 {
        font-size: 2.8em;
        /* Further refined from 3em */
    }

    #hero p {
        font-size: 1.1em;
        /* Further refined from 1.2em */
    }

    section {
        padding: 2rem 1rem;
        /* Further reduce section padding for mobile */
    }

    section h2 {
        font-size: 1.8em;
        /* Further refined from 2em */
    }

    .team-member {
        width: 80%;
        max-width: 350px;
    }

    #contact-form {
        width: 90%;
    }

    .hero-cta-buttons {
        flex-direction: column;
        /* Stack buttons on mobile */
        gap: 1rem;
        /* Adjust gap for stacked buttons */
    }

    .cta-button {
        width: 80%;
        /* Make buttons wider on mobile */
        max-width: 300px;
        text-align: center;
        font-size: 0.9em;
        /* Smaller font for CTA buttons on mobile */
        padding: 0.6rem 1.5rem;
        /* Smaller padding for CTA buttons on mobile */
    }

    #overview .overview-content>p:first-of-type {
        font-size: 1.3em;
    }

    #overview .overview-content>p:nth-of-type(2) {
        font-size: 1em;
    }

    #main-header .logo {
        font-size: 1.5em;
        /* Smaller on mobile */
    }
}

/* For very small screens */
@media (max-width: 480px) {
    #main-header nav ul {
        width: 85%;
    }

    #hero h1 {
        font-size: 2.5em;
    }

    #hero p {
        font-size: 1em;
    }
}

/* Fade-in animation on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* New Send Button Styles */
#contact-form .send-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

#contact-form button.send {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-purple);
    color: var(--text-color);
    border: none;
    font-family: 'Roboto', sans-serif;
    /* Modified font */
    padding: 0;
    border-radius: 3rem;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: auto;
}

#contact-form button.send:hover {
    background-color: #540080;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


#contact-form button.send .text {
    padding: 0.8rem 1rem 0.8rem 1.5rem;
    line-height: 1.5rem;
}

#contact-form button.send .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    margin-left: 0.5rem;
    margin-right: 0.8rem;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 0;
}

#contact-form button.send .icon svg {
    fill: var(--text-color);
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.4s ease-out;
}

.gradient-text {
    background-image: linear-gradient(to right, var(--gradient-orange), var(--gradient-purple), var(--gradient-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback for browsers that don't support background-clip: text */
}

/* Styles for non-strong text within a .gradient-text paragraph to remain the standard color */
p.gradient-text>span {
    background-image: none;
    -webkit-background-clip: initial;
    /* Reset clipping */
    background-clip: initial;
    /* Reset clipping */
    -webkit-text-fill-color: var(--text-color);
    /* Fill with solid color */
    color: var(--text-color);
    /* Standard color property for fallback & non-webkit */
}

/* Hamburger menu icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}