:root {
    --primary-font: 'Poppins', sans-serif;
    --gray-bg: #e0e0e0;
    --main-white: #ffffff;
    --text-color: #333;
    --button-color: #FFC93C;
    --button-hover: #FFC93C;
}

/* Base Styles (Desktop First) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    color: var(--text-color);
    /* Background Image Properties */
    background-image: url('img/area51\ white.png'); /* Ensure this path is correct */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-color: var(--main-white); 
    
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* ---------------------------------- */
/* ## 🔑 Keyframe Animation */
/* ---------------------------------- */

@keyframes pulseFade {
    from {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Header */
header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px; 
}

/* Navigation */
.main-nav {
    width: 70%;
    max-width: 1000px;
    background-color: var(--main-white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Start hidden for page load animation */
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Main Nav Visibility controlled by JavaScript on page load */
.main-nav {
    opacity: 1;
    transform: translateY(0);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px; 
    width: auto; 
    display: block; 
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px 0;
    transition: color 0.3s, transform 0.2s ease-in-out; 
}

.nav-links a:hover {
    color: var(--button-color);
    transform: translateY(-2px); /* Subtle lift on hover */
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Hero Section Elements - Start hidden and positioned for fade-in (Scroll Reveal) */
.headline, .subheadline, .contact-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.headline {
    font-size: 2.8rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.2;
    transition-delay: 0.2s; /* Staggered timing */
}

.subheadline {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px;
    transition-delay: 0.4s; /* Staggered timing */
}

/* Contact Button */
.contact-btn {
    padding: 15px 40px;
    border: 2px solid var(--button-color);
    background-color: transparent;
    color: var(--button-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s; 
    transition-delay: 0.6s; /* Staggered timing */
}

/* ## SCROLL REVEAL VISIBILITY CLASS (Set by JavaScript) */
.headline.is-visible, 
.subheadline.is-visible, 
.contact-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* JavaScript Class for Hover */
.contact-btn.hover-active {
    background-color: var(--button-color);
    color: var(--main-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Subtle Background Design */
.background-design {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Initial transform is handled by JavaScript for Parallax */
    width: 400px;
    height: 400px;
    z-index: -1;
    /* Creating a subtle circle shape */
    background: radial-gradient(circle, rgba(200, 200, 200, 0.1) 0%, rgba(200, 200, 200, 0) 70%);

    /* Animation: Subtle slow pulse/fade for the background element */
    animation: pulseFade 4s infinite alternate;
}

/* ---------------------------------------------------------------------- */
/* ## 📱 Media Queries for Mobile Responsiveness */
/* ---------------------------------------------------------------------- */

@media (max-width: 900px) {
    .main-nav {
        width: 90%; 
        padding: 15px 20px;
    }
    
    .nav-links li {
        margin-left: 20px;
    }

    .headline {
        font-size: 2.2rem;
    }

    .subheadline {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    header {
        padding-top: 15px;
    }

    .main-nav {
        flex-direction: column; 
        border-radius: 20px;
        padding: 15px 15px 5px;
    }

    .logo-img {
        height: 45px; 
        margin-bottom: 10px;
    }

    .nav-links {
        flex-wrap: wrap; 
        justify-content: center; 
        width: 100%;
        padding-bottom: 10px;
    }

    .nav-links li {
        margin: 5px 10px; 
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .hero-section {
        padding: 60px 15px;
    }

    .headline {
        font-size: 1.8rem; 
    }

    .subheadline {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .contact-btn {
        padding: 12px 30px; 
        font-size: 0.9rem;
    }
    
    .background-design {
        width: 300px;
        height: 300px;
    }
}


/* ---------------------------------------------------------------------- */
/* ## Industries Section */
/* ---------------------------------------------------------------------- */
.industries-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--); /* Ensures this section has a solid background */
    width: 100%;
}

.industries-section .container {
    max-width: 1200px; /* Wider container for the grid */
    margin: 0 auto;
}

.industries-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--button-color); /* Matches the previous subtle dark color */
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    /* Animation initial state */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.industries-tagline {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.2;

    /* Animation initial state */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.1s; /* Staggered */
}

.industries-description {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;

    /* Animation initial state */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.2s; /* Staggered */
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Responsive grid */
    gap: 25px; /* Spacing between cards */
    margin-top: 40px;
    justify-content: center;
}

.industry-card {
    background-color: #FFE5F1; /* Light minty green background */
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover */
    cursor: pointer;

    /* Animation initial state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.industry-card:hover {
    transform: translateY(-5px); /* Lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px; /* Size of the SVG icons */
    height: 60px;
    margin-bottom: 15px;
    /* You might need to add fill/stroke color here if your SVGs don't define it */
    /* Example: filter: invert(30%) sepia(80%) saturate(600%) hue-rotate(150deg) brightness(90%); */
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* ---------------------------------------------------------------------- */
/* ## JavaScript Scroll Reveal Classes for Industries Section */
/* ---------------------------------------------------------------------- */

/* Target the text elements */
.industries-title.is-visible,
.industries-tagline.is-visible,
.industries-description.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Target the cards - each will have its own delay */
.industry-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------------------------------------------------- */
/* ## 📱 Media Queries for Mobile Responsiveness - UPDATED */
/* ---------------------------------------------------------------------- */

@media (max-width: 900px) {
    /* Existing rules... */

    .industries-tagline {
        font-size: 1.8rem;
    }
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller cards on tablet */
        gap: 20px;
    }
    .industry-card {
        padding: 25px 15px;
    }
    .card-icon {
        width: 50px;
        height: 50px;
    }
    .card-title {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    /* Existing rules... */

    .industries-section {
        padding: 60px 15px;
    }
    .industries-tagline {
        font-size: 1.5rem;
    }
    .industries-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    .industries-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
        gap: 15px;
    }
    .card-icon {
        width: 45px;
        height: 45px;
    }
    .card-title {
        font-size: 0.9rem;
    }
}


/* ---------------------------------------------------------------------- */
/* ## Products Section */
/* ---------------------------------------------------------------------- */
.products-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--); /* Use the light gray background */
    width: 100%;
}

.products-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--button-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    /* Animation initial state */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.products-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-color);
    line-height: 1.2;

    /* Animation initial state */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.1s;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: #FFE5F1; /* Light minty green background (like the card image) */
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Animation initial state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.product-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tag-label {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Tag Colors (Based on the image) */
.technology-tag { background-color: #fce8a6; } /* Yellowish */
.education-tag { background-color: #fce8a6; } /* Yellowish */
.business-tag { background-color: #fce8a6; } /* Yellowish */
.library-tag { background-color: #fce8a6; } /* Yellowish */


.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Rating Stars */
.product-rating {
    font-size: 1.2rem;
    color: #ffd700; /* Gold color for stars */
}

.product-rating .star.empty {
    color: #ccc; /* Light gray for empty stars */
}

.product-rating .rating-text {
    font-size: 0.9rem;
    color: #777;
    margin-left: 10px;
}

/* Browse Button */
.browse-btn {
    padding: 15px 40px;
    border: 2px solid var(--button-color);
    background-color: transparent;
    color: var(--button-color);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
}

.browse-btn:hover {
    background-color: var(--button-color);
    color: var(--main-white);
}

/* ---------------------------------------------------------------------- */
/* ## JavaScript Scroll Reveal Classes for Products Section */
/* ---------------------------------------------------------------------- */

/* Target the text elements */
.products-title.is-visible,
.products-tagline.is-visible,
.browse-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Target the cards - each will have its own delay */
.product-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------------- */
/* ## 📱 Media Queries for Mobile Responsiveness - UPDATED */
/* ---------------------------------------------------------------------- */

@media (max-width: 900px) {
    /* Existing rules... */

    .products-tagline {
        font-size: 1.5rem;
    }
    .products-grid {
        grid-template-columns: 1fr; /* Single column on tablet/mobile */
        gap: 20px;
    }
    .product-card {
        padding: 25px;
    }
    .product-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    /* Existing rules... */

    .products-section {
        padding: 40px 15px;
    }
    .products-tagline {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    .browse-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}


/*OUR PARTNERS*/
.section-header {
            text-align: center;
            margin-bottom: 40px;
            max-width: 1000px;
            padding: 0 20px;
        }

        .section-header h3 {
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #000000; /* Indigo */
            margin-bottom: 5px;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1f2937; /* Dark Gray */
            margin-top: 0;
        }
        
        /* Keyframe animation for continuous scrolling */
        @keyframes scroll-logos {
            /* Start at 0% translation (original position) */
            0% { transform: translateX(0); }
            /* End at -50% translation (moves the entire width of the original content set) */
            100% { transform: translateX(-50%); } 
        }

        /* Carousel container (The viewport) */
        .carousel-container {
            width: 90%;
            max-width: 1200px;
            overflow: hidden;
            padding: 30px 0;
            
           
        }

        /* Carousel track (Holds all the logos, including duplicates) */
        .carousel-track {
            display: flex;
            /* Ensures the track is wide enough to contain both sets of logos */
            width: max-content; 
            /* Apply the animation */
            animation: scroll-logos 55s linear infinite; 
        }
        
        /* Logo item wrapper */
        .logo-wrapper {
            /* Fix the width of each logo container */
            width: 200px; 
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            flex-shrink: 0; /* Prevents logos from shrinking below 200px */
            cursor: pointer;
        }
        
        .logo-wrapper img {
            max-width: 80%;
            height: auto;
            object-fit: contain;
            /* Default state: grayscale and slightly transparent */
            filter: grayscale(100%); 
            opacity: 0.6;
            transition: filter 0.5s, opacity 0.5s, transform 0.3s;
        }

        /* Hover effect */
        .logo-wrapper:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 768px) {
            .logo-wrapper {
                width: 150px; /* Make logos smaller on mobile */
            }
            .carousel-track {
                animation-duration: 18s; /* Speed up scroll on mobile */
            }
            .section-header h2 {
                font-size: 1.75rem;
            }
        }


        /*STATISTICS*/
        /* Stats container styling */
        .stats-container {
            width: 100%;
            max-width: 1200px;
            padding: 2rem 1rem;
            /* Using a subtle pattern for the background effect, similar to the image */
            background-image: radial-gradient(circle at 50% 50%, #f0f0f0 1px, transparent 1px),
                              radial-gradient(circle at 100% 100%, #f0f0f0 1px, transparent 1px);
            background-size: 80px 80px, 120px 120px;
        }

        .stat-value {
            /* Large, prominent size */
            font-size: clamp(2.5rem, 7vw, 4.5rem); 
            font-weight: 500;
            line-height: 1.1;
            margin-top: 0.5rem;
            color: #000000; /* Pure black text */
        }
        .stat-label {
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: clamp(0.75rem, 2vw, 0.9rem); 
            font-weight: 600;
            color: #4b5563; /* Dark gray for the label */
        }

        /* Responsive layout using Grid for even spacing and flexibility */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
            gap: 2rem;
        }
        @media (min-width: 640px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr); /* 4 columns on larger screens */
            }
        }

        /*FAQ SECTION*/
        .container {
            max-width: 1280px; /* Equivalent to max-w-6xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
        .lg-py-20 { padding-top: 5rem; padding-bottom: 5rem; }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem; /* gap-10 */
            align-items: flex-start;
        }
        @media (min-width: 1024px) { /* lg breakpoint */
            .faq-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .order-1-lg { order: 1; }
            .order-2-lg { order: 2; }
            .lg-sticky { position: sticky; }
            .lg-top-10 { top: 2.5rem; }
        }

        /* Heading/Description Column */
        .heading-box {
            padding: 1.25rem; /* p-5 */
            order: 1; 
        }

        .heading-tag {
            font-size: 0.875rem; /* text-sm */
            font-weight: 600;
            color: var(--color-primary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem; /* mb-2 */
        }

        .heading-title {
            font-size: 1.875rem; /* text-3xl */
            font-weight: 800;
            color: var(--color-text-dark);
            line-height: 1.25; /* leading-tight */
            margin-bottom: 1rem; /* mb-4 */
        }
        @media (min-width: 1024px) {
             .heading-title { font-size: 2.25rem; /* lg:text-4xl */ }
        }

        .heading-description {
            color: var(--color-text-medium);
            font-size: 1.125rem; /* text-lg */
        }

        /* Accordion Items Column */
        .faq-accordion-container {
            order: 2;
            display: flex;
            flex-direction: column;
            gap: 1rem; /* space-y-4 */
        }

        /* Individual FAQ Item */
        .faq-item {
            background-color: whitesmoke;
            border-radius: 0.75rem; /* rounded-xl */
            box-shadow: 0 10px 15px -3px rgba(132, 131, 131, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
            border: 1px solid var(--color-border);
            transition: all 0.3s ease;
        }

        .faq-item-header {
            cursor: pointer;
            padding: 1.25rem; /* p-5 */
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: background-color 0.3s;
        }
        
        .faq-item[aria-expanded="true"] .faq-item-header {
            background-color: var(--color-faq-bg); 
            border-radius: 0.75rem 0.75rem 0 0;
        }

        .faq-item-title {
            font-size: 1rem; /* text-base */
            font-weight: 600;
            color: var(--color-text-dark);
            max-width: 90%;
        }

        .faq-icon {
            width: 1.5rem; /* w-6 */
            height: 1.5rem; /* h-6 */
            color: var(--color-text-medium);
            transition: transform 0.3s;
        }

        .faq-item[aria-expanded="true"] .faq-icon {
            transform: rotate(180deg);
        }

        .faq-item-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 1.25rem; /* Initial padding-x */
        }

        .faq-item[aria-expanded="true"] .faq-item-content {
            padding-bottom: 1.5rem; /* pb-6 */
            max-height: 500px; /* Sufficient height for smooth transition */
        }

        .faq-answer {
            color: var(--color-text-medium);
            border-top: 1px solid var(--color-border);
            padding-top: 1rem; /* pt-4 */
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /*EVENTS AND NEWS*/
        :root {
            --color-primary: #4f46e5; /* Indigo-600 */
            --color-secondary: #fcd34d; /* Amber-400 for dates */
            --color-text-dark: #1f2937; /* Gray-800 */
            --color-text-medium: #4b5563; /* Gray-600 */
            --color-background-light: #f9fafb; /* Light Gray Background */
            --color-background-white: #ffffff;
            --color-border: #e5eeeb; /* Gray-200 */
            --color-shadow: rgba(0, 0, 0, 0.1);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--color-background-light);
            margin: 0;
            padding: 20px 0;
            line-height: 1.5;
        }

        /* Container and Layout */
        .container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
        .lg-py-20 { padding-top: 5rem; padding-bottom: 5rem; }

        /* Section Header Styling */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 1rem;
        }
        .section-tag {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text-dark);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }
        .section-title {
            font-size: 1.5rem; 
            font-weight: 800;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }
        @media (min-width: 768px) {
            .section-title { font-size: 2rem; }
        }

        /* Events Grid Styling */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2.5rem;
        }

        /* Event Card */
        .event-card {
            background-color: var(--color-background-white);
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px var(--color-shadow), 0 4px 6px -2px var(--color-shadow);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--color-border);
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px var(--color-shadow), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        /* Card Image */
        .event-image-container {
            height: 12rem; /* Fixed height for image area */
            overflow: hidden;
            border-bottom: 4px solid var(--color-primary); /* Visual separator */
        }
        .event-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .event-card:hover .event-image {
            transform: scale(1.05);
        }

        /* Date Marker (Circular) */
        .date-marker {
            position: absolute;
            top: 10.5rem; /* Position below the image */
            left: 1.5rem;
            width: 5.5rem; 
            height: 5.5rem;
            background-color: var(--color-secondary);
            border-radius: 50%;
            z-index: 10;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--color-text-dark);
            box-shadow: 0 5px 15px var(--color-shadow);
            border: 3px solid var(--color-background-white);
        }

        .date-day {
            font-size: 1.875rem;
            font-weight: 800;
            line-height: 1;
        }

        .date-month {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 1;
            margin-top: 0.25rem;
        }
        
        .event-content {
            padding: 3.5rem 1.5rem 1.5rem 1.5rem; /* Increased top padding to accommodate date marker */
        }

        .event-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--color-text-dark);
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .event-description {
            font-size: 0.95rem;
            color: var(--color-text-medium);
            margin-bottom: 1rem;
            min-height: 4.5rem;
        }

        .event-location {
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            color: var(--color-text-medium);
            font-weight: 600;
            border-top: 1px solid var(--color-border);
            padding-top: 1rem;
            margin-top: 0.5rem;
        }

        .location-icon {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
            stroke: var(--color-primary);
        }

        /* --- New CSS for Scroll Reveal Animation --- */

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}


/*PRODUCT PROMO*/
/* Basic Reset and Font */
body {
  font-family: 'Poppins', sans-serif; /* Use a font that matches the image */
    margin: 0;
    padding: 20px;
    background-color: #ffffff; /* Assuming a white background */
}

.product-promo-container {
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    text-align: center;
}

/* Header Styling */
header h1 {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Content Layout (Image and Text Side-by-Side) */
.content-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* Align to the top */
    gap: 40px;
    text-align: left;
}

/* Image Section */
.promo-image-section {
    flex: 0 0 50%; /* Take up 50% of the space */
    position: relative;
}

.promo-banner {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional subtle shadow */
}

/* Text Section */
.promo-text-section {
    flex: 1; /* Take up the remaining space */
    padding-top: 20px; /* Adjust alignment with the image */
}

.promo-text-section h2 {
    color: #c00000; /* Use a red color that matches the promo */
    font-size: 2.2em;
    margin-top: 0;
}

.promo-text-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.promo-text-section h3 {
    color: #333;
    font-size: 1.5em;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

.promo-text-section ul {
    list-style-type: none; /* Remove default bullet points */
    padding: 0;
}

.promo-text-section li {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    /* Custom bullet point (e.g., a green checkmark or star) */
}

.promo-text-section li::before {
    content: '★'; /* Or '✓' or a different symbol */
    color: gold; /* Change color to match the design */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation Keyframes */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply Animations to the Sections */
.promo-image-section {
    /* Existing CSS... */
    animation: slideInFromLeft 1s ease-out forwards;
}

.promo-text-section {
    /* Existing CSS... */
    animation: slideInFromRight 1s ease-out forwards 0.3s; /* 0.3s delay */
}

.feature-item {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.feature-item.is-visible {
    opacity: 1;
}

/*GUIDING YOU TO SUCCESS*/



   /*FOOTER*/
   
        
        