* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #245c3d;
            --secondary-color: #d62929;
            --text-dark: #1a1a1a;
            --text-light: #6b7280;
            --bg-light: #fafafa;
            --white: #ffffff;
            --border-color: #e5e7eb;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
        }


        /* Slider Section */
        .slider-section {
            padding: 80px 20px;
            /* background: linear-gradient(135deg, var(--primary-color) 30%, rgb(98, 230, 175) 70%); */
            background: rgb(243, 238, 238, 0.95);
        }

        .slider-container {
            max-width: 1600px;
            margin: 0 auto;
            width: 100%;
            height: 600px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
        }

        /* Image Background Slider */
        .image-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .image-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.7s ease;
        }

        .image-slide.active {
            opacity: 1;
            z-index: 1;
        }

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

        /* Dark overlay for better text readability */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
            z-index: 2;
        }


        /* Content positioned at bottom-right */
        .content-container {
            position: absolute;
            bottom: 60px;
            right: 60px;
            max-width: 500px;
            z-index: 3;
        }

        .content-slider {
            position: relative;
            height: auto;
        }

        .content-slide {
            position: absolute;
            width: 100%;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .content-slide.active {
            position: relative;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        /* .content-box {
            background: rgba(255, 255, 255, 0.95);;
            backdrop-filter: blur(10px);
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        } */

        .content-box {
            background: transparent;
            padding: 35px;
            border-radius: 16px;
        }

        .slide-number {
            font-size: 12px;
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
            display: inline-block;
        }

        .slide-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .slide-description {
            font-size: 15px;
            color: var(--white);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .see-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px 0 rgba(102, 126, 234, 0.4);
        }

        .see-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 0 rgba(224, 71, 71, 0.5);
            background: #da2323;
        }

        .see-more-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .see-more-btn:hover svg {
            transform: translateX(4px);
        }

        /* Navigation - Circular arrows positioned at sides */
        .slider-navigation {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 40px;
            z-index: 4;
            pointer-events: none;
        }

        .nav-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            pointer-events: auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .nav-btn:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .nav-btn svg {
            width: 24px;
            height: 24px;
        }

        /* Progress dots at bottom center */
        .progress-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 4;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .dot.active {
            width: 36px;
            border-radius: 5px;
            background: var(--white);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-container {
                bottom: 40px;
                right: 40px;
                max-width: 400px;
            }

            .slide-title {
                font-size: 24px;
            }

            .content-box {
                padding: 28px;
            }
        }

        @media (max-width: 768px) {
            .slider-container {
                height: 500px;
            }

            .content-container {
                bottom: 30px;
                right: 20px;
                left: 20px;
                max-width: none;
            }

            .content-box {
                padding: 24px;
            }

            .slide-title {
                font-size: 20px;
            }

            .slide-description {
                font-size: 14px;
            }

            .nav-btn {
                width: 48px;
                height: 48px;
            }

            .slider-navigation {
                padding: 0 20px;
            }

            .progress-dots {
                bottom: 30px;
            }
        }

        /* Countdown Timer Section */
        .countdown-section {
            padding: 60px 20px;
            background-color: var(--white);
        }

        .countdown-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .countdown-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            
            background: maroon;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .countdown-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .events-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center;
        }

        .event-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            border: 2px solid var(--border-color);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
             /* --- CRITICAL --- */
            flex: 0 1 calc(50% - 15px); /* exactly two per row */
            max-width: calc(50% - 15px);
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        }

        .event-logo {
            /* width: 300px; */
            width: 80px;
            height: 80px;
            background: rgb(250, 248, 248);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-bottom: 15px;
        }

        .event-logo svg {
            width: 40px;
            height: 40px;
            color: var(--white);
        }

        .event-logo img {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .event-content {
            padding: 10px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .event-name {
            font-size: 22px;
            font-weight: 700;
            color: maroon;
            margin-bottom: 5px;
        }

        .event-description {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .event-timer {
            display: flex;
            gap: 15px;
            margin-bottom: 5px;
            margin-top: 10px; 
        }

        .timer-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .timer-value {
            font-size: 28px; /* Increased from 24px */
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 5px; 
        }

        .timer-label {
            font-size: 12px; 
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }


        

        .events-grid > .event-card:last-child:nth-child(odd) {
            margin-left: auto;
            margin-right: auto;
        }


        .register-btn {
            margin-top: auto;
            padding: 10px 20px;
            
            background: red;
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            align-self: flex-start;
        }

        .register-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        /* BOA History Section */
        .boa-history-section {
            padding: 80px 20px;
            background-color: var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .boa-history-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .boa-history-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 40px;
        }

        .boa-history-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            height: 500px;
        }

        .boa-history-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .boa-history-image:hover img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(36, 92, 61, 0.2) 0%, rgba(214, 41, 41, 0.2) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .boa-history-image:hover .image-overlay {
            opacity: 1;
        }

        .boa-history-text {
            padding: 20px 0;
        }

        .section-label {
            display: inline-block;
            padding: 6px 16px;
            
            background: rgb(148, 1, 1);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 20px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 18px;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px 0 rgba(102, 126, 234, 0.4);
            margin-top: 10px;
        }

        .read-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 0 rgba(102, 126, 234, 0.5);
        }

        .read-more-btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .read-more-btn:hover svg {
            transform: translateX(5px);
        }

        .boa-history-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 40px;
            background: var(--bg-light);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: var(--white);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            display: block;
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Responsive Design for BOA History Section */
        @media (max-width: 992px) {
            .boa-history-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .boa-history-image {
                height: 400px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .boa-history-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .boa-history-section {
                padding: 80px 20px;
            }
            
            .boa-history-image {
                height: 350px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .section-description {
                font-size: 16px;
            }
            
            .boa-history-stats {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 30px 20px;
            }
            
            .stat-number {
                font-size: 36px;
            }
        }

        @media (max-width: 576px) {
            .boa-history-image {
                height: 300px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .read-more-btn {
                padding: 14px 24px;
                font-size: 14px;
            }
        }

        /* Activities Section - Updated based on Figma */
        .activities-section {
            padding: 60px 20px;
            background-color: var(--bg-light);
        }

        .activities-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .activities-header {
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 20px;
        }

        .header-content {
            max-width: 600px;
        }

        .activities-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            
            background: maroon;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .activities-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .see-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background-color: var(--white);
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .see-all-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(210, 41, 41, 0.4);
            color: var(--white);
        }

        .see-all-btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .see-all-btn:hover svg {
            transform: translateX(3px);
        }

        .activities-slider {
            position: relative;
            overflow-x: hidden;
            border-radius: 16px;
        }

        .activities-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 30px;
            padding: 0 15px;
        }

        .activity-card {
            min-width: calc(33.333% - 20px);
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

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

        .activity-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .activity-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .activity-card:hover .activity-image img {
            transform: scale(1.1);
        }

        .activity-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 6px 12px;
            background: var(--white);
            color: var(--primary-color);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .activity-content {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .activity-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .activity-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-light);
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .activity-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
            font-size: 13px;
            color: var(--text-light);
        }

        .activity-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .activity-meta-item svg {
            width: 14px;
            height: 14px;
        }

        .activity-author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .author-info p {
            font-size: 12px;
            color: var(--text-light);
        }

        .read-activity-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 16px;
            align-self: flex-start;
        }

        .read-activity-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .read-activity-btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .read-activity-btn:hover svg {
            transform: translateX(3px);
        }

        .activities-navigation {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .activities-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--border-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .activities-nav-btn:hover {
            
            background: rgb(182, 1, 1);
            border-color: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .activities-nav-btn svg {
            width: 20px;
            height: 20px;
        }

        .activities-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .activities-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .activities-dot.active {
            width: 30px;
            border-radius: 5px;
            background: var(--secondary-color);
        }

        /* Responsive adjustments for the new button */
        @media (max-width: 768px) {
            .activities-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .see-all-btn {
                align-self: flex-start;
                margin-top: 10px;
            }
        }



        /* Sponsors Section */
        .sponsors-section {
            padding: 60px 20px;
            background-color: var(--border-color); 
        }

        .sponsors-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .sponsors-header {
            text-align: center;
            margin-bottom: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .olympic-rings {
            margin-bottom: 20px;
        }

        .sponsors-title {
            font-size: 32px;
            font-weight: 900;
            color: #020000; 
            margin-bottom: 15px;
        }

        .sponsors-subtitle {
            font-size: 16px;
            color: #e0e0e0; /* Light gray text for dark background */
            max-width: 500px;
            margin: 0 auto;
        }

       
        .sponsors-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;

            justify-content: center; 
            align-items: center;

            max-width: 1200px;
            margin: 0 auto;
        }

        .sponsor-cell {
            flex: 0 0 calc((100% - (5 * 30px)) / 6);
            max-width: calc((100% - (5 * 30px)) / 6);

            display: flex;
            justify-content: center;
        }


        .sponsor-item {
            width: 120px;
            height: 120px;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 20px;
            background: #fff;
            border-radius: 50%;

            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .sponsor-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-light);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sponsor-item:hover::before {
            opacity: 0.1;
        }

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

        .sponsor-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            opacity: 0.9;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .sponsor-item:hover .sponsor-logo {
            opacity: 1;
        }



        /* Responsive adjustments for sponsors */
        @media (max-width: 992px) {
            .sponsors-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .sponsors-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .sponsor-item {
                height: 100px;
                width: 100px;
            }
        }

        @media (max-width: 576px) {
            .sponsors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .sponsor-item {
                height: 90px;
                width: 90px;
            }
        }

        /* Affliated Org Section */
        .aff-with-section {
            padding: 60px 20px;
            background-color: var(--white); 
        }

        .aff-with-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .aff-with-header {
            text-align: center;
            margin-bottom: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

       

        .aff-with-title {
            font-size: 32px;
            font-weight: 900;
            color: #020000; 
            margin-bottom: 15px;
        }

        .aff-with-subtitle {
            font-size: 16px;
            color: #e0e0e0; /* Light gray text for dark background */
            max-width: 500px;
            margin: 0 auto;
        }

        .aff-with-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 30px;
            align-items: center;
        }


       

        .aff-with-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgb(255, 255, 255); 
            border-radius: 50%; 
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            height: 120px;
            width: 120px;
            margin: 0 auto; 
        }


        .aff-with-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-light);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .aff-with-item:hover::before {
            opacity: 0.1;
        }

        .aff-with-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        .aff-with-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            opacity: 0.9;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .aff-with-item:hover .aff-with-logo {
            opacity: 1;
        }



        /* Responsive adjustments for Affliated Orgs */
        @media (max-width: 992px) {
            .aff-with-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .aff-with-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .aff-with-item {
                height: 100px;
                width: 100px;
            }
        }

        @media (max-width: 576px) {
            .aff-with-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .aff-with-item {
                height: 90px;
                width: 90px;
            }
        }


        
       /* Featured Athletes Section - Updated */
        .featured-athletes-section {
            padding: 40px 20px;
            background-color: var(--bg-light);
        }

        .featured-athletes-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .featured-athletes-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
            max-width: 100%;
        }

        .header-content {
            max-width: 600px;
        }

        .featured-athletes-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            background: maroon;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .featured-athletes-subtitle {
            font-size: 18px;
            color: grey;
            max-width: 600px;
            margin: 0 auto 0 0;
        }

        /* See All Button */
        .see-all-athletes-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background-color: var(--white);
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .see-all-athletes-btn:hover {
            background-color: var(--secondary-color);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .see-all-athletes-btn svg {
            transition: transform 0.3s ease;
        }

        .see-all-athletes-btn:hover svg {
            transform: translateX(3px);
        }

        /* Rest of the CSS remains the same */
        .athletes-card-slider {
            position: relative;
            padding: 0 60px;
        }

        .athletes-card-slider-wrapper {
            overflow: hidden;
            border-radius: 20px;
        }

        .athletes-card-slider-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 25px;
        }

        .athlete-card {
            min-width: 280px;
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

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

        .athlete-card-image {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
        }

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

        .athlete-card:hover .athlete-card-image img {
            transform: scale(1.1);
        }

        /* Info Capsule */
        .athlete-info-capsule {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgb(255, 73, 73);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .athlete-info-capsule::before {
            content: '🏆';
            font-size: 14px;
        }

        .athlete-card-content {
            padding: 25px 20px;
        }

        .athlete-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .athlete-sport {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .athlete-sport::before {
            content: '🎯';
            font-size: 12px;
        }

        .athlete-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding: 15px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

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

        .athlete-stat-value {
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 4px;
        }

        .athlete-stat-label {
            font-size: 11px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .athlete-bio {
            font-size: 13px;
            line-height: 1.5;
            color: var(--text-light);
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .athlete-achievements {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .achievement-badge {
            padding: 4px 10px;
            background: var(--bg-light);
            color: var(--primary-color);
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
        }

        /* Navigation Buttons */
        .athletes-card-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--border-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .athletes-card-nav-btn:hover {
            background: var(--secondary-color);
            border-color: var(--primary-color);
            transform: translateY(-50%) scale(1.1);
        }

        .athletes-card-nav-btn:hover svg {
            color: var(--white);
        }

        .athletes-card-nav-btn svg {
            width: 20px;
            height: 20px;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .athletes-card-prev-btn {
            left: 0;
        }

        .athletes-card-next-btn {
            right: 0;
        }

        /* Progress Dots */
        .athletes-card-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .athlete-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .athlete-dot.active {
            width: 24px;
            border-radius: 4px;
            background: var(--secondary-color);
        }

        /* Responsive Design for Athletes Card Slider */
        @media (max-width: 1200px) {
            .athlete-card {
                min-width: 260px;
            }
        }

        @media (max-width: 992px) {
            .athlete-card {
                min-width: 240px;
            }
            
            .athlete-card-image {
                height: 280px;
            }
            
            .athlete-name {
                font-size: 20px;
            }
            
            .featured-athletes-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .see-all-athletes-btn {
                align-self: flex-end;
            }
        }

        @media (max-width: 768px) {
            .featured-athletes-section {
                padding: 80px 20px;
            }
            
            .featured-athletes-title {
                font-size: 32px;
            }
            
            .athletes-card-slider {
                padding: 0 50px;
            }
            
            .athlete-card {
                min-width: 220px;
            }
            
            .athlete-card-image {
                height: 260px;
            }
            
            .athlete-card-content {
                padding: 20px 15px;
            }
            
            .athlete-name {
                font-size: 18px;
            }
            
            .athlete-stat-value {
                font-size: 18px;
            }
            
            .see-all-athletes-btn {
                padding: 10px 16px;
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .athletes-card-slider {
                padding: 0 40px;
            }
            
            .athlete-card {
                min-width: 200px;
            }
            
            .athlete-card-image {
                height: 240px;
            }
            
            .athlete-info-capsule {
                top: 10px;
                left: 10px;
                padding: 4px 10px;
                font-size: 10px;
            }
            
            .athlete-card-content {
                padding: 15px 12px;
            }
            
            .athlete-name {
                font-size: 16px;
            }
            
            .athlete-sport {
                font-size: 12px;
            }
            
            .athlete-stat-value {
                font-size: 16px;
            }
            
            .athlete-bio {
                font-size: 12px;
            }
            
            .athletes-card-nav-btn {
                width: 40px;
                height: 40px;
            }
            
            .athletes-card-nav-btn svg {
                width: 16px;
                height: 16px;
            }
            
            .see-all-athletes-btn {
                padding: 8px 14px;
                font-size: 13px;
            }
        }


        /* Featured Moments Section */
        .featured-moments-section {
            padding: 100px 20px;
            background-color: var(--bg-light);
        }

        .featured-moments-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .featured-moments-header {
            margin-bottom: 60px;
            text-align: center;
        }

        .featured-moments-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            
            background: var(--secondary-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .featured-moments-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* .moments-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 300px);
            gap: 20px;
            margin-bottom: 50px;
        } */

        .moment-card {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .moment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .moment-card.large {
            grid-column: span 1;
            grid-row: span 2;
        }

        .moment-card.wide {
            grid-column: span 2;
            grid-row: span 1;
        }

        .moment-image {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .moment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .moment-card:hover .moment-image img {
            transform: scale(1.1);
        }

        .moment-overlay {
            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) 50%, transparent 100%);
            padding: 30px 25px 25px;
            color: var(--white);
            transform: translateY(20px);
            transition: all 0.3s ease;
            opacity: 0;
        }

        .moment-card:hover .moment-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .moment-category {
            display: inline-block;
            padding: 6px 12px;
            background: var(--secondary-color);
            color: var(--white);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .moment-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .moment-card.large .moment-title {
            font-size: 28px;
        }

        .moment-description {
            font-size: 14px;
            line-height: 1.5;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .moment-card.large .moment-description {
            font-size: 16px;
        }

        .moment-meta {
            display: flex;
            gap: 15px;
            font-size: 12px;
            opacity: 0.8;
        }

        .moment-date,
        .moment-sport {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .moment-date::before {
            content: '📅';
        }

        .moment-sport::before {
            content: '🏆';
        }

        .moments-view-more {
            text-align: center;
        }


        /* Update the moments gallery to accommodate the view all card */
        .moments-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            grid-template-rows: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }

        /* Add specific styles for the view all card */
        .moment-card[data-id="view-all"] {
            grid-column: span 1;
            grid-row: span 1;
            
            background: transparent;
            color: var(--white);
        }

        .moment-card[data-id="view-all"] .moment-image {
            height: 100%;
        }

        .moment-card[data-id="view-all"] .moment-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
            padding: 20px 25px 15px;
        }

        .moment-card[data-id="view-all"] .moment-category {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .moment-card[data-id="view-all"] .moment-title {
            color: var(--white);
        }

        .moment-card[data-id="view-all"] .moment-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .moment-card[data-id="view-all"] .moment-meta {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Hide the view more button when viewing all */
        .moments-view-more.view-all-active {
            display: none;
        }

        /* .view-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px 0 rgba(102, 126, 234, 0.4);
        }

        .view-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 0 rgba(102, 126, 234, 0.5);
        }

        .view-more-btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .view-more-btn:hover svg {
            transform: translateX(5px);
        } */

        /* View All Achievements Card */
        .view-all-achievement-container {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .view-all-achievement-card {
           background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            border: 2px solid var(--border-color);
            text-align: center;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .view-all-achievement-card:hover {
           transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        }

        .view-all-achievement-icon {
            width: 100%;
            max-width: 120px;
            height: 100%;
            max-height: 120px;
            margin-bottom: 15px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1/1;
            overflow: hidden;
            border-radius: 50%;
            background-color: var(--bg-light);
            padding: 10px;
        }

        .view-all-achievement-icon img {
             max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .view-all-achievement-card:hover .view-all-achievement-icon img {
            transform: scale(1.1);
        }

        .view-all-achievement-content {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .view-all-achievement-content-text {
            text-align: center;
            padding: 0 15px;
        }

        .view-all-achievement-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px; 
            text-align: center;
            padding-top: 80px;
        }

        .view-all-achievement-subtitle {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.4;
        }

        .view-all-achievement-arrow {
            width: 20px;
            height: 20px;
            color: var(--text-light);
            transition: transform 0.3s ease;
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
        }

        .view-all-achievement-card:hover .view-all-achievement-arrow {
            transform: translateX(5px);
            color: var(--primary-color);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .view-all-achievement-container {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .view-all-achievement-card {
                padding: 25px;
                min-height: 180px;
            }
            
            .view-all-achievement-icon {
                max-width: 100px;
                max-height: 100px;
                margin-bottom: 12px;
            }
            
            .view-all-achievement-title {
                font-size: 16px;
            }
            
            .view-all-achievement-subtitle {
                font-size: 13px;
            }

            .view-all-achievement-arrow {
                bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .view-all-achievement-container {
                grid-template-columns: 1fr;
            }
            
            .view-all-achievement-card {
                padding: 20px;
                min-height: 160px;
            }
            
            .view-all-achievement-icon {
                max-width: 80px;
                max-height: 80px;
                margin-bottom: 10px;
            }
            
            .view-all-achievement-title {
                font-size: 14px;
            }
            
            .view-all-achievement-subtitle {
                font-size: 12px;
            }

            .view-all-achievement-arrow {
                bottom: 10px;
            }
        }

        /* Responsive Design for Featured Moments */
        @media (max-width: 992px) {
            .moments-gallery {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(3, 300px);
            }
            
            .moment-card.large {
                grid-column: span 2;
                grid-row: span 2;
            }
            
            .moment-card.wide {
                grid-column: span 3;
            }
        }

        @media (max-width: 768px) {
            .featured-moments-section {
                padding: 80px 20px;
            }
            
            .featured-moments-title {
                font-size: 32px;
            }
            
            .moments-gallery {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(4, 250px);
            }
            
            .moment-card.large {
                grid-column: span 2;
                grid-row: span 2;
            }
            
            .moment-card.wide {
                grid-column: span 2;
            }
        }

        @media (max-width: 576px) {
            .moments-gallery {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, 200px);
            }
            
            .moment-card.large,
            .moment-card.wide {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 60px 20px;
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .newsletter-content {
            background: rgba(243, 238, 238, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 60px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .newsletter-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: rgb(241, 35, 35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-icon svg {
            width: 40px;
            height: 40px;
            color: var(--white);
        }

        .newsletter-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .newsletter-subtitle {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .newsletter-input {
            flex: 1;
            padding: 16px 24px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(36, 92, 61, 0.1);
        }

        .newsletter-input::placeholder {
            color: var(--text-light);
        }

        .newsletter-btn {
            padding: 16px 32px;
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .newsletter-btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .newsletter-btn:hover svg {
            transform: translateX(3px);
        }

        .newsletter-privacy {
            font-size: 14px;
            color: var(--text-light);
        }

        .newsletter-privacy a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .newsletter-privacy a:hover {
            text-decoration: underline;
        }

        

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: var(--white);
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-header {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .modal-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-body {
            padding: 40px;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background: var(--white);
            transform: rotate(90deg);
        }

        .modal-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .modal-text {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-light);
        }

        /* Contact Modal */
        .contact-modal-body {
            padding: 40px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

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

        .form-group label {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px 16px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        /* News Section */
        .news-section {
            padding: 50px 20px;
            background-color: var(--border-color);
        }

        .news-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .news-header {
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 20px;
        }

        .header-content{
            max-width: 600px;
        }

        .news-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
            
            background: maroon;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .news-subtitle {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .news-slider-container {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
        }

        .news-slider-wrapper {
            flex: 1;
            overflow: hidden;
            border-radius: 20px;
        }

        .news-slider-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 30px;
        }

        .news-card {
            /* min-width: calc(33.333% - 20px); */
            flex: 0 0 calc(33.333% - 20px);
            max-width: calc(33.333% - 20px);
            display: flex;
            flex-direction: column;
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

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

        .news-card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .news-card-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

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

        .news-card-content {
             display: flex;
             flex-direction: column;
             flex-grow: 1;
             padding: 25px;
        }

        .news-card-date {
            font-size: 12px;
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .news-card-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-light);
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .news-card-link:hover {
            gap: 12px;
        }

        .news-card-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .news-card-link:hover svg {
            transform: translateX(3px);
        }

        .news-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--border-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }

        .news-nav-btn:hover {
            
            background:  var(--secondary-color);
            border-color: var(--primary-color);
            transform: scale(1.1);
        }

        .news-nav-btn:hover svg {
            color: var(--white);
        }

        .news-nav-btn svg {
            width: 20px;
            height: 20px;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .news-prev-btn {
            margin-right: 15px;
        }

        .news-next-btn {
            margin-left: 15px;
        }

        .news-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .news-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .news-dot.active {
            width: 24px;
            border-radius: 4px;
            
            background:  var(--secondary-color);
        }

        /* Newsletter Section */
        .newsletter-slider-top-section {
            padding: 80px 20px;
            background-color: var(--white);
        }

        .newsletter-slider-top-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .newsletter-slider-top-header {
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 20px;
        }

        .header-content{
            max-width: 600px;
        }

        .newsletter-slider-top-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
            
            background: maroon;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .newsletter-slider-top-subtitle {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .newsletter-slider-container {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
        }

        .newsletter-slider-wrapper {
            flex: 1;
            overflow: hidden;
            border-radius: 20px;
        }

        .newsletter-slider-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 30px;
        }

        .newsletter-card {
            min-width: calc(33.333% - 20px);
            background: var(--bg-light);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

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

        /* .newsletter-card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

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

        .newsletter-card:hover .newsletter-card-image img {
            transform: scale(1.05);
        } */

        .newsletter-preview{
            height: 250px;
            width: 100%;
            background: linear-gradient(135deg, #6e0505 0%, #e90c0c 100%);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .newsletter-preview::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .newsletter-icon {
            font-size: 48px;
            margin-bottom: 15px;
            z-index: 1;
        }

        .newsletter-month {
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            z-index: 1;
        }

        .newsletter-year {
            font-size: 32px;
            font-weight: 800;
            z-index: 1;
        }

        .newsletter-card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .newsletter-card-date {
            font-size: 12px;
            color: var(--secondary-color);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .newsletter-card-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .newsletter-card-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-light);
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .newsletter-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .newsletter-card-link:hover {
            gap: 12px;
        }

        .newsletter-card-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .newsletter-card-link:hover svg {
            transform: translateX(3px);
        }

        .newsletter-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--bg-light);
            border: 2px solid var(--border-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }

        .newsletter-nav-btn:hover {
            
            background: var(--secondary-color);
            border-color: var(--primary-color);
            transform: scale(1.1);
        }

        .newsletter-nav-btn:hover svg {
            color: var(--white);
        }

        .newsletter-nav-btn svg {
            width: 20px;
            height: 20px;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .newsletter-prev-btn {
            margin-right: 15px;
        }

        .newsletter-next-btn {
            margin-left: 15px;
        }

        .newsletter-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .newsletter-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-dot.active {
            width: 24px;
            border-radius: 4px;
            
            background: var(--secondary-color);
        }

        /* Responsive Design for News and Newsletter Sections */
        @media (max-width: 992px) {
            .news-card,
            .newsletter-card {
                min-width: calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .news-section,
            .newsletter-section {
                padding: 80px 20px;
            }
            
            .news-title,
            .newsletter-title {
                font-size: 32px;
            }
            
            .news-subtitle,
            .newsletter-subtitle {
                font-size: 16px;
            }
            
            .news-card,
            .newsletter-card {
                min-width: calc(50% - 15px);
            }
            
            .news-card-content,
            .newsletter-card-content {
                padding: 20px;
            }
            
            .news-card-title,
            .newsletter-card-title {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .news-card,
            .newsletter-card {
                min-width: 100%;
            }
            
            .news-card-image,
            .newsletter-card-image {
                height: 180px;
            }
            
            .news-card-content,
            .newsletter-card-content {
                padding: 15px;
            }
            
            .news-card-title,
            .newsletter-card-title {
                font-size: 16px;
            }
            
            .news-card-excerpt,
            .newsletter-card-excerpt {
                font-size: 13px;
            }
            
            .news-nav-btn,
            .newsletter-nav-btn {
                width: 40px;
                height: 40px;
            }
            
            .news-nav-btn svg,
            .newsletter-nav-btn svg {
                width: 16px;
                height: 16px;
            }
        }

        /* Social Media Section Updated */

        .social-media-section {
            padding: 100px 20px;
            background-color: var(--bg-light);
        }

        .social-media-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-media-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .social-media-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            background: var(--secondary-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .social-media-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- CIRCULAR CARD DESIGN --- */
        .social-media-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .social-card {
            background-color: var(--white);
            border-radius: 16px; /* Curved edges */
            padding: 20px 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid var(--border-color);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
            
            /* --- FLEX SIZE CONTROL FOR 6 CARDS --- */
            flex: 0 0 calc(16.666% - 17px); /* 6 columns with gap consideration */
            max-width: calc(16.666% - 17px);
        }

        .social-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        }

        /* This is now the circular icon container */
        .social-card-icon {
            width: 80px; /* Smaller diameter for 6 cards */
            height: 80px; /* Smaller diameter for 6 cards */
            border-radius: 50%; /* This makes it a circle */
            background-color: var(--icon-bg-color, var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px; /* Reduced space */
            transition: all 0.3s ease;
        }

        .social-card:hover .social-card-icon {
            transform: scale(1.1);
            filter: brightness(1.2);
        }

        .social-card-icon svg {
            width: 40px; /* Smaller icon size */
            height: 40px;
            color: var(--white);
        }

        .social-card-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .social-card-name {
            font-size: 16px; /* Smaller font size */
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .social-card-handle {
            font-size: 12px; /* Smaller font size */
            color: var(--text-light);
            margin-bottom: 10px; /* Reduced margin */
        }

        .social-card-stats {
            display: flex;
            justify-content: center;
            gap: 15px; /* Reduced gap */
            margin-bottom: 15px; /* Reduced margin */
        }

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

        .social-stat-value {
            font-size: 18px; /* Smaller font size */
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }

        .social-stat-label {
            font-size: 10px; /* Smaller font size */
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .social-card-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px; /* Reduced gap */
            padding: 8px 15px; /* Smaller padding */
            background: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 12px; /* Smaller font size */
            transition: all 0.3s ease;
            width: 100%;
            box-sizing: border-box;
        }

        .social-card-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .social-card-btn svg {
            width: 14px; /* Smaller icon */
            height: 14px;
            transition: transform 0.3s ease;
        }

        .social-card-btn:hover svg {
            transform: translateX(3px);
        }

        /* --- RESPONSIVE DESIGN FOR 6 CIRCULAR CARDS --- */
        @media (max-width: 1200px) {
            .social-card {
                flex: 0 0 calc(25% - 15px); /* 4 columns */
                max-width: calc(25% - 15px);
            }
            
            .social-card-icon {
                width: 90px;
                height: 90px;
            }
            
            .social-card-icon svg {
                width: 45px;
                height: 45px;
            }
            
            .social-card-name {
                font-size: 18px;
            }
            
            .social-card-handle {
                font-size: 13px;
            }
            
            .social-stat-value {
                font-size: 20px;
            }
            
            .social-stat-label {
                font-size: 11px;
            }
            
            .social-card-btn {
                font-size: 13px;
                padding: 10px 18px;
            }
        }

        @media (max-width: 992px) {
            .social-card {
                flex: 0 0 calc(33.333% - 14px); /* 3 columns */
                max-width: calc(33.333% - 14px);
            }
            
            .social-card-icon {
                width: 85px;
                height: 85px;
            }
            
            .social-card-icon svg {
                width: 42px;
                height: 42px;
            }
            
            .social-card-name {
                font-size: 17px;
            }
            
            .social-card-handle {
                font-size: 12px;
            }
            
            .social-stat-value {
                font-size: 19px;
            }
            
            .social-stat-label {
                font-size: 10px;
            }
            
            .social-card-btn {
                font-size: 12px;
                padding: 9px 16px;
            }
        }

        @media (max-width: 768px) {
            .social-media-section {
                padding: 80px 15px;
            }
            
            .social-media-title {
                font-size: 32px;
            }
            
            .social-card {
                flex: 0 0 calc(50% - 10px); /* 2 columns */
                max-width: calc(50% - 10px);
                padding: 18px 12px;
            }
            
            .social-card-icon {
                width: 75px;
                height: 75px;
                margin-bottom: 12px;
            }
            
            .social-card-icon svg {
                width: 38px;
                height: 38px;
            }
            
            .social-card-name {
                font-size: 16px;
            }
            
            .social-card-handle {
                font-size: 11px;
            }
            
            .social-stat-value {
                font-size: 18px;
            }
            
            .social-stat-label {
                font-size: 9px;
            }
            
            .social-card-btn {
                font-size: 11px;
                padding: 8px 14px;
            }
        }

        @media (max-width: 576px) {
            .social-media-section {
                padding: 60px 10px;
            }
            
            .social-card {
                flex: 0 0 100%; /* 1 column */
                max-width: 100%;
                padding: 20px 15px;
            }
            
            .social-card-icon {
                width: 80px;
                height: 80px;
                margin-bottom: 15px;
            }
            
            .social-card-icon svg {
                width: 40px;
                height: 40px;
            }
            
            .social-card-name {
                font-size: 18px;
            }
            
            .social-card-handle {
                font-size: 13px;
            }
            
            .social-stat-value {
                font-size: 20px;
            }
            
            .social-stat-label {
                font-size: 11px;
            }
            
            .social-card-btn {
                font-size: 13px;
                padding: 10px 18px;
            }
        }
        

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .events-grid {
                grid-template-columns: 1fr;
            }
            
            .activity-card {
                min-width: calc(50% - 15px);
            }
            
            .sponsors-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .nav-menu-wrapper {
                display: none;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .slider-wrapper {
                grid-template-columns: 1fr;
            }

            .slider-container {
                height: auto;
            }

            .image-column {
                height: 400px;
            }

            .content-column {
                padding: 40px;
            }

            .slide-title {
                font-size: 32px;
            }

            .slider-navigation {
                bottom: 20px;
                left: 40px;
                right: 40px;
            }

           
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .activity-card {
                min-width: 100%;
            }
            
            .sponsors-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .newsletter-content {
                padding: 40px 30px;
            }
            
            .newsletter-title {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            .content-column {
                padding: 30px 20px;
            }

            .slide-title {
                font-size: 24px;
            }

            .slide-description {
                font-size: 16px;
            }

            .slider-navigation {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }
            
            .event-card {
                flex-direction: column;
            }
            
            .event-logo {
                width: 100%;
                height: 120px;
            }
            
            .countdown-title {
                font-size: 32px;
            }
            
            .activities-title {
                font-size: 32px;
            }
            
            .sponsors-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-content {
                padding: 30px 20px;
            }
            
            .newsletter-title {
                font-size: 24px;
            }

            
        }