/* ======================= GLOBAL STYLES ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0C011E;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ======================= REUSABLE COMPONENTS ======================= */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #A855F7;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #9333ea;
}

.btn-secondary {
    background-color: #A855F7;
    color: #ffffff;
    padding: 8px 15px;
}

.btn-secondary:hover {
    background-color: #9333ea;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-outline {
    background-color: transparent;
    color: #A855F7;
    border-color: #A855F7;
}

.btn-outline:hover {
    background-color: #A855F7;
    color: #ffffff;
}

/* ======================= HEADER ======================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
    height: 40px;
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    display: flex;
    gap: 30px;
}

header nav ul a {
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav ul a:hover {
    color: #A855F7;
}

header .btn {
    margin-left: 30px;
}


/* ======================= HERO SECTION ======================= */
#hero {
    position: relative;
    background-image: linear-gradient(rgba(12, 1, 30, 0.7), rgba(12, 1, 30, 0.7)), url('../images/2025/04/congratulations-on-a-great-speech-e1694659533819.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding: 15vh 5% 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#hero .hero-content {
    text-align: left;
    max-width: 60%; /* This is the key fix to prevent overlap */
    flex-shrink: 0; /* Prevents the container from shrinking if window is narrow */
}

#hero .presenter {
    font-size: 1.2rem;
    font-weight: 500;
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin: 20px 0;
}

.hero-highlight {
    color: #34D399;
}

.hero-underline {
    position: relative;
    display: inline-block;
}

.hero-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3B82F6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

#hero h1:hover .hero-underline::after {
    transform: scaleX(1);
}

#hero .sponsors-block {
    margin-top: 50px;
}

#hero .sponsors-block h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

#hero .sponsor-logos {
    display: flex;
    align-items: center;
    gap: 40px;
}

#hero .sponsor-logos img {
    max-height: 80px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#hero .sponsor-logos img:hover {
    opacity: 1;
}

.event-info {
    position: absolute;
    bottom: 30px;
    right: 5%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* ======================= COUNTDOWN SECTION ======================= */
#countdown {
    padding: 60px 5%;
    background-color: #11052C; /* A slightly lighter purple shade */
    text-align: center;
}

#countdown h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time-box {
    background-color: #A855F7;
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 120px;
    color: #ffffff;
}

.time-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

/* ======================= LIGHT BACKGROUND SECTIONS ======================= */
#about, #speakers, #faq {
    background-color: #f7f5ff;
    color: #0C011E;
    padding: 100px 5%;
}

/* Common heading styles for light sections */
#about h2, #about h3,
#speakers h2,
#faq h2, #faq .question {
    color: #0C011E;
}

/* ======================= ABOUT SECTION ======================= */
#about {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.heading-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.heading-with-icon img {
    height: 50px;
    width: 50px;
}

/* ======================= SPEAKERS SECTION ======================= */
#speakers {
    text-align: center;
}

#speakers > p:first-of-type {
    text-transform: uppercase;
    font-weight: 500;
    color: #A855F7;
}

#speakers h2 {
    margin-top: 10px;
    margin-bottom: 50px;
}

.speaker-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.speaker-card {
    background-color: #0C011E;
    color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* ADD THIS LINE */
}

.speakers-btn-container {
    text-align: center;
    padding-top: 2rem; /* Adds space above the button */
    padding-bottom: 3rem; /* Adds space below the button */
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ======================= SPEAKER CARD TEXT REFINEMENTS ======================= */

/* This rule now correctly positions the text block at the top */
.speaker-info {
    padding: 25px;
    text-align: left; /* Aligns the text to the left as per the original design */
    /* The 'margin-top: auto;' is now removed */
}

/* This rule styles the name and title */
.speaker-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #A855F7; /* This sets the name color to purple */
}

.speaker-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4; /* Improves readability for multi-line titles */
}
/* .speaker-info {
    padding: 25px;
    margin-top: auto;
} */

/* (Speaker card hover effect styles are unchanged) */
.speaker-image-container { position: relative; }
.social-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: flex-end; gap: 15px; padding-bottom: 20px; background: rgba(12, 1, 30, 0.6); opacity: 0; transition: opacity 0.3s ease-in-out; }
.speaker-image-container:hover .social-overlay { opacity: 1; }
.social-icon { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; background-color: #34D399; color: #ffffff; border-radius: 50%; font-size: 1.1rem; transform: translateY(-20px); transition: all 0.3s ease-in-out; }
.speaker-image-container:hover .social-icon { transform: translateY(0); }
.social-icon:hover { background-color: #A855F7; transform: scale(1.1); }
.social-icon:nth-child(2) { transition-delay: 0.1s; }
.social-icon:nth-child(3) { transition-delay: 0.2s; }

/* ======================= SCHEDULE SECTION ======================= */
#schedule {
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#schedule h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.schedule-day {
    background-color: #0C011E;
    color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1000px;
}

/* Find and replace this rule in your main CSS (not in the media query) */
.schedule-image {
    flex-shrink: 0;
    width: 280px;
    background-size: cover; /* This is the key property that prevents stretching */
    background-position: center;
}

#day-one-img { background-image: url('../images/2025/04/1113.jpg'); }
#day-two-img { background-image: url('../images/2025/04/24337.jpg'); }
#day-three-img { background-image: url('../images/2025/04/44046.jpg'); }

.schedule-content {
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-meta {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.schedule-meta i {
    color: #34D399;
    margin-right: 8px;
}

.schedule-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.schedule-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-content ul li:last-child {
    border-bottom: none;
}

.schedule-content .btn {
    margin-top: 25px;
    align-self: flex-start; /* ADD THIS LINE */
}

#schedule > .btn {
    margin-top: 20px;
}

/* ======================= CTA SECTION STYLES ======================= */

#cta {
    position: relative; /* Crucial for positioning .cta-background and .cta-content */
    display: flex; /* We'll use flex to position the content */
    align-items: flex-end; /* Sticks content to the bottom */
    justify-content: flex-start; /* Sticks content to the left */
    min-height: 80vh; /* Make the section taller to see the bottom alignment */
    padding: 0 5% 50px 5%; /* Adjusted padding: no top/bottom padding here, add to cta-content */
    overflow: hidden; /* Ensures image and content stay within bounds */

    /* Light overlay directly on the section */
    background-color: rgba(12, 1, 30, 0.4); /* Lighter, less purple overlay */
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/2025/04/cinematic-image-of-a-conference-meeting-1-1-e1694680895947.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keep parallax */
    filter: brightness(1.2); /* Make the image brighter */
    z-index: -1; /* Puts the background behind the content */
}

/* --- The glass card (cta-content) --- */
.cta-content {
    /* The "Glassmorphism" effect */
    background: rgba(255, 255, 255, 0.05); /* Very transparent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);

    padding: 40px;
    max-width: 600px; /* Constrain the width of the card */
    text-align: left; /* Align the text inside the card to the left */
    
    position: relative; /* Important for z-index, but might not be strictly needed here */
    z-index: 1; /* Ensures the content is above the background */
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff; /* Ensure heading is white */
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ======================= FAQ SECTION STYLES ======================= */

#faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* This is the container we added to center the whole list */
.faq-container {
    max-width: 800px; /* Constrains the width of the FAQ list */
    margin: 0 auto;   /* Centers the container on the page */
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
}

.faq-item summary { /* We can style the summary tag directly */
    font-weight: 600; /* Bolder question text */
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hides the default browser marker */
}

/* This removes the default marker in Chrome/Safari */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* This is our new, clean CSS chevron arrow */
.faq-item summary::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #555; /* Dark gray border */
    border-right: 2px solid #555;
    transform: rotate(45deg); /* Rotates the shape to point down */
    transition: transform 0.3s ease-out;
}

/* This rule targets the arrow when the details element is open */
.faq-item[open] > summary::after {
    transform: rotate(225deg); /* Rotates the shape to point up */
}

.faq-item .answer {
    padding-top: 15px;
    line-height: 1.7;
    color: #555; /* A slightly lighter color for the answer text */
}

/* ======================= ABOUT SECTION REFINEMENTS ======================= */
.about-btn-container {
    text-align: center; /* This will center the button inside the container */
    margin-top: 40px;   /* This adds plenty of space from the text above */
}

/* ======================= FOOTER STYLES (FINAL POLISHED VERSION) ======================= */

footer {
    background: radial-gradient(circle at 20% 100%, rgba(168, 85, 247, 0.2), transparent 30%), #0C011E;
    padding: 60px 5% 30px;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Helper Class to Center Each Footer Row --- */
.footer-row-container {
    width: 100%;
    max-width: 1100px;  /* This constrains the width of the content */
    margin: 0 auto;     /* This centers the container on the page */
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
    display: flex;
    flex-wrap: wrap;
}

/* --- Top Row: About & Subscribe --- */
.footer-content {
    align-items: center;
    justify-content: center; /* Groups the items in the center */
    gap: 100px;             /* Creates a large, defined space between items */
}

.footer-about {
    flex-basis: 350px;
    text-align: left;
}
.footer-about img { height: 50px; margin-bottom: 15px; }

.footer-subscribe {
    flex-basis: 400px;
    text-align: left;
}
.footer-subscribe h3 { font-weight: 600; margin-bottom: 15px; color: #ffffff; }
.footer-subscribe form { display: flex; }
.footer-subscribe input { width: 100%; padding: 12px 15px; border: none; border-radius: 50px 0 0 50px; outline: none; color: #333; }
.footer-subscribe .btn { border-radius: 0 50px 50px 0; }

/* --- Middle Row: Link Columns --- */
.footer-links {
    align-items: flex-start;
    justify-content: center; /* Groups the columns in the center */
    gap: 80px;              /* Creates generous space between columns */
}

.links-column {
    min-width: 180px;
    text-align: left;
}
.links-column h4 { color: #ffffff; font-weight: 600; margin-bottom: 20px; }
.links-column ul li { margin-bottom: 12px; }
.links-column a:hover { color: #A855F7; }

/* --- Footer Contact Items --- */
.contact-item { display: flex; align-items: center; margin-bottom: 20px; }
.contact-icon { display: flex; justify-content: center; align-items: center; width: 50px; height: 50px; background-color: #11052C; border-radius: 10px; margin-right: 15px; color: #34D399; font-size: 1.2rem; }
.contact-text { display: flex; flex-direction: column; text-align: left; }
.contact-text span { font-size: 0.9rem; opacity: 0.7; margin-bottom: 2px; }
.contact-text a { color: #ffffff; font-weight: 500; }
.contact-text a:hover { color: #A855F7; }

/* --- Bottom Row: Copyright --- */
.footer-bottom {
    border-bottom: none;
    padding-top: 30px;
    padding-bottom: 0;
    justify-content: space-between; /* Pushes the two items apart */
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ======================= SPEAKER INTRO SECTION ======================= */
#speaker-intro {
    background-color: #0C011E; /* Light background */
    color: #ffffff;           /* Dark text */
    padding: 100px 5%;
    overflow: hidden; /* To contain the decorative blob */
}

.intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    flex-basis: 50%;
    max-width: 600px;
}

.intro-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* This is for the hover underline effect */
.intro-highlight {
    position: relative;
    display: inline-block;
}

.intro-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Position the line slightly below the text */
    left: 0;
    width: 100%;
    height: 4px; /* Make the line a bit thicker */
    background-color: #34D399; /* The green color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

/* On h1 hover, the underline scales to 100% */
.intro-text h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.intro-image {
    flex-basis: 40%;
    max-width: 400px;
    position: relative; /* Needed for the pseudo-element blob */
}

/* The decorative blob behind the image */
.intro-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #A855F7; /* Purple color for the blob */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; /* Blob shape */
    animation: morph 8s ease-in-out infinite; /* Morphing animation */
    z-index: 1;
    opacity: 0.2;
}

.intro-image img {
    border-radius: 20px;
    position: relative;
    z-index: 2; /* Ensure image is on top of the blob */
    width: 100%;
}

/* Animation for the morphing blob */
@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* ======================= ALL SPEAKERS GRID PAGE (CORRECTED) ======================= */
#all-speakers {
    padding: 100px 5%;
    background-color: #f7f5ff;
}

.speaker-grid-full {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px; /* Constrains the overall width of the grid */
    margin: 0 auto;    /* Centers the grid container */
}

/* ======================= CTA BANNER ======================= */
#cta-banner {
    background: linear-gradient(rgba(12, 1, 30, 0.7), rgba(12, 1, 30, 0.7)), url('../images/man-with-headset.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 5%;
    text-align: center;
    color: #ffffff;
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ======================= PRICING SECTION (CORRECTED WITH WHITE BACKGROUND) ======================= */
#pricing {
    padding: 100px 5%;
    background-color: #f7f5ff; /* Changed to the light background color */
    text-align: center;
    color: #0C011E; /* Set default text color for the section */
}

#pricing .container {
    max-width: 1100px;
    margin: 0 auto;
}

#pricing .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0C011E; /* Ensure heading is dark */
}

#pricing .section-subtitle {
    margin-bottom: 50px;
    opacity: 0.8;
    color: #555; /* Subtitle color */
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

.pricing-card {
    background-color: #ffffff; /* Make pricing cards white */
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #e0e0e0; /* Add a light border */
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #A855F7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Add a subtle shadow on hover */
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0C011E; /* Dark text for headings */
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: #A855F7;
    margin-bottom: 30px;
}

.features-list {
    text-align: left;
    margin-bottom: 40px;
    color: #555; /* Dark gray for feature text */
}

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

.features-list i {
    width: 20px;
    margin-right: 10px;
}

.features-list .fa-check { color: #34D399; }
.features-list .fa-times { color: #ef4444; opacity: 0.5; }

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* --- Styles for the highlighted card remain largely the same --- */
.pricing-card.highlighted {
    background-color: #A855F7;
    color: #ffffff; /* Text color is white */
    transform: scale(1.05);
    border-color: #A855F7;
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.highlighted h3 {
    color: #ffffff; /* White heading */
}

.pricing-card.highlighted .price {
    color: #ffffff; /* White price */
}

.pricing-card.highlighted .features-list {
    color: rgba(255, 255, 255, 0.9); /* Lighter feature text */
}

.pricing-card.highlighted .btn {
    background-color: #ffffff;
    color: #A855F7;
}

.pricing-card.highlighted .btn:hover {
    background-color: #f0f0f0;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #34D399;
    color: #0C011E;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ======================= SPONSOR INTRO SECTION ======================= */
#sponsor-intro {
    background-color: #0C011E; /* Dark background */
    color: #ffffff;
    padding: 100px 5%;
    overflow: hidden;
}

#sponsor-intro .intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

#sponsor-intro .intro-text {
    flex-basis: 50%;
    max-width: 600px;
}

#sponsor-intro .intro-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase; /* As per the screenshot */
}

/* Reusing the hover effect class from the speakers page */
#sponsor-intro .intro-text h1:hover .intro-highlight::after {
    transform: scaleX(1);
}


#sponsor-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

#sponsor-intro .intro-image {
    flex-basis: 40%;
    max-width: 450px;
}

#sponsor-intro .intro-image img {
    border-radius: 20px;
    width: 100%;
}


/* ======================= SPONSORSHIP PRICING ======================= */
#sponsorship-pricing {
    padding: 100px 5%;
    background-color: #f7f5ff; /* Light background */
    text-align: center;
}

#sponsorship-pricing .container {
    max-width: 1200px;
    margin: 0 auto;
}

#sponsorship-pricing .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0C011E;
}

#sponsorship-pricing .section-subtitle {
    margin-bottom: 60px;
    opacity: 0.8;
    color: #555;
}

.sponsorship-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

.sponsorship-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    max-width: 380px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsorship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.sponsorship-card .card-header {
    padding: 30px;
    color: #ffffff;
}

.sponsorship-card .card-header.platinum { background: linear-gradient(45deg, #4c51bf, #667eea); }
.sponsorship-card .card-header.gold { background: linear-gradient(45deg, #d69e2e, #f6e05e); }
.sponsorship-card .card-header.silver { background: linear-gradient(45deg, #9ca3af, #e5e7eb); }


.sponsorship-card .card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.sponsorship-card .price {
    font-size: 2.5rem;
    font-weight: 700;
}

.sponsorship-card .card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
    color: #555;
}

.sponsorship-card .card-body .features-list {
    margin-bottom: 30px;
}

.sponsorship-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ======================= DELEGATE INTRO SECTION ======================= */
#delegate-intro {
    background-color: #0C011E;
    color: #ffffff;
    padding: 100px 5%;
    overflow: hidden;
}

#delegate-intro .intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

#delegate-intro .intro-text {
    flex: 1;
    max-width: 500px;
}

#delegate-intro .intro-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#delegate-intro .intro-text h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

#delegate-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.group-discounts {
    flex: 1;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
}

.group-discounts h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #A855F7;
}

.group-discounts p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.group-discounts table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.group-discounts th, .group-discounts td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.group-discounts th {
    font-weight: 600;
    opacity: 0.9;
}

.group-discounts tr:last-child td {
    border-bottom: none;
}

.group-discounts .note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 20px;
    margin-bottom: 0;
}

/* ======================= DELEGATE PRICING ======================= */
#delegate-pricing {
    padding: 100px 5%;
    background-color: #f7f5ff;
    text-align: center;
}

#delegate-pricing .container {
    max-width: 1200px;
    margin: 0 auto;
}

#delegate-pricing .section-title {
    color: #0C011E;
}

#delegate-pricing .section-subtitle {
    color: #555;
    margin-bottom: 60px;
}

.delegate-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

.delegate-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    max-width: 380px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #0C011E;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delegate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.delegate-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.delegate-card .price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #A855F7;
    margin-bottom: 15px;
}

.delegate-card .card-description {
    color: #555;
    margin-bottom: 30px;
    min-height: 60px; /* Helps align cards */
}

.delegate-card .features-list {
    margin-bottom: 30px;
    color: #555;
}

.delegate-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ======================= BOOTH INTRO SECTION ======================= */
#booth-intro {
    background-color: #0C011E;
    color: #ffffff;
    padding: 100px 5%;
    overflow: hidden;
}

#booth-intro .intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

#booth-intro .intro-text {
    flex: 1;
    max-width: 500px;
}

#booth-intro .intro-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#booth-intro .intro-text h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

#booth-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.organizer-provisions {
    flex: 1;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
}

.organizer-provisions h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #A855F7;
}

.organizer-provisions ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.organizer-provisions li {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.5;
}

.organizer-provisions .note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 20px;
    margin-bottom: 0;
}


/* ======================= BOOTH PRICING ======================= */
#booth-pricing {
    padding: 100px 5%;
    background-color: #f7f5ff;
    text-align: center;
}

#booth-pricing .container, #floor-plan .container {
    max-width: 1200px;
    margin: 0 auto;
}

#booth-pricing .section-title, #floor-plan .section-title, #contact-form-section .section-title {
    color: #0C011E;
}

#booth-pricing .section-subtitle, #floor-plan .section-subtitle {
    color: #555;
    margin-bottom: 60px;
}

.booth-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

.booth-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    max-width: 380px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #0C011E;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booth-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.booth-card h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.booth-card .size {
    font-size: 2.8rem;
    font-weight: 700;
    color: #A855F7;
    margin-bottom: 15px;
}

.booth-card .card-description {
    color: #555;
    margin-bottom: 30px;
    min-height: 60px;
}

.booth-card .features-list {
    margin-bottom: 30px;
    color: #555;
}

.booth-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ======================= FLOOR PLAN CAROUSEL ======================= */
#floor-plan {
    padding: 100px 5% 80px; /* Add bottom padding */
    background-color: #f7f5ff;
    text-align: center;
}

.floor-plan-swiper .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.floor-plan-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floor-plan-swiper .swiper-pagination {
    position: static; /* Let it sit below the carousel */
    margin-top: 2rem;
}

/* ======================= SCHEDULE INTRO SECTION ======================= */
#schedule-intro {
    background-color: #0C011E;
    color: #ffffff;
    padding: 100px 5%;
    overflow: hidden;
}

#schedule-intro .intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

#schedule-intro .intro-text {
    flex: 1;
    max-width: 500px;
}

#schedule-intro .intro-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

#schedule-intro .intro-text h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

#schedule-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.core-subjects {
    flex: 1;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
}

.core-subjects h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #A855F7;
}

.core-subjects ul {
    list-style-type: decimal;
    padding-left: 20px;
}

.core-subjects li {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* ======================= FULL SCHEDULE TABS ======================= */
#full-schedule {
    padding: 100px 5%;
    background-color: #f7f5ff;
    color: #0C011E;
}

#full-schedule .container {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background-color: transparent;
    color: #555;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.tab-btn:hover {
    background-color: #f0e6ff;
}

.tab-btn.active {
    background-color: #A855F7;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

.tab-btn small {
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.8;
}

.schedule-content-panel {
    display: none;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}

.schedule-content-panel.active {
    display: block;
}

.schedule-item {
    display: flex;
    padding: 25px 30px;
    border-bottom: 1px solid #eef2f7;
}

.schedule-item:last-child {
    border-bottom: none;
}

.item-time {
    flex-basis: 180px;
    flex-shrink: 0;
    font-weight: 600;
    color: #A855F7;
    padding-right: 20px;
}

.item-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.item-details p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* ======================= ABOUT INTRO SECTION (REVISED LAYOUT) ======================= */
#about-intro {
    background-color: #0C011E;
    color: #ffffff;
    padding: 100px 5%;
    overflow: hidden;
}

#about-intro .intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left side heading */
#about-intro .intro-heading {
    flex: 1;
    max-width: 650px;
}

#about-intro .intro-heading h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
}

#about-intro .intro-heading h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

/* Right side details (paragraph + stats) */
#about-intro .intro-details {
    flex: 1;
    max-width: 450px;
}

#about-intro .intro-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

#about-intro .intro-stats {
    display: flex;
    gap: 50px; /* Space between the two stat items */
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #A855F7;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* ======================= INNOVATION & IMPACT SECTION ======================= */
#innovation-impact {
    padding: 100px 5%;
    background-color: #0C011E;
}

.impact-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-text-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.impact-card {
    padding: 30px;
    border-radius: 15px;
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.impact-card.light {
    background-color: #f7f5ff;
    color: #0C011E;
}

.impact-card.dark {
    background-color: #11052C;
    color: #ffffff;
}

.impact-card.light h3 {
    color: #A855F7;
}

.impact-card.dark h3 {
    color: #34D399; /* Green for contrast */
}

.impact-card ul {
    list-style-type: none;
    padding-left: 0;
}

.impact-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.impact-card ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #34D399; /* Green tick */
    font-weight: bold;
}

.impact-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.impact-image {
    flex: 1;
    max-width: 500px;
}

.impact-image img {
    width: 100%;
    border-radius: 20px;
}

/* ======================= BLOG INTRO SECTION ======================= */
#blog-intro {
    background-color: #0C011E;
    color: #ffffff;
    padding: 100px 5%;
}

#blog-intro .intro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

#blog-intro .intro-text {
    flex: 1;
}

#blog-intro .intro-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

#blog-intro .intro-text h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

.newsletter-signup {
    flex: 1;
    max-width: 500px;
}

.newsletter-signup p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    border-radius: 50px;
    background-color: #ffffff;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.subscribe-form input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 1rem;
    color: #0C011E;
    outline: none;
}

.subscribe-form .btn {
    flex-shrink: 0;
}


/* ======================= BLOG GRID SECTION ======================= */
#blog-grid-section {
    padding: 100px 5%;
    background-color: #f7f5ff;
}

.blog-grid {
    display: grid;
    /* This creates responsive columns that are at least 350px wide */
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-post-card .card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-post-card .card-content {
    padding: 25px;
    color: #0C011E;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Makes the card content fill the available space */
}

.post-meta {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.post-meta a {
    color: #A855F7;
    font-weight: 600;
}

.post-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-title a {
    color: #0C011E;
}
.post-title a:hover {
    color: #A855F7;
}

.post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
    color: #A855F7;
    margin-top: auto; /* This pushes the link to the bottom */
}

/* ======================= CONTACT INTRO SECTION (REVISED LAYOUT & COLORS) ======================= */
#contact-intro {
    background-color: #0C011E;
    color: #ffffff;
    padding: 100px 5%;
}

#contact-intro .intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

#contact-intro .intro-heading {
    flex: 1;
}

#contact-intro .intro-heading h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

#contact-intro .intro-heading h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

/* This is now the LIGHT box */
.help-box {
    background-color: #f7f5ff;
    color: #0C011E;
    padding: 40px;
    border-radius: 20px;
}

.help-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #A855F7;
}

.help-box p {
    color: #555; /* Set dark text color for the paragraph */
}

#contact-intro .intro-quote {
    flex: 1;
    max-width: 450px;
}

/* This is now the DARK box */
.quote-box {
    background-color: #11052C;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
}

.quote-box p {
    font-style: italic;
    color: #ffffff; /* Ensure text is white */
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.1rem;
}

.quote-box img {
    height: 30px;
    opacity: 0.8; /* Slightly increase opacity on dark background */
}

/* ======================= CONTACT DETAILS SECTION ======================= */
#contact-details {
    padding: 100px 5%;
    background-color: #f7f5ff;
}

#contact-details .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: -120px auto 0; /* Negative margin to pull it up */
    position: relative;
    z-index: 3;
}

.contact-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    flex: 1 1 300px;
    max-width: 380px;
}

.contact-icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e6f7f2;
    color: #34D399;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background-color: #f3e8ff;
    color: #A855F7;
    transform: translateY(-5px);
}

.contact-card h3 {
    color: #0C011E;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card p, .contact-card a {
    color: #555;
    line-height: 1.7;
    display: block;
}

.contact-card a:hover {
    color: #A855F7;
}

/* ======================= MAP SECTION ======================= */
#map-section {
    line-height: 0;
}
#map-section iframe {
    width: 100%;
    height: 550px; /* Increased height */
    border: 0;
    display: block; /* Prevents extra space */
}

/* ======================= CONTACT FORM SECTION (FINAL FIX) ======================= */
#contact-form-section {
    padding: 100px 5%;
    background-color: #f7f5ff;
}

#contact-form-section .container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

#contact-form-section .section-title {
    text-align: center;
    color: #0C011E;
    margin-bottom: 40px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #0C011E;
    font-weight: 500;
    margin-bottom: 8px;
    display: block; /* Ensures label takes its own line */
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    height: 48px; /* *** THIS IS THE KEY FIX FOR HEIGHT & OVERLAP *** */
    color: #333;
}

/* Fix for placeholder text visibility in date/file inputs */
.form-group input[type="date"],
.form-group input[type="file"] {
    line-height: 22px; /* Vertically centers the text inside the input */
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #A855F7;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

.purpose-group .radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 10px; /* Add some space for alignment */
}
.purpose-group .radio-options label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* This targets the submit button specifically */
.contact-form .btn {
    width: 100%;
    /* The default padding from .btn is now correctly applied, no .btn-large needed */
}

/* ======================= REGISTRATION PAGE ======================= */
#registration-page {
    background-color: #f7f5ff;
    padding: 100px 5%;
}

#registration-page .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* --- Left Side Chooser --- */
.registration-chooser {
    flex-basis: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 100px; /* Sticks below the header */
}

.registration-chooser h2 {
    color: #0C011E;
    margin-bottom: 20px;
}

.chooser-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chooser-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border: 2px solid transparent;
    background-color: #ffffff;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    color: #555;
    transition: all 0.3s ease;
}

.chooser-btn i {
    font-size: 1.2rem;
    width: 25px;
    color: #A855F7;
}

.chooser-btn:hover {
    border-color: #A855F7;
    color: #0C011E;
}

.chooser-btn.active {
    background-color: #A855F7;
    color: #ffffff;
    border-color: #A855F7;
}
.chooser-btn.active i {
    color: #ffffff;
}

/* --- Right Side Forms --- */
.registration-forms {
    flex-grow: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.registration-form {
    display: none; /* Hidden by default */
}

.registration-form.active {
    display: block; /* Shown when active */
}

.registration-form h3 {
    color: #0C011E;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

/* ======================= OBJECTIVE STATEMENT PAGE ======================= */
#objective-intro {
    background-color: #0C011E;
    padding: 80px 5%;
    text-align: center;
}

#objective-intro h1 {
    font-size: 3.5rem;
    color: #ffffff;
}

#objective-intro h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

#objective-content {
    background-color: #f7f5ff;
    padding: 100px 5%;
    color: #0C011E;
}

#objective-content .container {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

#objective-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#objective-content p {
    margin-bottom: 1.5rem;
}

#objective-content ul {
    list-style-type: none;
    padding-left: 0;
}

#objective-content ul li {
    position: relative;
    padding-left: 30px; /* Space for the icon */
    margin-bottom: 1rem;
}

#objective-content ul li::before {
    content: '✔'; /* You can use other icons like →, •, etc. */
    position: absolute;
    left: 0;
    top: 5px;
    color: #34D399; /* Green tick color */
    font-weight: bold;
}

/* ======================= TERMS AND CONDITIONS PAGE ======================= */
#terms-intro {
    background-color: #0C011E;
    padding: 80px 5%;
    text-align: center;
}

#terms-intro h1 {
    font-size: 3.5rem;
    color: #ffffff;
}

#terms-intro h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

#terms-content {
    background-color: #f7f5ff;
    padding: 100px 5%;
    color: #0C011E;
}

#terms-content .container {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

#terms-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#terms-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

#terms-content p {
    margin-bottom: 1rem;
}

#terms-content ul {
    list-style-type: none;
    padding-left: 0;
}

#terms-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
}

#terms-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #A855F7; /* Purple bullet point */
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* ======================= PRIVACY POLICY PAGE ======================= */
#privacy-intro {
    background-color: #0C011E;
    padding: 80px 5%;
    text-align: center;
}

#privacy-intro h1 {
    font-size: 3.5rem;
    color: #ffffff;
}

#privacy-intro h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

#privacy-content {
    background-color: #f7f5ff;
    padding: 100px 5%;
    color: #0C011E;
}

#privacy-content .container {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

#privacy-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#privacy-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

#privacy-content p {
    margin-bottom: 1rem;
}

#privacy-content ul {
    list-style-type: none;
    padding-left: 0;
}

#privacy-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
}

#privacy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #A855F7; /* Purple bullet point */
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* ======================= DISCLAIMER PAGE ======================= */
#disclaimer-intro {
    background-color: #0C011E;
    padding: 80px 5%;
    text-align: center;
}

#disclaimer-intro h1 {
    font-size: 3.5rem;
    color: #ffffff;
}

#disclaimer-intro h1:hover .intro-highlight::after {
    transform: scaleX(1);
}

#disclaimer-content {
    background-color: #f7f5ff;
    padding: 100px 5%;
    color: #0C011E;
}

#disclaimer-content .container {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

#disclaimer-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#disclaimer-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

#disclaimer-content p {
    margin-bottom: 1rem;
}

#disclaimer-content .signature {
    margin-top: 3rem;
    font-style: italic;
}



/* ======================= RESPONSIVE STYLES (TABLET & MOBILE) (CORRECTED) ======================= */
/* This should be outside and before your @media query */

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ADD THIS RULE */
.menu-toggle-btn {
    display: none; /* This hides the hamburger on desktop by default */
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {

    /* 1. Hide the desktop navigation menu links by default */
    header nav ul {
        display: none;
    }

    /* 2. Show the hamburger menu button */
    .menu-toggle-btn {
        display: block;
    }

    /* --- This is the new, corrected logic for the dropdown menu --- */
    
    /* Style the nav container itself for when it becomes the dropdown */
    header nav {
        display: block; /* Make sure the container is visible */
        position: absolute;
        top: 70px; /* Position it just below the header (adjust if your header height changed) */
        left: 0;
        width: 100%;
        background-color: #0C011E;
        z-index: 100; /* Ensure it appears on top of other content */

        /* By default, the menu is hidden off-screen */
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s;
    }

    /* When JavaScript adds the .menu-open class, slide it into view */
    header nav.menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Re-style the UL to be a vertical list inside the dropdown */
    header nav.menu-open ul {
        display: flex; /* Turn it back on */
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    
    header nav.menu-open ul li {
        width: 100%;
    }
    
    header nav.menu-open ul a {
        display: block;
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }

    #hero {
    height: auto; /* Allows the section to grow with its content */
    padding: 120px 5% 80px; /* Use padding for spacing instead of fixed height */
    }

    #hero h1 {
        font-size: 2.5rem; /* Reduce font size for smaller screens */
        max-width: 600px;
    }

    #hero .sponsors-block {
        margin-top: 40px;
    }

    .event-info {
        position: static; /* Un-stick the event box */
        transform: none;
        margin: 40px auto 0; /* Center it with a top margin */
        text-align: left;
    }

    /* --- Responsive About Section --- */
    #about {
        flex-direction: column; /* Stack the image and text vertically */
        text-align: center; /* Center-align the text */
    }

    .about-content {
        text-align: left; /* Keep paragraphs left-aligned for readability */
    }

    .about-btn-container {
        text-align: center; /* Re-center the button in the new layout */
    }


    /* --- Responsive Speakers Section --- */
    .speaker-grid {
        gap: 20px; /* Reduce the gap between cards on smaller screens */
    }


    /* --- Responsive Schedule Section --- */
    .schedule-day {
        flex-direction: column; /* Stack the image and content vertically */
    }

    .schedule-image {
        width: 100%; /* Make the image full-width of the card */
        height: 200px; /* Give it a fixed height */
    }


    /* --- Responsive CTA Section --- */
    #cta {
        justify-content: center; /* Center the glass card */
        text-align: center; /* Center the text inside the card */
    }

    .cta-content {
        text-align: left; /* Keep paragraphs left-aligned */
    }

    /* --- Responsive Footer --- */
    .footer-content, .footer-links {
        justify-content: center; /* Center the columns */
        text-align: center;
    }

    .links-column, .footer-about, .footer-subscribe {
        text-align: left; /* Ensure text within columns remains left-aligned */
        min-width: 220px; /* Give columns a bit more space */
    }

    /* --- Responsive Speaker Intro --- */
    .intro-container {
        flex-direction: column;
        text-align: center;
    }

    .intro-text h1 {
        font-size: 2.8rem;
    }

    .intro-image {
        width: 80%;
        max-width: 400px;
        margin-top: 40px;
    }

    /* --- Responsive About Intro & Impact Sections (Corrected) --- */
    #about-intro .intro-container,
    .impact-container {
        flex-direction: column;
        text-align: center;
    }

    /* New styles for the revised intro layout */
    #about-intro .intro-heading {
        margin-bottom: 30px;
    }

    #about-intro .intro-stats {
        justify-content: center;
    }

    /* Kept the original styles for the impact section */
    .impact-image {
        margin-top: 40px;
        order: -1; /* Move image to the top on mobile */
    }

    /* --- Responsive Blog Intro --- */
    #blog-intro .intro-container {
        flex-direction: column;
        text-align: center;
    }
    #blog-intro .intro-text {
        margin-bottom: 40px;
    }

    /* --- Responsive Contact Page --- */
    .quote-box {
        position: static;
        margin: 0 auto 30px;
    }

    #contact-details .container {
        margin-top: 50px;
    }

    .contact-form {
        grid-template-columns: 1fr; /* Stack form fields */
    }
}

/* ======================= RESPONSIVE STYLES (MOBILE) ======================= */

@media (max-width: 768px) {

    /* --- General Adjustments --- */
    body {
        font-size: 14px; /* Slightly reduce the base font size on mobile */
    }
    
    /* --- Mobile Header --- */
    header {
        padding: 12px 3%;
    }

    /* --- Mobile Hero Section --- */
    #hero {
        padding: 80px 5% 60px; /* Adjust padding */
    }

    #hero h1 {
        font-size: 1.8rem; /* Further reduce heading size for phones */
    }

    #hero .sponsors-block {
        align-items: center; /* Center the logos when they stack */
    }

    #hero .sponsor-logos {
        justify-content: center; /* Center the group of logos */
        flex-wrap: wrap; /* ADD THIS LINE */
    }


    /* --- Mobile About, Speakers, CTA Sections --- */
    #about, #speakers, #cta {
        padding: 60px 5%;
    }
    
    #about h2, #speakers h2, #cta h2 {
        font-size: 2rem; /* Reduce section heading sizes */
    }

    /* --- Mobile Schedule Section --- */
    #schedule {
        padding: 60px 5%;
    }
    #schedule h2 {
        font-size: 2rem;
    }
    .schedule-day {
        /* On mobile, let's make the cards a bit simpler */
        max-width: 100%;
    }
    
    /* --- Mobile FAQ Section --- */
    #faq {
        padding: 60px 8%;
    }
    
    /* --- Mobile Footer --- */
    .footer-content, .footer-links {
        flex-direction: column; /* Stack the columns vertically */
        align-items: center; /* Center-align the stacked columns */
        text-align: center;
        gap: 40px;
    }
    .links-column, .footer-about, .footer-subscribe {
        text-align: center; /* Center text inside columns */
    }
    .footer-subscribe form {
        justify-content: center; /* Center the form elements */
    }
    .footer-bottom {
        flex-direction: column; /* Stack copyright and brand name */
        gap: 10px;
    }
}

/* ======================= SWIPER STYLES OVERRIDE ======================= */
.swiper-button-next,
.swiper-button-prev {
    color: #A855F7 !important; /* Make arrows purple */
}

.swiper-pagination-bullet-active {
    background-color: #A855F7 !important; /* Make active dot purple */

}

/* ======================= SPONSOR CAROUSEL REFINEMENTS ======================= */

.sponsors-swiper .swiper-slide {
    width: auto; /* Allows each slide to be as wide as its logo */
}

.sponsors-swiper .swiper-slide img {
    max-height: 60px; /* Sets a consistent max height for all logos */
    width: auto;      /* Lets the width adjust proportionally */
}

/* ======================= SPEAKER CAROUSEL REFINEMENTS ======================= */
.speakers-swiper .swiper-slide {
    height: auto; /* Allows slide to grow */
}

.speakers-swiper .speaker-card {
    height: 100%; /* Forces the card to fill the entire slide height */
}

.speakers-swiper {
    padding-bottom: 50px; /* Adds space at the bottom for the pagination dots */
}

/* This new rule targets the container for the dots */
.speakers-swiper .swiper-pagination {
    position: static; /* Ensures it sits in the flow of the document */
    margin-top: 2rem; /* Adds space between the slides and the dots */
    padding-bottom: 1rem; /* Adds a little space below the dots */
}