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

/* General Styles */
html {
    font-size: 16px;
}

p {
    font-size: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: #463F3A;
    background-color: #F4F3EE;
}

a {
    text-decoration: none;
    color: #463F3A;
}

.heading{
    font-size: 1.25rem;
    text-align: center;
}

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 6px;
    left: 6px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    z-index: 9999;
}


/* Header */
header {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background-color: #F4F3EE;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}


.logo img {
    height: 40px;
    margin-right: 20px;
}

nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

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

nav a {
    text-decoration: none;
    color: #333; /* Dark gray for text */
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover, nav a.active {
    background-color: #333; /* Dark gray for hover/active state */
    color: #fff;
}

/* Desktop Navigation Links */
.desktop-nav {
    display: none; /* hidden by default */
    gap: 1.5rem; /* space-x-6 */
}

.desktop-nav a {
    border-radius: 0.375rem; /* rounded-md */
    padding: 0.5rem 0.75rem; /* px-3 py-2 */
    transition: background-color 0.3s ease; /* transition duration-300 */
}

 /* Mobile Burger Menu Icon */
.mobile-menu-toggle {
    display: flex; /* flex */
    flex-direction: column;
    justify-content: space-between;
    width: 2rem; /* w-8 */
    height: 1.5rem; /* h-6 */
    cursor: pointer;
    z-index: 50; /* z-50 */
}

.hamburger-lines .line {
    display: block;
    height: 0.25rem; /* h-1 */
    background-color: #009639; /* bg-white */
    border-radius: 100px; /* rounded-full */
    margin: 3px;
    transition: all 0.3s ease-in-out;
}

/* Transform lines when menu is open */
.mobile-menu-toggle.menu-open .line-top {
    transform: translateY(8.5px) rotate(45deg);
}
.mobile-menu-toggle.menu-open .line-middle {
    opacity: 0;
}
.mobile-menu-toggle.menu-open .line-bottom {
    transform: translateY(-5px) rotate(-45deg);
}

/* Mobile Navigation Menu */
.nav-menu {
    position: fixed;
    top: 4.5rem;
    right: 0;
    width: 10rem; /* w-64 */
    color: #fff;
    background-color: #F4F3EE;
    box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1), -2px 0 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    transform: translateX(100%); /* Initially off-screen */
    transition: transform 0.3s ease-in-out; /* Smooth slide transition */
    z-index: 40; /* z-40 */
    padding: 0.5rem; /* p-6 */
    display: flex;
    
    gap: 1rem; /* space-y-4 */
    border-top-left-radius: 0.5rem; /* rounded-l-lg */
    border-bottom-left-radius: 0.5rem; /* rounded-l-lg */
}

/* Slide in menu when menu is open */
.nav-menu.menu-open {
    transform: translateX(0);
}

.nav-menu a {
    border-radius: 0.375rem; /* rounded-md */
    padding: 0.5rem 1rem; /* px-4 py-2 */
    transition: background-color 0.3s ease; /* transition duration-300 */
}

.nav-menu a:hover {
    background-color: #009639; /* hover:bg-gray-700 */
}

@media (min-width: 1130px) { /* md breakpoint */
    .desktop-nav {
        display: flex; /* Show desktop nav */
    }
    .mobile-menu-toggle {
        display: none; /* Hide burger icon */
    }
    .nav-menu {
        /* Hide mobile menu on desktop */
        display: none;
    }
    .main-content {
        padding: 2rem; /* Adjust for larger screens */
    }
}
/* Mobile Burger Menu Icon END*/
/* Header End */


/* Highlights Section */
.highlights {
    display: flex;
    justify-content: space-around;
    height: 30%;
    padding: 50px 20px;
}

.highlight {
    width: 25%;
    padding: 20px;
    text-align: center;
    background-color: #d3cfc6;
    border-radius: 15px;
}
.highlight h2{
    margin: 10px 0px;
}

@media (max-width: 800px) {
    .highlights {
        height: auto;
        margin-bottom: 30px;
    }
}

/* Frontpage Carousel Start */
.swiper {
    width: 40rem;
    height: 22rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

@media (max-width: 800px) {
    .swiper {
        width: 100%;
        height: 15rem;
    }

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

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

.swiper-button-next,
.swiper-button-prev {
    color: #009639 !important;
}

.swiper-pagination-bullet {
    background-color: var(--color-carousel-pagination); 
}

.swiper-pagination-bullet-active {
    background-color: #009639 !important; 
    opacity: 1;
}   

/* Frontpage Carousel End */

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    padding: 0px 20px;
    margin: auto;
    text-align: center;
    width: 80%;
}

.button {
    display: inline-block;
    background-color: #009639;
    color: white;
    padding: 0.6rem 0.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin: 0px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.button:hover {
    transform: translateY(-3px);
}


/* Footer */
footer {
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    
}

.social-media a {
    margin: 0 10px;
    text-decoration: none;
}

.contact-info p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 1130px) {
    nav ul {
        flex-direction: column;
    }


}

nav a:hover, nav a.active {
    background-color: #009639;
    color: #fff;
}

.body {
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.highlight{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.highlight-text {
    max-width: 300px;
    margin: 15px;
}

.hero-image-container {
    max-width: 100vw;
    box-sizing: border-box;
    margin-top: 70px;
    position: relative;
}

.hero-image-container > img:first-child {
    width: 100%;
    height: auto;
    display: block;
    max-height: 95vh;
    object-fit: cover;
    object-position: center;
}

/* Hero overlay with H1 and CTAs */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 4px); /* account for img-banner spacing */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 6% 3.5rem;
    box-sizing: border-box;
    background: none;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.92);
    margin: 0 0 1.75rem 0;
    max-width: 540px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-cta-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    pointer-events: all;
}

.hero-cta {
    font-size: 0.95rem;
    padding: 0.65rem 1.4rem;
}

.hero-image-container .img-banner {
    width: 30%;
    margin: auto;
    padding: 1rem 3rem;
    max-height: 95vh;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-image-container .img-banner {
        width: 60%;
    }

    .hero-overlay {
        align-items: center;
        text-align: center;
        background: rgba(0,0,0,0.45);
        padding: 0 5%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }
}

/* ===== Homepage: Proof Strip ===== */
.proof-strip {
    background: #1a1a2e;
    padding: 0;
}

.proof-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 4%;
    gap: 0;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 2.5rem;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.proof-number {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #f0a500;
    line-height: 1;
}

.proof-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .proof-strip-inner {
        gap: 0.5rem;
    }
    .proof-divider {
        display: none;
    }
    .proof-stat {
        padding: 0.75rem 1rem;
        min-width: 90px;
    }
}

/* ===== Homepage: Corporate Partner Section ===== */
.corporate-section {
    background: #f4f3ee;
    padding: 4.5rem 6%;
    border-top: 1px solid #e5e5e5;
}

.corporate-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.corporate-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem 0;
}

.corporate-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.975rem;
}

.corporate-text .button-group {
    margin-top: 1.5rem;
}

.corporate-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 1.25rem;
}

.pillar-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pillar-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.35rem 0;
}

.pillar-card p {
    font-size: 0.825rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 860px) {
    .corporate-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .corporate-pillars {
        grid-template-columns: 1fr;
    }
}

/* ===== About Page: Chapter Identity Section ===== */
.chapter-identity {
    background: #1a1a2e;
    padding: 5rem 6%;
    margin-top: 70px;
}

.chapter-identity-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chapter-identity-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
}

.chapter-identity-text p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.chapter-identity-text .button-group {
    margin-top: 1.75rem;
}

/* Photo deck */
.photo-deck {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.photo-deck::after {
    content: 'click to cycle';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.photo-card {
    position: absolute;
    width: 220px;
    height: 285px;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* nth-child: 1 = furthest back, 4 = front */
.photo-deck .photo-card:nth-child(1) { transform: rotate(-14deg) translate(-90px, 18px) scale(0.82); z-index: 1; }
.photo-deck .photo-card:nth-child(2) { transform: rotate(-6deg)  translate(-30px,  6px) scale(0.91); z-index: 2; }
.photo-deck .photo-card:nth-child(3) { transform: rotate(4deg)   translate( 30px,  6px) scale(0.96); z-index: 3; }
.photo-deck .photo-card:nth-child(4) { transform: rotate(11deg)  translate( 85px, 14px) scale(1);    z-index: 4; }

/* Chapter Stats Strip */
.chapter-stats-strip {
    background: #009639;
    padding: 2.5rem 6%;
}

.chapter-stats-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.chapter-stat {
    flex: 1;
    text-align: center;
}

.chapter-stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.chapter-stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-top: 0.4rem;
}

.chapter-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .photo-deck { height: 280px; }
    .photo-card { width: 155px; height: 200px; }
    .photo-deck .photo-card:nth-child(1) { transform: rotate(-14deg) translate(-62px, 14px) scale(0.82); }
    .photo-deck .photo-card:nth-child(2) { transform: rotate(-6deg)  translate(-20px,  4px) scale(0.91); }
    .photo-deck .photo-card:nth-child(3) { transform: rotate(4deg)   translate( 20px,  4px) scale(0.96); }
    .photo-deck .photo-card:nth-child(4) { transform: rotate(11deg)  translate( 58px, 10px) scale(1); }
}

@media (max-width: 768px) {
    .chapter-identity {
        padding: 3rem 5%;
    }

    .chapter-identity-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* About Page: Get Involved CTA Banner */
.about-cta-banner {
    background: #0e2a17;
    padding: 4rem 6%;
    text-align: center;
}

.about-cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.about-cta-banner h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFD700;
    margin: 0 0 0.6rem 0;
}

.about-cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-cta-banner .button-group {
    justify-content: center;
}

/* ===== Conference Redirect Page ===== */
.conference-redirect {
    background: #0e2a17;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 6%;
    text-align: center;
}

.conference-redirect-inner {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.conference-redirect-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFD700;
}

.conference-redirect h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.conference-redirect p {
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    font-size: 1rem;
    margin: 0;
}

/* ===== Contact Page: Inquiry Type Sections ===== */
.inquiry-sections {
    max-width: 860px;
    margin: 2.5rem auto 0;
    padding: 0 5% 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.inquiry-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.75rem;
}

.inquiry-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.4rem 0;
}

.inquiry-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.inquiry-card .contact-name {
    font-size: 0.85rem;
    color: #463F3A;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.inquiry-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.inquiry-link:hover {
    color: #f0a500;
}

@media (max-width: 600px) {
    .inquiry-sections {
        grid-template-columns: 1fr;
    }
}

/* ===== Conference: Post-Event Section ===== */
.conference-next {
    background: #f4f3ee;
    border-top: 2px solid #e5e5e5;
    padding: 3rem 6%;
    text-align: center;
}

.conference-next h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.conference-next p {
    max-width: 620px;
    margin: 0 auto 1.5rem;
    color: #555;
    line-height: 1.65;
}

/* ===== Sponsors: Why Sponsor Grid ===== */
.why-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    text-align: left;
}

.why-sponsor-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1.25rem 1.4rem;
}

.why-sponsor-item strong {
    display: block;
    color: #f0a500;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.why-sponsor-item p {
    color: rgba(255,255,255,0.72);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Sponsors: Contact block */
.sponsor-contact-block {
    background: #f4f3ee;
    border: 1px solid #e0dfd8;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    max-width: 560px;
    margin: 2rem auto 0;
    text-align: center;
}

.sponsor-contact-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.4rem 0;
}

.sponsor-contact-block p {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 0.75rem 0;
}

.sponsor-contact-block a {
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.modern-footer {
    border-top: 1px solid #e5e5e5;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    display: flex;
    justify-content: space-evenly;
    text-align: left;
    gap: 40px;
    width: 80%;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

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

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

.footer-section ul li a {
    color: #666;    
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #E0AFA0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #E0AFA0;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #e5e5e5;
    width: 100%;
}

.footer-bottom p {
    color: #666;
}

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 0rem;
    }

    .social-links {
        align-items: center;
    }
    
}

/* Conference Page Styling Start */

.conference-image-container {
    max-width: 100vw;
    box-sizing: border-box;
    margin-top: 70px;
}

.conference-image-container img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.conference-content p {
    width: 70%;
    margin: 40px auto;
}

.conference {
    background-size: cover;
    background-position: center;
    text-align: center;
}

.conference-highlight {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.conference-highlight-inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conference-highlight-text {
    text-align: justify;
    width: 20rem;
}

.conference-map {
    width: 20rem;
    height: 20rem;
    border-radius: 10px;
}

.faq-heading {
    text-align: center;
}

.faq-accordion {
    width: 70%;
    margin: auto;
    margin-bottom: 50px;
    border-radius: 10px;
    border: 1px solid #8A817C;
    cursor: pointer;
}

.faq-accordion-item {
    padding: 0.7rem;
}
.faq-accordion-item:not(:last-child) {
    border-bottom: 1px solid #8A817C;
}

.faq-link {
    text-decoration: none;
    color: #003cef;
}

/* Conference Page Styling End */

/* About Us Page Styling Start */

.team {
    padding: 5rem 2rem;
}

.team-heading {
    text-align: center;
}

.team-container {
    margin: 0 auto;
}

.zone-title {
    margin: 0;
    text-align: center;
    padding: 1rem;
    border-bottom: 0.5px solid #c7c7c7;
}

.zone {
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0rem; 
}

.team-member {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0.5%;
    width: 15rem;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.1s ease;
}
.team-member:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #009639;
}

.lead:hover {
    border-color: #FFD100;
}


.member-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
}

.member-info {
    height: 50%;
    padding-top: 5px;
    width: 100%;
}

.member-name {
    margin: 0;
    padding-bottom: 5px;
}

.member-title {
    font-weight: 400;
    color: #009639;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #5e5e5e6b;
}

.member-bio {
    margin: 0;
    padding: 15px 0px 10px 0px;
}

.member-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-icon {
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    position: relative;
}

.member-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #8A817C;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.member-icon:hover::after {
    transform: scaleX(1);
}

.member-icon:hover {
    transform: translateY(-2px);
}

/* About Us Page Styling End */

/* WWAD Page Styling Start */

.wwad {
    padding: 74px 0;
    min-height: 100vh;
    text-align: center;
}

.wwad-content {
    max-width: 800px;
    margin: 0 auto;
}

.wwad-content h1 {
    margin-bottom: 20px;
}

.wwad-content p {
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    place-items: center;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    color: #009639;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.initiatives {
    margin: auto;
}

.section-title {
    padding: 2rem;
    margin: 0px;
}

.initiatives-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: auto;
    width: 70%;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 800px){
    .initiatives-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
}

.initiative-card {
    background: white;
    width: 20rem;
    border-radius: 15px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.initiative-icon {
    width: 60px;
    height: 60px;
    background: whitesmoke;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.initiative-card h3 {
    color: #E0AFA0;
    margin-bottom: 15px;
}

.initiative-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.initiative-list{
    padding-left: 0;
}

.initiative-list li {
    padding: 0.5rem;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.initiative-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #E0AFA0;
}

@media (max-width: 800px) {

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .initiatives-grid {
        width: 90%;
    }
}

/* WWAD Us Page Styling End */

/* Sponsors Page Styling Start */

.container {
    padding: 2rem 0;
}

.sponsor-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;     
}

.sponsor-title {
    margin-bottom: 3rem;
}

.sponsor-grid {
    width: 70%;
    height: 100%;
    margin: auto;
}

.sponsor-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.sponsor-logo {
    width: 40%;
    object-fit: contain;
}

.sponsor-content {
    max-width: 800px;
    margin: 0 auto;
}

.sponsor-content h1 {
    margin-bottom: 20px;
}

@media (max-width: 800px) {

    .sponsor-grid {
        width: 100%;
        height: 100%;
        margin: auto;
    }

    .sponsor-logo {
        width: 80%;
        object-fit: contain;
    }
    

    .sponsor-content {
        padding: 1rem;
    }

    .sponsor-subtitle {
        padding: 1rem;
    }

    .value-prop-grid {
        width: 90%;
    }
}


/* Sponsors Page Styling End */

/* Contact Page Styling Start */

.contacts-section {
    min-height: 100vh;
}

.socials-section {
    padding: 5rem 2rem;
    text-align: center;
    margin: auto;
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem; 
}

.social-links-section {
    margin: auto;   
}

@media (max-width: 800px) {
    .social-grid { 
        display: grid; 
        justify-items: center;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Individual social link item */
.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 7rem;
    height: 7rem;
    padding: 1rem;
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
    transition: all 0.3s ease-in-out; 
    transform: translateY(0);
    justify-content: space-evenly;
}

.social-item:hover {
    transform: translateY(-0.25rem); /* hover:-translate-y-1 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* hover:shadow-lg */
}

.bulls-logo, .groupme-logo{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 15px;
}

/* Social icon styling */
.social-icon {
    font-size: 3rem; /* text-3xl */
    margin-bottom: 0.5rem; /* mb-2 */
    transition: color 0.3s ease-in-out; /* group-hover:text-... */
}

/* Social text styling */
.social-text {
    font-weight: 600; /* font-semibold */
}

/* Specific colors for each social item */
.social-item.bulls-connect { background-color: #d3ffcc; color: #007510; } /* bg-blue-50 text-blue-700 */
.social-item.bulls-connect:hover { background-color: #beffb4; } /* hover:bg-blue-100 */
.social-item.bulls-connect .social-icon:hover { color: #1d4ed8; } /* group-hover:text-blue-800 */

.social-item.instagram { background-color: #fdf2f8; color: #db2777; } /* bg-pink-50 text-pink-700 */
.social-item.instagram:hover { background-color: #fce7f3; } /* hover:bg-pink-100 */
.social-item.instagram .social-icon:hover { color: #be185d; } /* group-hover:text-pink-800 */

.social-item.linkedin { background-color: #eef2ff; color: #4f46e5; } /* bg-indigo-50 text-indigo-700 */
.social-item.linkedin:hover { background-color: #e0e7ff; } /* hover:bg-indigo-100 */
.social-item.linkedin .social-icon:hover { color: #3730a3; } /* group-hover:text-indigo-800 */

.social-item.groupme { background-color: #d8f5ff; color: #16abdd; } /* bg-gray-700 text-white */
.social-item.groupme:hover { background-color: #c6f0fe; } /* hover:bg-gray-800 */
.social-item.groupme .social-icon:hover { color: #fff; } /* group-hover:text-white */

.social-item.discord { background-color: #7289da; color: #fff; } /* bg-gray-700 text-white */
.social-item.discord:hover { background-color: rgb(91, 112, 189); } /* hover:bg-gray-800 */
.social-item.discord .social-icon:hover { color: #fff; } /* group-hover:text-white */

.social-item.email { background-color: #fee2e2; color: #dc2626; } /* bg-red-50 text-red-700 */
.social-item.email:hover { background-color: #fecaca; } /* hover:bg-red-100 */
.social-item.email .social-icon:hover { color: #b91c1c; } /* group-hover:text-red-800 */
/* Contact Page Styling End */

/* Featured Initiatives Section */
.featured-initiatives {
  padding: 0rem 0 2rem 0;
}
.featured-initiatives-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.featured-initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.featured-initiative-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.featured-initiative-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.featured-initiative-card img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  object-position: center;
}
.featured-initiative-content {
  padding: 1.2rem 1rem 1.5rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-initiative-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
  color: #1a202c;
  font-weight: 700;
}
.featured-initiative-content p {
  color: #374151;
  font-size: 1rem;
  margin: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .featured-initiatives {
    padding: 0rem 0 1rem 0;
  }
  .featured-initiative-card img {
    height: 130px;
  }
  .featured-initiative-content {
    padding: 0.8rem 0.7rem 1rem 0.7rem;
  }
}

.category-section {
  width: 80%;
  margin: auto;
  border-radius: 1.2rem;
  margin-bottom: 2.5rem;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  position: relative;
}
.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}
.category-icon {
  font-size: 2.2rem;
  margin-right: 0.5rem;
}
.category-header h2 {
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 0.01em;
}
.category-stat {
  margin-left: auto;
  font-size: 1rem;
  border-radius: 1rem;
  padding: 0.3rem 1rem;
  font-weight: 600;
}


/* Add a subtle accent bar at the top of each category */
.category-section::before {
  content: '';
  display: block;
  height: 6px;
  width: 60px;
  border-radius: 3px;
  margin-bottom: 1.2rem;
  position: absolute;
  top: 1.2rem;
  left: 2rem;
}

/* Adjust grid spacing for category sections */
.category-section .featured-initiatives-grid {
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .category-section {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .category-header {
    flex-direction: column;
    text-align: center;
    padding: 0;
    gap: 0.5rem;
  }
  .category-stat {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center; 
  }
  .category-section::before {
    left: 1rem;
    width: 40px;
  }
}

.nsbe-mission-highlight {
  max-width: 700px;
  margin: 2.5rem auto 2rem auto;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, #009639 80%, #FFD100 100%);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  text-align: center;
  position: relative;
}

.nsbe-mission-label {
  display: inline-block;
  background: #FFD100;
  color: #231F20;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.3rem 1.2rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  position: absolute;
  top: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nsbe-mission-quote {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: none;
  background: none;
}

@media (max-width: 700px) {
  .nsbe-mission-highlight {
    padding: 1rem 0.5rem;
  }
  .nsbe-mission-quote {
    font-size: 1rem;
  }
}

.chapter-intro-card {
    max-width: 750px;
    margin: 2.5rem auto 2rem auto;
    padding: 2rem 2rem 1.5rem 2rem;
    background: #f8fafc;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    border: 6px solid transparent;
    background-image:
        linear-gradient(#f8fafc, #f8fafc), /* inner background */
        linear-gradient(90deg, #009639 0%, #FFD100 100%); /* border gradient */
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
  
.chapter-intro-title {
    color: #009639;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.chapter-intro-card p {
    color: #231F20;
    font-size: 1.13rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 700px) {
    
    .chapter-intro-title {
        font-size: 1.2rem;
    }
    .chapter-intro-card p {
        font-size: 1rem;
    }
}

.tiers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    gap: 3rem;
    margin-bottom: 50px;
    margin: auto;
}

.tier-card {
    background: white;
    display: flex;
    flex-direction: column;
    width: 20rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.tier-card.platinum {
    border-color: #9b59b6;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.tier-card.gold {
    border-color: #f39c12;
}

.tier-card.silver {
    border-color: #95a5a6;
}

.tier-card.bronze {
    border-color: #cd7f32;
}

.tier-card.ignite {
    border-color: #e74c3c;
}

.tier-header {
    padding: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.tier-card.platinum .tier-header {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.tier-card.gold .tier-header {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.tier-card.silver .tier-header {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.tier-card.bronze .tier-header {
    background: linear-gradient(135deg, #cd7f32, #b8651f);
}

.tier-card.ignite .tier-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.tier-header h4 {
    font-size: 1.8rem;
    margin: 0.5rem 1rem;
}

.tier-price {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.tier-benefits {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.tier-benefit {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.tier-benefit.excluded {
    color: #94a3b8;
    text-decoration: line-through;
    opacity: 0.6;
}

.tier-highlight {
    color: #64748b;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: auto;
    padding: 0 1rem 1rem 1rem;
}

.support-container {
    width: 70%;
    text-align: left;
    margin: auto;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.impact-list {
    margin: 0 auto;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.impact-visual {
    position: sticky;
    top: 20px;
}

.impact-category {
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 4px solid #009639;
    position: relative;
    text-align: left;
}

.impact-category h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.impact-category p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Custom Carousel Styles */
.carousel-section {
    padding: 60px 20px;
    margin: 0;
}

.carousel-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #463F3A;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.carousel-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    margin: 15px auto 0;
    border-radius: 2px;
}

.custom-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: none;
}

.carousel-slide.active {
    opacity: 1;
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-caption h3 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #463F3A;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: #FFD700;
    color: #463F3A;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:focus {
    outline: 3px solid #FFD700;
    outline-offset: 3px;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 16px 16px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #463F3A;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: #FFD700;
    border-color: #FFD700;
    transform: scale(1.2);
}

.indicator:focus {
    outline: 2px solid #FFD700;
    outline-offset: 3px;
}

.indicator.active {
    background: #463F3A;
    width: 32px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-section {
        padding: 40px 10px;
    }

    .carousel-section .section-title {
        font-size: 2rem;
    }

    .carousel-slide img {
        height: 350px;
    }

    .carousel-caption {
        padding: 30px 20px 20px;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        height: 280px;
    }

    .carousel-caption h3 {
        font-size: 1.3rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .carousel-section .section-title {
        font-size: 1.75rem;
    }
}

/* Mission & Chapter Section - Modern Design */
.mission-chapter-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 20px;
}

/* Mission Card */
.mission-container {
    position: relative;
    margin-bottom: 2rem;
}

.mission-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #231F20;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    margin: 0 auto 1.5rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.mission-card {
    background: linear-gradient(135deg, #009639 0%, #00b347 50%, #FFD700 100%);
    padding: 2.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 150, 57, 0.25);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FFD700, #009639, #FFD700);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-text {
    color: white;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Chapter Card */
.chapter-container {
    margin-top: 3rem;
}

.chapter-card {
    background: white;
    padding: 3rem 2.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 4px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(135deg, #009639 0%, #FFD700 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chapter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 150, 57, 0.15);
}

.chapter-title {
    color: #009639;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.chapter-text {
    color: #463F3A;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
    text-align: center;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 140px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #009639 0%, #00b347 100%);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #00b347 0%, #009639 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 150, 57, 0.3);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #231F20;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-chapter-section {
        margin: 2rem auto;
    }

    .mission-badge {
        font-size: 1rem;
        padding: 0.4rem 1.5rem;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }

    .mission-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .chapter-card {
        padding: 2rem 1.5rem;
    }

    .chapter-title {
        font-size: 1.8rem;
    }

    .chapter-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .button-group {
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.05rem;
        min-width: 150px;
        font-weight: 700;
    }

    /* Ensure buttons work well on touch devices */
    .cta-button:active {
        transform: scale(0.98);
    }
}

@media (max-width: 600px) {
    .button-group {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        width: 100%;
    }

    .cta-button {
        max-width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1.1rem;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    /* Remove hover transforms on mobile, use active state instead */
    .cta-button.primary:hover,
    .cta-button.secondary:hover {
        transform: none;
    }

    .cta-button:active {
        transform: scale(0.97);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 480px) {
    .mission-card {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }

    .mission-text {
        font-size: 1rem;
    }

    .chapter-card {
        padding: 1.8rem 1.2rem;
        border-radius: 16px;
    }

    .chapter-title {
        font-size: 1.5rem;
    }

    .chapter-text {
        font-size: 1rem;
    }

    .button-group {
        gap: 0.9rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        border-radius: 10px;
    }
}
/* ===========================
   NSBE Intro Screen
   =========================== */

body.is-loading {
    overflow: hidden;
}

#nsbe-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0d1021;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: intro-fade-out 0.6s ease 3.2s forwards;
    pointer-events: none;
}

/* Low-opacity USF logo watermark */
#nsbe-intro .intro-bg-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#nsbe-intro .intro-bg-logo img {
    width: min(55vw, 420px);
    opacity: 0.06;
    filter: grayscale(1) brightness(2);
    user-select: none;
}

/* Center content */
#nsbe-intro .intro-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1.5rem;
}

/* "The National Society of Black Engineers" */
#nsbe-intro .intro-main {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 3.2vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    animation: intro-text-in 0.7s ease 0.4s forwards;
}

/* Divider rule */
#nsbe-intro .intro-rule {
    width: 0;
    height: 2px;
    background: #f0a500;
    margin: 1.1rem auto;
    animation: intro-rule-expand 0.5s ease 1.3s forwards;
}

/* "The University of South Florida" */
#nsbe-intro .intro-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.75rem, 1.8vw, 1.05rem);
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f0a500;
    opacity: 0;
    animation: intro-text-in 0.6s ease 1.9s forwards;
}

@keyframes intro-text-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes intro-rule-expand {
    to { width: min(340px, 70vw); }
}

@keyframes intro-fade-out {
    to {
        opacity: 0;
        visibility: hidden;
    }
}
    outline-offset: 3px;
}

.indicator.active {
    background: #463F3A;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .carousel-section { padding: 40px 10px; }
    .carousel-section .section-title { font-size: 2rem; }
    .carousel-slide img { height: 350px; }
    .carousel-caption { padding: 30px 20px 20px; }
    .carousel-caption h3 { font-size: 1.5rem; }
    .carousel-caption p { font-size: 1rem; }
    .carousel-btn { width: 40px; height: 40px; font-size: 1.5rem; }
    .carousel-btn-prev { left: 10px; }
    .carousel-btn-next { right: 10px; }
    .indicator { width: 10px; height: 10px; }
    .indicator.active { width: 24px; }
}

@media (max-width: 480px) {
    .carousel-slide img { height: 280px; }
    .carousel-caption h3 { font-size: 1.3rem; }
    .carousel-caption p { font-size: 0.9rem; }
    .carousel-section .section-title { font-size: 1.75rem; }
}

