/* Global Styles */
.fixed-background {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%; /* Increased width to show more of the image */
    height: 100vh;
    background-image: url('images/2-1.png');
    background-size: cover;
    background-position: center left; /* Position from the left side of the image */
    opacity: .1; /* Reduced opacity to make content more readable */
    z-index: -1; /* Place it behind content */
     /* Add this line to invert the background image */
     filter: grayscale(100%);
     /* background-color: lightblue; */
     pointer-events: none; /* This makes it non-interactive so clicks pass through */
}

/* Fixed Background */
.fixed-background_2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/6-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: .3; /* Adjust opacity as needed */
    z-index: -1;
}

/* Background wrapper for spanning multiple sections */
.background-wrapper {
    position: relative;
}

.background-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('images/3-1-composite2.png'); */
    background-color:  #e9eefa;
    background-size: cover;
    background-position: center left;
    opacity: .2;
    z-index: 0;
    /* mix-blend-mode: screen; */
}

/* Ensure content is above the background */
.background-wrapper > section {
    position: relative;
    z-index: 1;
}

/* Add this to ensure content is still readable with the background */
#speakers .section-title,
#speakers .section-subtitle,
#sponsors .section-title,
#sponsors .section-subtitle {
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --dark-purple: #1a0033;
    --light-purple: #8844ee;
    --pink: #ff6b9d;
    --cyan: #4de8f4;
    --white: #ffffff;
    --dark: #111111;
    --gold: #FFD54F;       /* Soft gold/amber yellow */
    --light-gold: #FFF9C4; /* Very light pastel yellow */
}

/* Gradient Background for Section Dividers */
.bg-light {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.05) 0%, rgba(37, 117, 252, 0.08) 100%);
}

/* For the moderators section on speakers page */
.py-5.bg-light {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.05) 0%, rgba(37, 117, 252, 0.08) 100%);
}

/* For the organizing committee section on about page */
section.py-5.bg-light {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.05) 0%, rgba(37, 117, 252, 0.08) 100%);
}

/* Alternative gradient option for other sections if needed */
.gradient-bg-subtle {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.05) 0%, rgba(37, 117, 252, 0.08) 100%);
}

/* More pronounced gradient for special sections */
.gradient-bg-accent {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.15) 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: var(--dark-purple);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--cyan);
}

.register-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
}

/* Hero Section */
#hero {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.event-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cyan);
}

#hero h1 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.location {
    font-size: 1.1rem;
    opacity: 0.8;
}

.countdown-wrapper {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    min-width: 80px;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.discover-btn {
    background: linear-gradient(45deg, var(--pink), var(--primary-color));
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.hero-image-container {
    position: relative;
    z-index: 1;
    overflow: visible;
    width: 120%; /* Make container wider than its parent */
    margin-left: -60%; /* Increase the negative margin to shift further left */
}

.hero-image-container img {
    position: relative; /* Changed from absolute to relative */
    z-index: 1;
    width: 200%;
    max-width: none; /* Remove max-width constraint */
    height: auto;
    object-fit: cover;
}

.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100; /* Add z-index to ensure it stays above other content */
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--cyan);
    color: var(--dark-purple);
    transform: translateY(-3px);
}

/* About Section */
#about {
    background-color: var(--white);
    padding: 80px 0;
}

.about-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 900px; /* Increased from 800px for more width */
    margin: 0 auto;
    line-height: 1.4; /* Improved line height for better readability */
}

/* Specific styling for About section title */
#about .section-title {
    font-size: 2rem; /* Slightly smaller font size for better fit */
    max-width: 100%; /* Wider container for the about text */
    margin: 0; /* Adjusted bottom margin */
    line-height: 1.4;
    text-align: right;
    color: var(--dark-purple); /* Adding brand color for emphasis */
}

#about .section-badge {
    margin-bottom: 1rem;
}

#about p {
    text-align: left;
    color: #555;
    line-height: 1.6;
}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(106, 17, 203, 0.3); Purple overlay with 30% opacity */
    pointer-events: none; /* Allows clicking through the overlay */
}

.video-container img {
    width: 100%;
    display: block;
    filter: grayscale(100%); /* Makes the image black and white */
    transition: filter 0.3s ease;
}

/* Optional: Return to color on hover */
.video-container:hover img {
    filter: grayscale(0%);
}

/* Enhanced Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.play-btn:hover {
    background-color: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    margin-left: 8px;
}

/* Speakers Section */
#speakers {
    /* background-color: #f8f9fa; */
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.speaker-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.speaker-image {
    position: relative;
    height: 400px; /* Increased from 350px to 400px for better face visibility */
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%; /* Adjusted to focus more on faces */
    transition: all 0.5s ease;
}

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

.speaker-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-social {
    bottom: 0;
}

.speaker-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.speaker-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.speaker-info {
    padding: 20px;
    text-align: center;
}

.speaker-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.speaker-info p {
    color: #666;
    margin-bottom: 0;
}

/* Contact Section */
#contact {
    background-color: var(--white);
    padding: 80px 0;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}

.contact-info h3 {
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info ul li i {
    margin-top: 5px;
    color: var(--cyan);
}

/* Glossy white transparent background for Contact section */
#contact-info {
    position: relative;
}

#contact-info .container {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(2px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Add subtle gradient for glossy effect */
#contact-info .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Footer */
footer {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 30px 0;
    z-index:102;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    z-index: 101;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;

}

.footer-social a:hover {
    background-color: var(--cyan);
    color: var(--dark-purple);
    color: var(--cyan) !important; 
    z-index:102;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    #hero {
        padding: 150px 0 80px;
    }
    
    .hero-image-container {
        width: 100%; /* Reset width for mobile */
        margin-left: 0; /* Reset margin for mobile */
        margin-top: 50px;
    }
    
    .hero-image-container img {
        width: 100%;
    }
    
    .social-sidebar {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Add this to ensure discussion leader images match speaker images */
.moderators-section .speaker-image img {
    height: 300px;
    object-fit: cover;
}

/* If you have a specific class for discussion leaders, you can also target it directly */
.discussion-leader .speaker-image img {
    height: 300px;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    #hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .countdown-wrapper {
        justify-content: center;
    }
    
    .discover-btn {
        display: block;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info {
        margin-top: 40px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .countdown-item {
        min-width: 65px;
        padding: 10px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

/* Responsive adjustments for video section */
@media (max-width: 991.98px) {
    .widescreen-video-container {
        width: 95%;
    }
    
    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .split-background-section {
        margin: 60px 0;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

/* Split Background Video Section */
.split-background-section {
    background: linear-gradient(to bottom, var(--dark-purple) 50%, var(--white) 50%);
    padding: 80px 0;
    margin: 0;
    position: relative;
}

.widescreen-video-container:hover img {
    filter: grayscale(0%);
}

.widescreen-video-container {
    position: relative;
    width: 85%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16/9;
    z-index: 2;
}

.widescreen-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.video-caption {
    margin-top: 20px;
    color: var(--dark-purple);
    font-style: italic;
}

/* Ensure text is readable on both backgrounds */
.split-background-section .section-badge {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.split-background-section .section-title {
    color: var(--white);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Register button container */
.register-btn-container {
    display: inline-block;
    margin: 0 auto;
}

.limited-space-badge {
    display: block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--cyan);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 10px;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    text-align: center;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-modal .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1;
}

/* Add these styles to your existing CSS file */

/* Sponsors Section */
#sponsors {
    background-color: #f8f9fa;
}

.tier-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
    position: relative;
}

.tier-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 10px auto 0;
}

.sponsor-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sponsor-card img {
    max-height: 100px;
    margin-bottom: 15px;
    object-fit: contain;
}

.sponsor-info {
    text-align: center;
}

.sponsor-info h4, .sponsor-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.sponsor-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.platinum-tier .sponsor-card {
    padding: 30px;
}

.platinum-tier .sponsor-card img {
    max-height: 120px;
}

.silver-tier .sponsor-card {
    padding: 15px;
}

.silver-tier .sponsor-card img {
    max-height: 80px;
    margin-bottom: 0;
}

.become-sponsor-btn {
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.become-sponsor-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
}

@media (max-width: 767.98px) {
    .sponsor-card img {
        max-height: 80px;
    }
    
    .platinum-tier .sponsor-card img {
        max-height: 100px;
    }
    
    .silver-tier .sponsor-card img {
        max-height: 60px;
    }
}


/* ----------- */
/* SPEAKERS PAGE */
/* ----------- */

.speakers-header {
    background-color: var(--dark-purple);
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
}

.speaker-detail-card {
    padding: 3rem 0;
}

.speaker-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.speaker-detail-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.speaker-detail-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-purple);
}

.speaker-detail-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.speaker-detail-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.speaker-detail-bio {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.speaker-detail-bio p {
    margin-bottom: 1rem;
}

.speaker-detail-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.speaker-divider {
    margin: 0;
    opacity: 0.1;
}

@media (max-width: 991.98px) {
    .speakers-header {
        padding: 6rem 0 3rem;
    }
    
    .speaker-detail-card {
        padding: 2rem 0;
    }
    
    .speaker-detail-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .speakers-header {
        padding: 5rem 0 2rem;
    }
    
    .speaker-detail-card {
        padding: 1.5rem 0;
    }
    
    .speaker-detail-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .speaker-detail-name {
        font-size: 1.6rem;
        margin-top: 1rem;
    }
    
    .speaker-detail-title {
        font-size: 1.1rem;
    }
}


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

.about-header {
    background-color: var(--dark-purple);
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-topics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-topic-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-topic-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-topic-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-topic-content p {
    margin-bottom: 0;
    color: #666;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: rgba(106, 17, 203, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Committee Cards */
.committee-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

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

.committee-image {
    height: 300px; /* Reduced base height for large screens */
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.committee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%; /* Position slightly above center to focus on faces */
    transition: all 0.5s ease;
}

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

.committee-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.committee-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark-purple);
}

.committee-title {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.committee-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 10px 0 15px;
}

.big-divider {
    width: 400px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1rem;
}

.committee-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.committee-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.committee-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.committee-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .about-header {
        padding: 6rem 0 3rem;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
    
    .committee-image {
        height: 320px; /* Slightly taller on medium screens */
    }
}

@media (max-width: 767.98px) {
    .about-header {
        padding: 5rem 0 2rem;
    }
    
    .about-stat {
        margin-bottom: 1rem;
    }
    
    .committee-card {
        max-width: 280px; /* Slightly smaller cards on mobile */
        margin: 0 auto;
    }
    
    .committee-image {
        height: 340px; /* Even taller on small screens */
    }
    
    /* Improve spacing between cards */
    .col-md-6.col-lg-4.mb-4 {
        margin-bottom: 25px !important;
    }
    
    /* Adjust text size for better readability */
    .committee-info h4 {
        font-size: 1.1rem;
    }
    
    .committee-info {
        padding: 15px;
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    .committee-card {
        max-width: 260px; /* Slightly wider than before to better fit taller images */
    }
    
    .committee-image {
        height: 360px; /* Tallest on very small screens */
    }
    
    /* Center the cards on very small screens */
    .row.justify-content-center {
        justify-content: center !important;
    }
    
    /* Ensure proper spacing between rows */
    .col-md-6.col-lg-4.mb-4:last-child {
        margin-bottom: 0 !important;
    }
}


/* ----------- */
/* AGENDA PAGE */
/* ----------- */
/* ----------- */
/* ----------- */

.agenda-day {
    margin-bottom: 3rem;
}

.agenda-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.agenda-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agenda-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.agenda-time {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.agenda-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.agenda-speaker {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.agenda-description {
    color: #555;
}

.agenda-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.agenda-header {
    background-color: var(--dark-purple);
    /* padding: 4rem 0 2rem; */
    padding: 8rem 0 4rem;

    color: white;
    text-align: center;
}

@media (max-width: 767.98px) {
    .agenda-header {
        padding: 3rem 0 1.5rem;
    }
    
    .agenda-date {
        font-size: 1.3rem;
    }
    
    .agenda-title {
        font-size: 1.1rem;
    }
}

/* ----------- */
/* YELLOW STYLES */
/* ----------- */

/* Yellow background section */
.yellow-bg-section {
    background-color: var(--light-gold);
    padding: 80px 0;
}

/* Highlight box with yellow background */
.highlight-box {
    background-color: var(--light-gold);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Yellow accent for important information */
.important-info {
    background-color: rgba(255, 213, 79, 0.15);
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

/* Yellow badge for special items */
.special-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark-purple);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.yellow-section {
    background-color: var(--light-gold);
    padding: 80px 0;
}

.yellow-accent-bg {
    background-color: rgba(255, 213, 79, 0.1); /* Soft gold with low opacity */
}

.highlight-text {
    color: #FFCA28; /* Soft gold */
    font-weight: 600;
}

.section-title .accent {
    color: var(--gold);
}

.yellow-badge {
    background-color: var(--gold);
    color: var(--dark-purple);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.accent-btn {
    background-color: #FFCA28; /* Soft gold */
    color: var(--dark-purple);
    border: none;
    transition: all 0.3s ease;
}

.accent-btn:hover {
    background-color: #FFB300; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 202, 40, 0.3);
}

.yellow-icon {
    color: var(--gold);
}

.yellow-border {
    border: 2px solid #FFCA28; /* Soft gold */
}

.bsky-icon {
    background-image: url('images/bluesky-brands-solid.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    display: inline-block;
    filter: invert(100%);
}

/* Registration Banner */
/* Registration Banner - Mobile Optimized */
.registration-banner {
    position: fixed;
    top: -100px; /* Start off-screen with extra space for mobile */
    left: 0;
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 15px;
    z-index: 10000; /* Above everything */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: top 0.5s ease;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.registration-banner.show {
    top: 0;
}

.registration-banner-content {
    flex: 1;
    min-width: 200px; /* Ensure text has enough space */
}

.registration-banner-content p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
}

.registration-banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 0 0 15px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    margin-left: 10px; /* Add some space from the text */
}

.registration-banner-close:hover {
    opacity: 1;
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
    .registration-banner {
        padding: 8px 10px;
    }
    
    .registration-banner-content p {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .registration-banner-close {
        padding: 0 0 0 5px;
        font-size: 20px;
    }
    
    /* Adjust navbar position for mobile */
    .navbar-adjusted {
        margin-top: 70px !important; /* Override for mobile */
    }
}