@import url('https://fonts.googleapis.com/css2?family=Lexend+Peta:wght@100..900&display=swap');


/* Global Styles */
body {
    margin: 0;
    font-family: 'Lexend Peta', sans-serif;
    background-color: black; /* Or deep gray */
    color: white;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6, a, span, p, li {
    font-weight: 400;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Rounded corners for sections */
    margin-bottom: 30px;
}



h1, h2, h3, h4, h5, h6 {
    color: white;
}

/* Hero Section */
.hero-section {
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0); */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    margin-left: 10%;
    max-width: 500px;
}

.ncpa-logo {
    max-width: 350px;
    margin-bottom: 15px;
    will-change: opacity, transform;
    transform: translateX(-50px);
}

@keyframes fadeInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.ncpa-logo.animate {
    animation: fadeInFromLeft 1s ease-out forwards;
}

.tagline {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left;
    opacity: 1;
    line-height: 1.2;
}

.bible-reference {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: left;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.komodo-logo {
    max-width: 120px;
}

/* Navbar */
.site-header {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    backdrop-filter: blur(5px); /* Blur effect */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    flex-shrink: 0;
    text-align: left;
    margin-bottom: 0;
}

.navbar-logo {
    max-width: 150px;
}

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

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0;
    position: relative;
}

.main-navigation li {
    position: relative;
}

.main-navigation li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.main-navigation li a:hover {
    color: rgb(126, 173, 237); /* NCPA blue on hover */
}

/* Sub-menu styles */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background for dropdown */
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    border-radius: 8px; /* Rounded corners for dropdown */
    overflow: hidden;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.main-navigation .sub-menu li {
    width: 100%;
}

.main-navigation .sub-menu li a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.main-navigation .sub-menu li a:hover {
    background-color: rgba(126, 173, 237, 0.2); /* NCPA blue subtle background */
    color: rgb(126, 173, 237);
}

/* Show dropdown on hover for desktop */
@media (min-width: 1305px) {
    .main-navigation li.has-dropdown:hover > .sub-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social icons inside main navigation (visible on desktop, hidden on mobile in header) */
.main-navigation .mobile-social-icons {
    display: flex; /* Display alongside menu links on desktop */
    align-items: center;
    gap: 15px;
    margin-left: 2em;
}

.mobile-social-icons a {
    color: white;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.mobile-social-icons a:hover {
    color: rgb(126, 173, 237);
}

/* Elements for the right side of the header on desktop and collapsed view */
.header-right-elements {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Desktop social icons (hidden on desktop, visible on collapsed header) */
.desktop-social-icons {
    display: flex; /* Show on desktop */
    align-items: center;
    gap: 15px;
}

.desktop-social-icons a {
    color: white;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.desktop-social-icons a:hover {
    color: rgb(126, 173, 237);
}

.menu-toggle {
    display: none; /* Hidden on desktop by default */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* Collapsed/Mobile navigation */
@media (max-width: 1305px) {
    .header-container {
        padding: 0 20px;
    }

    .site-branding {
        flex-shrink: 0;
        text-align: left;
        margin-bottom: 0;
    }

    .navbar-logo {
        max-width: 120px;
    }

    .header-right-section {
        gap: 15px;
    }

    .main-navigation {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: calc(100%);
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px 0;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 999;
    }

    .main-navigation.active {
        display: flex;
    }

    .main-navigation ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .main-navigation .sub-menu {
        display: none;
        position: static;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 0;
        margin: 0;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border-radius: 0;
    }

    .main-navigation .sub-menu.active {
        display: block;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-navigation li:last-child {
        border-bottom: none;
    }

    .main-navigation li a {
        padding: 15px 20px;
        text-align: left;
        display: block;
        width: 100%;
    }

    .main-navigation .has-dropdown {
        position: relative;
    }

    .main-navigation .has-dropdown > a {
        padding-right: 60px; /* Make space for the arrow */
    }

    .main-navigation .has-dropdown:after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        z-index: 10;
        border-radius: 4px;
    }

    .main-navigation .has-dropdown:hover:after {
        background-color: rgba(126, 173, 237, 0.2);
        color: rgb(126, 173, 237);
    }

    .main-navigation .has-dropdown.active:after {
        transform: rotate(180deg);
    }

    .main-navigation .sub-menu li a {
        padding-left: 40px;
    }

    /* Mobile social icons: visible within the active mobile menu */
    .main-navigation .mobile-social-icons {
        display: flex;
        flex-basis: 100%;
        justify-content: center;
        margin-top: 20px;
        margin-left: 0;
        margin-bottom: 0;
    }

    /* Desktop navigation elements (now hidden) */
    .main-navigation ul, .main-navigation .mobile-social-icons {
        display: none;
    }

    .main-navigation.active ul, .main-navigation.active .mobile-social-icons {
        display: flex;
    }

    .menu-toggle {
        display: block;
        order: 2;
        margin-left: 0px;
    }

    .desktop-social-icons {
        display: flex;
        order: 1;
        margin-right: 15px;
        margin-left: auto;
    }

    /* Ensure the toggle doesn't move when menu is open */
    .main-navigation.active + .header-right-elements .menu-toggle {
        position: relative;
        z-index: 1001;
    }

    .main-navigation.active + .header-right-elements .desktop-social-icons {
        display: none;
    }
}

@media (max-width: 500px) {
    body {
        font-size: 14px;
    }
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }
    
    .tagline {
        font-size: 2.2em;
    }

    .hero-section {
        height: 35vh;
    }
    
    .sponsors-section {
        padding: 30px 15px;
    }
    
    .sponsor-slide img {
        height: 40px;
    }
}

/* Sponsor Slideshow Section */
.sponsor-slideshow-section {
    background-color: #000000;
    padding: 0;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    line-height: 0;
}

.sponsor-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 0;
    line-height: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
}

.sponsor-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    will-change: transform;
    position: relative;
    padding: 0;
    margin: 0;
    line-height: 0;
    transition: none;
}

.sponsor-slide {
    flex: 0 0 auto;
    position: relative;
    padding: 15px 80px;
    background: #000000;
    margin: 0;
    margin-right: 30px; /* Consistent gap between slides */
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 40px 100%);
}

.sponsor-slide:nth-child(even) {
    background: #000000;
}

.sponsor-slide:first-child {
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
}

.sponsor-slide:last-child {
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
    margin-right: 0;
}





.sponsor-slide img {
    display: block;
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    pointer-events: none;
}

.sponsor-slide a {
    pointer-events: all;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 35vh;
        background-position: center center;
        background-size: cover;
    }

    .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }

    .ncpa-logo {
        max-width: 280px;
        margin-bottom: 10px;
    }

    .tagline {
        font-size: 1.6em;
        margin-bottom: 5px;
    }

    .bible-reference {
        font-size: 0.9em;
        margin-bottom: 10px;
    }

    .powered-by {
        gap: 5px;
    }

    .powered-by p {
        font-size: 0.9em;
    }

    .komodo-logo {
        max-width: 80px;
    }
    
    .sponsor-slide {
        padding: 10px 60px;
        margin-right: 20px;
        clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 30px 100%);
    }



    .sponsor-slide:last-child {
        clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
        margin-right: 0;
    }

    .sponsor-slide img {
        display: block;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 1.3em;
    }

    .ncpa-logo {
        max-width: 220px;
    }

    .komodo-logo {
        max-width: 70px;
    }
    
    .sponsor-slide {
        padding: 10px 45px;
        margin-right: 15px;
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
    }

    .sponsor-slide:first-child {
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
    }



    .sponsor-slide img {
        display: block;
        height: 30px;
    }
}

/* Sponsors Message Section */
.sponsors-section {
    background-color: #1a1a1a;
    text-align: center;
    padding: 40px 20px;
    border-radius: 0px;
    margin-top: 0;
}

.sponsors-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.sponsor-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-text {
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 30px;
    color: rgb(126, 173, 237);
}

.sponsor-carousel {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1400px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 250px; /* Minimum width for each slide */
}

.sponsor-carousel img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-carousel img:hover {
    transform: scale(1.05);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: rgb(126, 173, 237);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

/* Responsive adjustments for sponsor carousel */
@media (max-width: 768px) {
    .sponsor-carousel {
        padding: 0 20px;
    }
    
    .swiper-slide {
        min-width: 200px;
        padding: 0 10px;
    }
    
    .sponsor-carousel img {
        height: 100px;
    }
}

/* Footer */
.site-footer {
    background-color: black; /* Consistent dark theme */
    color: white;
    padding: 40px 0;
    text-align: center;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.site-info {
    margin: 0;
    padding: 0;
}

.site-info p {
    margin: 0;
    padding: 0;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-social-icons a,
.footer-contact-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social-icons a:hover,
.footer-contact-links a:hover {
    color: rgb(126, 173, 237);
}

/* Mobile Footer Responsive Styles */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0;
    }
    
    .site-footer .container {
        gap: 20px;
        padding: 0 15px;
    }
    
    .footer-social-icons {
        gap: 15px;
    }
    
    .footer-contact-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-contact-links a {
        font-size: 16px;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 25px 0;
    }
    
    .site-footer .container {
        gap: 15px;
        padding: 0 10px;
    }
    
    .site-info p {
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }
    
    .footer-social-icons {
        gap: 12px;
    }
    
    .footer-social-icons a {
        font-size: 16px;
    }
    
    .footer-contact-links {
        gap: 8px;
    }
    
    .footer-contact-links a {
        font-size: 14px;
        padding: 5px 0;
        display: block;
        width: 100%;
        text-align: center;
    }
}



.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.info-card i {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: rgb(126, 173, 237);
}

.info-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
}

.info-card p {
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.junior-ages {
    color: #7EADED !important;
    font-style: italic;
    font-size: 0.9em;
    margin-bottom: 15px !important;
    text-align: center;
}

.action-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgb(126, 173, 237);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: auto;
}

.action-button:hover {
    background-color: transparent;
    border-color: rgb(126, 173, 237);
    color: rgb(126, 173, 237);
}

.youtube-button {
    background-color: #ff0000;
}

.youtube-button:hover {
    background-color: transparent;
    border-color: #ff0000;
    color: #ff0000;
}

/* Junior Card Styling */
.info-card.junior .action-button {
    background-color: #7EADED;
    border-color: #7EADED;
}

.info-card.junior .action-button:hover {
    background-color: transparent;
    border-color: #7EADED;
    color: #7EADED;
}

.info-card.junior i {
    color: #7EADED;
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .section-intro {
        font-size: 1.1em;
        padding: 0 20px;
    }
}

/* Info Cards Section */
.info-cards-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.info-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(126, 173, 237, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.info-cards-section .container {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for Info Cards section */
@media (max-width: 768px) {
    .info-cards-section {
        padding: 40px 0;
    }
}

.bird-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

/* Hide scrollbar */
.sponsor-scroll::-webkit-scrollbar {
    display: none;
}
.sponsor-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
} 

/* Numbers Section */
.numbers-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(126, 173, 237, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.numbers-section h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

.numbers-section .section-intro {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Numbers Grid - Flexible Masonry Layout */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 600px;
}

.number-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Number Icons */
.number-icon {
    font-size: 2.2em;
    color: #7EADED;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(126, 173, 237, 0.4);
    transition: all 0.3s ease;
}

.number-card:hover .number-icon {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(126, 173, 237, 0.6);
}

/* Image Cards */
.number-image-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

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

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



/* Masonry-style Brick Layout */
.number-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    min-height: 180px;
}

.number-card:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
    min-height: 160px;
}

.number-image-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    min-height: 160px;
}

.number-card:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    min-height: 160px;
}

.number-card:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    min-height: 120px;
}

.number-image-card:nth-child(6) {
    grid-column: 2 / 4;
    grid-row: 3 / 4;
    min-height: 120px;
}

.number-card:nth-child(7) {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
    min-height: 120px;
}

.number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(126, 173, 237, 0.1), rgba(74, 144, 226, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 13px;
}

.number-card:hover {
    transform: translateY(-5px);
    border-color: rgba(126, 173, 237, 0.5);
    box-shadow: 0 10px 30px rgba(126, 173, 237, 0.2);
}

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

.number-card:nth-child(even):hover {
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.number-value {
    font-size: 2.8em;
    font-weight: 800;
    color: #7EADED;
    margin-bottom: 8px;
    position: relative;
    z-index: 3;
    line-height: 1;
    word-break: break-word;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.number-card:nth-child(even) .number-value {
    color: #4A90E2;
}

.number-label {
    font-size: 0.9em;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Chart Container - Enhanced */
.chart-container {
    background: linear-gradient(135deg, rgba(126, 173, 237, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    border-radius: 25px;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(126, 173, 237, 0.3);
    max-width: 100%;
    margin: 40px 0 0 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.chart-container:hover {
    transform: translateY(-5px);
    border-color: rgba(126, 173, 237, 0.5);
    box-shadow: 0 25px 50px rgba(126, 173, 237, 0.2);   
}

.chart-container h3 {
    color: #ffffff;
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(126, 173, 237, 0.5);
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.chart-subtitle {
    color: #7EADED;
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
}

#growthChart {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(126, 173, 237, 0.1), rgba(74, 144, 226, 0.1));
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 500px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(140px, auto);
        gap: 15px;
    }
    
    .number-card, .number-image-card {
        padding: 15px 8px;
    }
    
    .number-icon {
        font-size: 1.8em;
        margin-bottom: 6px;
    }
    
    /* Reset all positioning for tablet - simple 2-column stack */
    .number-card:nth-child(1),
    .number-card:nth-child(2),
    .number-image-card:nth-child(3),
    .number-card:nth-child(4),
    .number-card:nth-child(5),
    .number-image-card:nth-child(6),
    .number-card:nth-child(7) {
        grid-column: auto;
        grid-row: auto;
        min-height: 140px;
    }
    
    .number-value {
        font-size: 2.2em;
    }
    
    .number-label {
        font-size: 0.8em;
    }
    
    .chart-container {
        padding: 40px 20px;
        margin: 30px 0 0 0;
    }
    
    .chart-container h3 {
        font-size: 2.2em;
    }
    
    .chart-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
    }
    
    .chart-container {
        padding: 20px 15px;
    }
    
    .chart-container h3 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    
    .chart-subtitle {
        font-size: 1.1em;
        margin-bottom: 25px;
    }
    
    #growthChart {
        width: 100%;
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .numbers-section h2 {
        font-size: 2em;
    }
    
    .numbers-section .section-intro {
        font-size: 1.1em;
        padding: 0 20px;
    }
}

/* Medium tablet breakpoint */
@media (max-width: 900px) and (min-width: 481px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(150px, auto);
        gap: 18px;
    }
    
    .number-card, .number-image-card {
        padding: 18px 12px;
    }
    
    .number-icon {
        font-size: 2em;
        margin-bottom: 8px;
    }
    
    /* Reset all positioning for medium tablets */
    .number-card:nth-child(1),
    .number-card:nth-child(2),
    .number-image-card:nth-child(3),
    .number-card:nth-child(4),
    .number-card:nth-child(5),
    .number-image-card:nth-child(6),
    .number-card:nth-child(7) {
        grid-column: auto;
        grid-row: auto;
        min-height: 150px;
    }
    
    .number-value {
        font-size: 2.5em;
    }
    
    .number-label {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .numbers-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(120px, auto);
        gap: 15px;
    }
    
    .number-card, .number-image-card {
        padding: 20px 15px;
    }
    
    .number-icon {
        font-size: 1.8em;
        margin-bottom: 8px;
    }
    
    /* Mobile single column layout */
    .number-card:nth-child(1),
    .number-card:nth-child(2),
    .number-image-card:nth-child(3),
    .number-card:nth-child(4),
    .number-card:nth-child(5),
    .number-image-card:nth-child(6),
    .number-card:nth-child(7) {
        grid-column: auto;
        grid-row: auto;
        min-height: 120px;
    }
    
    .number-value {
        font-size: 2.2em;
    }
    
    .number-label {
        font-size: 0.8em;
        letter-spacing: 0.5px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0 5px;
    }
    
    .chart-container {
        padding: 30px 15px;
        margin: 20px auto 0;
    }
    
    .chart-container h3 {
        font-size: 1.8em;
    }
    
    #growthChart {
        height: 300px;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Hide scrollbar */
.sponsor-scroll::-webkit-scrollbar {
    display: none;
}
.sponsor-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
} 

/* Join the Movement Section */
.join-movement-section {
    padding: 80px 0 120px 0;
    background: linear-gradient(135deg, rgba(126, 173, 237, 0.1), rgba(74, 144, 226, 0.1));
    position: relative;
}

.join-movement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(126, 173, 237, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.join-movement-section h2 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.movement-intro {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #e0e0e0;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 2;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.role-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.role-card:hover {
    border-color: rgba(126, 173, 237, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(126, 173, 237, 0.2);
}

.role-card:nth-child(even):hover {
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.role-header {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
}

.role-header i {
    font-size: 1.5em;
    color: #7EADED;
}

.role-card:nth-child(even) .role-header i {
    color: #4A90E2;
}

.role-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.3em;
    color: #fff;
    text-align: left;
    font-weight: 500;
}

.toggle-icon {
    transition: transform 0.3s ease;
    color: #e0e0e0;
}

.role-card.active .toggle-icon {
    transform: rotate(180deg);
}

.role-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.role-card.active .role-content {
    max-height: 600px;
    padding: 20px;
}

.role-content p {
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.6;
}

.role-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.role-content li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.role-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7EADED;
}

.role-card:nth-child(even) .role-content li::before {
    color: #4A90E2;
}

/* Player Choice Styling */
.player-choice-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.choice-button {
    padding: 10px 20px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #7EADED, #4A90E2);
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9em;
    font-family: 'Lexend Peta', sans-serif;
}

.choice-button:hover,
.choice-button.active {
    background: linear-gradient(135deg, #4A90E2, #7EADED);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(126, 173, 237, 0.4);
}

.choice-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(126, 173, 237, 0.3);
}

.choice-content ul {
    margin-bottom: 20px;
}

.action-link {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #7EADED, #4A90E2);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.action-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(126, 173, 237, 0.4);
    background: linear-gradient(135deg, #4A90E2, #7EADED);
}

.inquire-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.inquire-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: #7EADED;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.inquire-button:hover {
    background: #4A90E2;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(126, 173, 237, 0.3);
}

.inquire-button i {
    transition: transform 0.3s ease;
}

.inquire-button:hover i {
    transform: translateX(5px);
}

.inquire-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    font-style: italic;
    line-height: 1.4;
}

/* Responsive Design for Join Movement */
@media (max-width: 768px) {
    .join-movement-section {
        padding: 60px 0 100px 0;
    }

    .join-movement-section h2 {
        font-size: 2em;
    }

    .movement-intro {
        font-size: 1.1em;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .role-header {
        padding: 15px;
    }

    .role-header h3 {
        font-size: 1.2em;
    }

    .role-card.active .role-content {
        padding: 15px;
    }

    .inquire-button {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .join-movement-section {
        padding: 40px 0 80px 0;
    }

    .join-movement-section h2 {
        font-size: 1.8em;
    }

    .movement-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .roles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .role-header {
        padding: 12px;
        gap: 10px;
    }

    .role-header i {
        font-size: 1.3em;
    }

    .role-header h3 {
        font-size: 1.1em;
    }

    .role-card.active .role-content {
        padding: 12px;
    }

    .role-content p {
        font-size: 0.95em;
        margin-bottom: 15px;
    }

    .role-content li {
        font-size: 0.9em;
        margin-bottom: 10px;
    }

    .inquire-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

/* Hide scrollbar */
.sponsor-scroll::-webkit-scrollbar {
    display: none;
}
.sponsor-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
} 

/* Competition Pathway Section */
.competition-pathway-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(126, 173, 237, 0.1), rgba(74, 144, 226, 0.1));
    position: relative;
    overflow: hidden;
}

.competition-pathway-section h2 {
    margin-top: 0;
}

.pathway-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.pathway-link:hover {
    transform: translateY(-5px);
}

.pathway-link:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(126, 173, 237, 0.6);
} 