/* Color Palette & Variables */
:root {
    --primary: #050a30;    /* Deep Navy */
    --secondary: #ff0090;  /* Pink */
    --accent: #00c2d1;     /* Cyan */
    --text: #1a1e2e;       /* Dark Text */
    --bg-light: #f8f9fa;   /* Off White */
    --bg-white: #ffffff;   /* Pure White */
    --gray-mid: #525b75;
    --gray-light: #dee2e6;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; }
ul { list-style: none; }

/* Navigation (Glassmorphic) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px); /* Blurry glass effect behind nav */
    border-bottom: 1px solid var(--gray-light);
    z-index: 1000;
    transition: 0.3s ease;
}

.logo img {
    height: 45px;              /* Locks the vertical size */
    width: auto;               /* Calculates width automatically based on the height */
    max-width: 100%;           /* Safety net for small mobile screens */
    object-fit: contain;       /* Prevents any stretching or squishing */
    display: block;            /* Removes any tiny invisible margins beneath the image */
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center; /* <--- ADD THIS LINE to vertically center the button with the text */
}

.nav-links a {
    color: var(--gray-mid);
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(5, 10, 48, 0.2);
}

/* Forces the button text to stay white when inside the navigation menu */
.nav-links a.btn-primary {
    color: #ffffff;
}

/* Keeps the text navy when hovering over the hollow button in the menu */
.nav-links a.btn-primary:hover {
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--text);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--gray-light);
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    z-index: 2; /* Keeps text above the animated blobs */
}

#hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.2rem;
    color: var(--gray-mid);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Moving Design Accents (Blobs) */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.4;
    animation: moveBlobs 15s infinite alternate ease-in-out;
}

.blob-accent {
    background-color: var(--accent);
    top: -10%;
    left: -10%;
}

.blob-secondary {
    background-color: var(--secondary);
    bottom: -10%;
    right: -10%;
    animation-delay: 2s;
}

@keyframes moveBlobs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 150px) scale(1.2); }
}

/* Layout Utilities */
.section-light { background-color: var(--bg-light); padding: 100px 5%; }
.section-white { background-color: var(--bg-white); padding: 100px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary); }

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

/* Alternating Hover Cards */
.card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--gray-light);
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.card p {
    color: var(--gray-mid);
    font-size: 0.95rem;
}

/* Alternating Outlines on Hover */
.hover-accent:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 194, 209, 0.15);
}

.hover-secondary:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 144, 0.15);
}

.hover-primary:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(5, 10, 48, 0.15);
}

/* Flex Split for Contact */
.flex-split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.flex-split > div { flex: 1; }
.contact-text h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px;}

/* Sleek Form */
.sleek-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.input-group { margin-bottom: 20px; }
.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}
.input-group input, .input-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    background: var(--bg-white);
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,194,209,0.2);
}

.form-btn { width: 100%; margin-top: 10px; cursor: pointer; }

/* Scroll Animations (Used by JS) */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 1.2s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Mobile Responsiveness */
@media(max-width: 768px) {
    #hero h1 { font-size: 2.5rem; }
    .grid-3, .flex-split { grid-template-columns: 1fr; flex-direction: column; }
    .nav-links, .nav-actions { display: none; } /* Add mobile menu later */
}

/* --- NEW ADDITIONS FOR MULTI-PAGE LAYOUTS --- */

/* Page Hero (Smaller than Home Hero) */
.page-hero {
    padding-top: 150px;
    padding-bottom: 80px;
}
.page-hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.page-hero p {
    font-size: 1.2rem;
    color: var(--gray-mid);
    max-width: 800px;
    margin: 0 auto;
}

/* Service Rows (Alternating Layout) */
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}
.service-row.reverse {
    flex-direction: row-reverse;
}
.service-text {
    flex: 1;
}
.service-visual {
    flex: 1;
    height: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem; /* For the emoji placeholders */
}

/* Text Colors & Background Tints */
.color-primary { color: var(--primary); }
.color-secondary { color: var(--secondary); }
.color-accent { color: var(--accent); }

.bg-primary-light { background-color: rgba(5, 10, 48, 0.05); }
.bg-secondary-light { background-color: rgba(255, 0, 144, 0.05); }
.bg-accent-light { background-color: rgba(0, 194, 209, 0.05); }

/* Service Blockquotes */
.service-quote {
    margin-top: 25px;
    padding: 20px 25px;
    background: var(--bg-light);
    border-left: 4px solid;
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    color: var(--primary);
}
.border-primary { border-color: var(--primary); }
.border-secondary { border-color: var(--secondary); }
.border-accent { border-color: var(--accent); }

/* Blueprint Timeline */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.timeline-step {
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--gray-light);
    transition: 0.3s ease;
}
.timeline-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--accent);
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid var(--accent);
}
.timeline-step h3 {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Mobile Adjustments for Services */
@media(max-width: 768px) {
    .service-row, .service-row.reverse { flex-direction: column; text-align: center; gap: 30px; }
    .service-quote { text-align: left; }
    .timeline-grid { grid-template-columns: 1fr; }
}

/* --- ABOUT PAGE STYLES --- */

/* Highlight Box */
.highlight-box {
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    background-color: var(--bg-white);
    text-align: center;
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(0, 194, 209, 0.08);
}

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Simple Text Boxes for Mission/Vision */
.text-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--gray-light);
    transition: 0.3s ease;
}
.text-box h3 { margin-bottom: 15px; font-size: 1.4rem; }

/* Dark Section (For EPIC Principles) */
.section-dark {
    background-color: var(--primary);
    padding: 100px 5%;
    color: var(--gray-light);
}
.section-title.text-light h2 { color: var(--bg-white); }
.font-bold { font-weight: 700; font-size: 1.5rem;}

/* EPIC Cards */
.epic-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
}
.epic-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--accent);
}
.epic-letter {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.epic-card h3 {
    color: var(--bg-white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.epic-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Adjustments for About Page */
@media(max-width: 900px) {
    .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .highlight-box { padding: 25px; font-size: 1.05rem; }
}

/* --- CONTACT PAGE STYLES --- */

/* Contact Info Cards */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--gray-light);
    transition: 0.3s ease;
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--gray-mid);
    line-height: 1.6;
}

/* Update Input Group to include Textarea */
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    background: var(--bg-white);
    outline: none;
    transition: 0.3s;
    font-family: inherit;
    resize: vertical; /* Allows the user to drag the box taller if needed */
}

.input-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,194,209,0.2);
}

/* --- HOMEPAGE: SOLUTIONS SNAPSHOT --- */

/* Needs a 4-column grid for the homepage (if not already defined globally) */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: var(--accent);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Re-using background tints if not already present globally */
.bg-primary-light { background-color: rgba(5, 10, 48, 0.05); }
.bg-secondary-light { background-color: rgba(255, 0, 144, 0.05); }
.bg-accent-light { background-color: rgba(0, 194, 209, 0.05); }

.solution-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--gray-mid);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes the link to the bottom so they all align perfectly */
}

/* Card Links */
.card-link {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.link-primary { color: var(--primary); }
.link-primary:hover { color: var(--accent); margin-left: 5px; }

.link-secondary { color: var(--secondary); }
.link-secondary:hover { color: var(--primary); margin-left: 5px; }

.link-accent { color: var(--accent); }
.link-accent:hover { color: var(--secondary); margin-left: 5px; }

/* Mobile Adjustments */
@media(max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
    .grid-4 { grid-template-columns: 1fr; }
}

/* --- HOMEPAGE: PARTNER LOGO TICKER --- */

.border-top {
    border-top: 1px solid var(--gray-light);
}

.ticker-wrapper {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

/* Fading edges for a premium look */
.ticker-wrapper::before, .ticker-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

/* The moving track */
.logo-track {
    display: inline-block;
    animation: scrollLogos 25s linear infinite;
}

/* Pauses the animation if the user hovers over it */
.logo-track:hover {
    animation-play-state: paused;
}

.logo-track img {
    height: 45px;
    margin: 0 40px;
    vertical-align: middle;
    /* Turns logos grey and slightly transparent */
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Lights the logo up on hover */
.logo-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* The infinite loop math (moves it precisely half its length) */
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media(max-width: 768px) {
    .logo-track img { height: 35px; margin: 0 20px; }
    .ticker-wrapper::before, .ticker-wrapper::after { width: 50px; }
}

/* --- HOMEPAGE: ANIMATED STATS --- */
.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block; /* Ensures the gradient text works perfectly */
}

/* --- EXPANDED FOOTER --- */
.site-footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 5% 30px 5%;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;              /* Locks the vertical size */
    width: auto;               /* Keeps the aspect ratio perfect */
    max-width: 100%;           /* Prevents it from overflowing on tiny mobile screens */
    object-fit: contain;       /* Absolutely prevents stretching or squishing */
    margin-bottom: 20px;
    
    /* Turns the blue logo pure white for the dark background */
    filter: brightness(0) invert(1); 
}

.brand-col p {
    line-height: 1.8;
    max-width: 90%;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

/* Small accent underline beneath footer headers */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px; /* Creates a slick slide-right effect on hover */
}

.footer-col a.color-accent {
    color: var(--accent);
    font-weight: 600;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* Custom Footer Contact Icons */
.footer-contact .contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 12px;
    flex-shrink: 0; /* Prevents the icon from squishing when text wraps on mobile */
    
    /* Forces the image file to render as pure white, regardless of its original color */
    filter: brightness(0) invert(1); 
    opacity: 0.7; /* Blends it seamlessly with the footer text opacity */
    transition: 0.3s ease;
}

/* Optional: Brightens the icon when hovering over the list item */
.footer-contact li:hover .contact-icon {
    opacity: 1; 
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    transition: 0.3s;
}

.legal-links a:hover {
    color: var(--bg-white);
}

/* Mobile Adjustments for Footer */
@media(max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .brand-col p { max-width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .legal-links a { margin: 0 10px; }
}

/* Ensure custom icons scale perfectly inside the solution cards */
.icon-wrapper img {
    width: 32px;               /* Keeps the icon contained within the 60px wrapper */
    height: 32px;
    object-fit: contain;       /* Prevents stretching */
    display: block;
}

/* Ensure the main images on the Services page scale appropriately */
.service-visual .service-image {
    width: auto;               /* Keeps the image aspect ratio perfect */
    height: 200px;             /* Increases the height to be impactful in the 350px box */
    max-width: 90%;            /* Leaves breathing room on the sides */
    object-fit: contain;       /* Absolutely prevents stretching */
    display: block;
}

@media(max-width: 768px) {
    .service-visual .service-image {
        height: 150px;         /* Slightly smaller on mobile screens */
    }
}

/* --- BLUEPRINT / PROCESS SECTION --- */

.process-wrapper {
    position: relative;
    margin-top: 50px;
}

/* The horizontal connecting line (Desktop) */
.process-line {
    position: absolute;
    top: 40px; /* Aligns perfectly with the center of the step icons */
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--secondary));
    z-index: 1;
    opacity: 0.3;
}

.process-step {
    background: var(--bg-white);
    padding: 40px 25px;
    border-radius: 16px;
    border: 1px solid var(--gray-light);
    text-align: center;
    position: relative;
    z-index: 2; /* Keeps the cards sitting above the line */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: var(--accent);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 1.8rem;
    font-weight: 700;
    /* The solid border acts as a visual cutout against the connecting line */
    border: 6px solid var(--bg-white); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--gray-mid);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media(max-width: 1024px) {
    .process-line { display: none; } /* Hides the line when cards stack vertically */
    .process-step { margin-bottom: 20px; }
}

/* Ensure Blueprint Icons scale correctly inside the circular container */
.step-icon .blueprint-icon {
    height: 40px;               /* Locks vertical size */
    width: auto;                /* Keeps aspect ratio perfect */
    object-fit: contain;        /* Absolute squish/stretch protection */
    display: block;
}

/* --- MOBILE MENU & HAMBURGER TOGGLE --- */

/* Hide the hamburger icon on desktop */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 100; /* Keeps it above the menu */
}

/* The 3 lines of the hamburger */
.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

/* Mobile-specific rules */
@media(max-width: 768px) {
    .mobile-menu-toggle {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hide the standard menu */
        flex-direction: column;
        position: absolute;
        top: 80px; /* Pushes it just below your logo/nav bar */
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        padding: 20px 0;
        text-align: center;
        z-index: 99;
    }

    /* This class is added by Javascript when clicked */
    .nav-links.active {
        display: flex; 
    }

    .nav-links li {
        margin: 15px 0; /* Spaces out the links for easy finger tapping */
    }
}

