  /* :root {
            --primary-color: #1a3e72;
            --secondary-color: #2d5aa0;
            --accent-color: #e3b341;
            --dark-color: #0d1b36;
            --light-color: #f0f4fd;
            --white: #ffffff;
            --text-color: #333333;
        } */

 :root {
             --primary-color: #1a3e20;     /* deep green from grass shadows */
    --secondary-color: #2f5d28;   /* mid green from field */
    --accent-color: #ffd83b;      /* bright yellow headline text */
    --dark-color: #0c1a10;        /* very dark green/black from shadows */
    --light-color: #eaf3e0;       /* pale greenish-white highlight */
    --white: #ffffff;             /* pure white for text */
    --text-color: #333333;        /* dark gray for body text */
    --button-color: #ff6b1a;      /* orange from "Join the Movement" button */
        }

        .container {
            /* display: flex; */
            min-height: 100vh;
        }
   body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--light-color);
            color: var(--text-color);
        }
        /* Sidebar Styles */
        .sidebar {
            width: 320px;
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            padding: 1rem ;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: fixed;
            height: 100vh;
            z-index: 100;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
        }

        .profile-img {
            width: 170px;
            height: 170px;
            border-radius: 100%;
            object-fit: cover;
            border: 5px solid var(--accent-color);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
         
        }

        .name {
            margin-top: 0.5rem;
            font-size: 1.5rem;
            font-weight: 500;
            text-align: center;
            color: var(--white);
            font-family: 'Playfair Display', serif;
        }

        .title {
            color: var(--accent-color);
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-align: center;
            font-weight: 400;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .social-links a {
            color: var(--white);
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .sidebar-nav {
            width: 100%;
            margin-top: 0.5rem;
        }

        .sidebar-nav ul {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 0.5rem;
        }

        .sidebar-nav a {
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 0.8rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .sidebar-nav a:hover, .sidebar-nav a.active {
            background: rgba(255, 255, 255, 0.15);
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .sidebar-nav i {
            margin-right: 1rem;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        /* Main Content Styles */
        .main-content {
            flex: 1;
            padding: 3rem 3rem 3rem 350px;
            position: relative;
        }

    /* Mobile Menu Button */
.menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 5px;
    font-size: 1.2rem;
    z-index: 110;
    cursor: pointer;
}

/* Sidebar mobile default (hidden) */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        width: 280px;
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .menu-toggle {
        display: block;
    }
    .main-content {
        padding: 2rem;
    }
}

/* Dim background when menu is open */
.sidebar::after {
    content: "";
    display: none;
}

@media (max-width: 768px) {
    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 90;
    }
}
      @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;700;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
       
  
        
        body {
            font-family: 'Montserrat', sans-serif;
            /* background: #0a1128;
            color: white; */
        }
       
         .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            /* background: 
                linear-gradient(rgba(0, 50, 0, 0.7), rgba(0, 20, 0, 0.9)),
                url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80'); */
                background: 
  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* overlay */
  url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

        
         
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            /* margin-left: 200px; */
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1200px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            letter-spacing: 5px;
            margin-bottom: 1rem;
            text-transform: uppercase;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            color: #fff;
            /* background: linear-gradient(45deg, #ffffff, #ffd700); */
            /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
            animation: pulse-hero 2s infinite alternate;
        }
        
        .hero h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.8);
            color: #fff;
        }
        
        .tagline {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            color: #ffd700;
            margin-bottom: 2rem;
            letter-spacing: 3px;
            /* text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); */
        }
        
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            color: #fff;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff5e00, #ffbb00);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 94, 0, 0.4);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 94, 0, 0.6);
        }
        
        .cta-button:active {
            transform: translateY(1px);
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        #football-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        /* Stadium crowd noise effect (visual) */
        .crowd-effect {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 100px;
            background: 
                linear-gradient(transparent, rgba(0, 0, 0, 0.7)),
                url('https://www.transparenttextures.com/patterns/crowd-noise.png');
            background-size: 300px;
            animation: crowd-noise 10s infinite linear;
            z-index: 2;
        }
        
        @keyframes crowd-noise {
            0% { background-position: 0 0; }
            100% { background-position: 300px 0; }
        }
        
        /* Spotlight effects */
        .spotlight {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: 
                radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
            z-index: 2;
            pointer-events: none;
            animation: light-pulse 4s infinite alternate;
        }
        
        @keyframes light-pulse {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        @keyframes pulse-hero {
            0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
            100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 4rem;
            }
            
            .tagline {
                font-size: 2.5rem;
            }
            
            .hero h2 {
                font-size: 1.3rem;
            }
        }
               
        .about-section {
            position: relative;
            padding: 80px 20px;
            /* max-width: 880px; */
            margin: 0 auto;
            overflow: hidden;
              /* background: rgba(0, 0, 0, 0.4); */
            /* margin-left: 310px; */
            /* background: #1b3a2b; */
            background: linear-gradient(rgba(18, 39, 27, 0.875), rgb(27, 58, 43)), 
                        url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80'); 
             
    color: #ffffff;
        }
        
        .about-header {
            text-align: center;
            /* margin-bottom: 60px; */
            position: relative;
        }
        
        .about-header h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            letter-spacing: 3px;
            margin-bottom: 20px;
            color: #ffd700;;
            text-transform: uppercase;
        }
        .heading-icon {
    height: 150px; /* Adjust size */
    /* margin-left: 10px; Space between text and image */
    vertical-align: middle; /* Align with text baseline */
}

        
        .about-header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
             color: #f0f0f0; 
        }
        
        .president-message {
           background: rgba(255, 215, 0, 0.1); /* Gold tint background */
    border-left: 4px solid #ff5e00; /* Orange accent */
            padding: 30px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        .president-message p{
            font-size: 1.2rem;
            font-family: Arial, Helvetica, sans-serif;
        }
        
        .president-message:before {
            content: '"';
            position: absolute;
            font-size: 120px;
            font-family: serif;
              color: rgba(255, 215, 0, 0.2);
            top: -30px;
            left: 10px;
            line-height: 1;
        }
        
        .president-signature {
            text-align: right;
            margin-top: 20px;
            font-style: italic;
        }
        
        .president-signature strong {
            display: block;
            font-size: 1.1rem;
           color: #ffd700;
        }
        
       .vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 80px 0;
    perspective: 1000px;
}

.vision-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,94,0,0.03) 100%);
    /* background-color: #ffffff; */
    /* color: black; */
    /* border-top: 3px solid #ff5e00; */
    border-radius: 16px;
    padding: 10px;
    /* transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    transform-style: preserve-3d;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(255,94,0,0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.03);
    box-shadow: 0 15px 40px rgba(255,94,0,0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,94,0,0.08) 100%);
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff5e00, #ffd700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease-out;
}

.vision-card:hover::after {
    transform: scaleX(1);
}

.vision-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
}

.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff5e00;
    transition: width 0.4s ease;
}
.vision-card p{
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}
.vision-card:hover h3::after {
    width: 100px;
}

.vision-card ul {
    list-style-type: none;
    position: relative;
    z-index: 2;
}

.vision-card ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.vision-card ul li:before {
    content: '⚽';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3rem;
    color: #ff5e00;
    filter: drop-shadow(0 0 5px rgba(255,94,0,0.5));
    animation: pulseabout 2s infinite;
}

@keyframes pulseabout {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Glow effect on hover */
.vision-card:hover {
    animation: glow 3s infinite alternate;
}

/* @keyframes glow {
    from {
        box-shadow: 0 0 10px -5px #ff5e00;
    }
    to {
        box-shadow: 0 0 20px 5px rgba(255,94,0,0.3);
    }
} */
.section{
    margin-left: 310px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .vision-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section{
        margin-left: 0px;  }
    
    .vision-card {
        padding: 30px;
    }
}
        
        .governance-section {
            background: linear-gradient(135deg, rgba(27, 58, 43, 0.95), rgba(42, 82, 52, 0.85));
            padding: 50px;
            border-radius: 8px;
            /* margin: 60px 0; */
            position: relative;
            overflow: hidden;
        }
        
        .governance-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/diagonal-striped-brick.png');
            opacity: 0.05;
            z-index: 0;
        }
        
        .governance-content {
            position: relative;
            z-index: 1;
            
        }
        
        .governance-content h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: #ffd700;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .governance-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .governance-item h4 {
            font-size: 1.3rem;
            color: #ffd700;
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
            padding-bottom: 10px;
        }
        
        .governance-item ul {
            list-style-type: none;
        }
        
        .governance-item ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .governance-item ul li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ff5e00;
            font-weight: bold;
        }
        
        .revival-section {
             background: rgba(255, 94, 0, 0.1);
    border-left: 4px solid #ff5e00;
            padding: 40px;
            border-radius: 8px;
            /* margin: 60px 0; */
            /* border-left: 4px solid #ff5e00; */
        }
        
        .revival-section h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: #ffd700;
            margin-bottom: 20px;
        }
        
        .revival-section ol {
            counter-reset: item;
            list-style-type: none;
            padding-left: 0;
        }
        
        .revival-section ol li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 40px;
        }
        
        .revival-section ol li:before {
            counter-increment: item;
            content: counter(item);
            position: absolute;
            left: 0;
            top: 0;
            background: #ff5e00;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .about-header h2 {
                font-size: 3rem;
            }
            
            .governance-section, .revival-section {
                padding: 30px 20px;
            }
        }



         :root {
            --primary: #ff5e14;
            --secondary: #1a2a57;
            --accent: #f8c537;
            --light: #f5f7fa;
            --dark: #0d1321;
        }
        
   
.league-section {
    padding: 5rem 1rem;
background: 
    linear-gradient(rgba(10, 25, 20, 0.811), rgba(10, 25, 20, 0.95)),
    url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');


    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.decor-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.decor-ball {
    width: 10px;
    height: 10px;
    background: #d4af37;
    border-radius: 50%;
    margin: 0 15px;
    box-shadow: 0 0 10px #d4af37;
}

.league-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.league-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.league-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: #1a1a1a;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.card-content {
    padding: 2.5rem 2rem 2rem;
}

.card-heading {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.card-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.card-subheading {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.feature-list {
    display: grid;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    fill: #1a1a1a;
}

.feature-text {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.feature-text strong {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(transparent 70%, rgba(212, 175, 55, 0.3) 0);
}

/* Franchise Card Specific */
.franchise-card {
    border-top: 3px solid #d4af37;
}

.franchise-stats {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-top: 0.3rem;
}

/* Format Card Specific */
.format-card {
    border-top: 3px solid #3498db;
}

.format-visual {
    padding: 0 2rem 2rem;
}
/* 
.pitch-diagram {
    position: relative;
    width: 100%;
    height: 180px;
    background: rgba(40, 60, 50, 0.3);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.pitch-outline {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
}

.quarter-line {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.player-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
     animation:move  3s infinite alternate;
}
  @keyframes move {
        from { transform: translateY(0); }
        to { transform: translateY(-15px); }
    }
.ball-marker {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255,255,255,0.7);
} */

.format-timeline {
    position: relative;
}

.timeline-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    display: flex;
    margin-bottom: 0.5rem;
    
}

.timeline-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 3px;
    animation: timeline-progress 8s infinite linear;
}

@keyframes timeline-progress {
    0% { width: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

.quarter-marker {
    flex: 1;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    font-weight: 600;
    position: relative;
    padding-top: 15px;
}

.quarter-marker::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-label {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Quote Section */
.league-quote {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.quote-content {
    background: rgba(0,0,0,0.3);
    border-left: 3px solid #d4af37;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(5px);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    opacity: 0.1;
    fill: #d4af37;
}

blockquote {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 1rem 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

cite {
    display: block;
    color: #d4af37;
    font-size: 1rem;
    font-weight: 600;
    font-style: normal;
    text-align: right;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .league-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        padding: 2rem 1.5rem;
    }
    
    blockquote {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-heading {
        font-size: 1.5rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .quote-content {
        padding: 2rem 1.5rem;
    }
    
    blockquote {
        font-size: 1.1rem;
    }
}

     :root {
            --primary: #FF5E00;
            --secondary: #1A2A57;
            --accent: #F8C537;
            --light: #F5F7FA;
            --dark: #0D1321;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            margin: 0;
            padding: 0;
        }
        
        .roadmap-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            background: 
    linear-gradient(rgba(10, 25, 20, 0.811), rgba(10, 25, 20, 0.95)),
    url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');

        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            /* color: var(--secondary); */
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            align-items: center;
            justify-content: center;
            display: flex;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        .roadmap-container {
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        /* Timeline line */
        .roadmap-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        .milestone {
            display: flex;
            justify-content: space-between;
            margin-bottom: 3rem;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .milestone.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .milestone-card {
            width: calc(50% - 4rem);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            background: white;
            transition: all 0.3s ease;
        }
        
        .milestone-left {
            text-align: right;
        }
        
        .milestone-right {
            margin-left: auto;
        }
        
        /* Milestone dot */
        .milestone::after {
            content: '';
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            border: 4px solid white;
            box-shadow: 0 0 0 4px var(--primary);
            z-index: 2;
        }
        
        .milestone-year {
            position: absolute;
            top: 25px;
            width: 80px;
            text-align: center;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 700;
            color: var(--primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 3;
        }
        
        .milestone-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        
        .milestone-content {
            line-height: 1.6;
            color: var(--dark);
            opacity: 0.9;
        }
        
        .milestone-list {
            list-style-type: none;
            padding: 0;
            margin: 1rem 0;
        }
        
        .milestone-list li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .milestone-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .milestone-left .milestone-list li {
            padding-left: 0;
            padding-right: 1.5rem;
        }
        
        .milestone-left .milestone-list li::before {
            left: auto;
            right: 0;
        }
        
        .milestone-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
            background: rgba(255, 94, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .milestone-table th, .milestone-table td {
            padding: 0.8rem 1rem;
            text-align: center;
            border: 1px solid rgba(255, 94, 0, 0.1);
        }
        
        .milestone-table th {
            background: rgba(255, 94, 0, 0.1);
            color: var(--primary);
            font-weight: 600;
        }
        
        .milestone-table td {
            font-weight: 500;
        }
        
        .milestone-highlight {
            background: rgba(248, 197, 55, 0.2);
            font-weight: 600;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .roadmap-container::before {
                left: 30px;
            }
            
            .milestone {
                flex-direction: column;
                margin-bottom: 2rem;
            }
            
            .milestone-card {
                width: 100%;
                margin-bottom: 1rem;
                text-align: left !important;
            }
            
            .milestone::after {
                left: 30px;
            }
            
            .milestone-year {
                left: 30px;
                transform: none;
            }
            
            .milestone-left .milestone-list li {
                padding-right: 0;
                padding-left: 1.5rem;
            }
            
            .milestone-left .milestone-list li::before {
                right: auto;
                left: 0;
            }
        }
          /* Add these new styles to your existing CSS */
    
    .section-subtitle {
        color: rgba(255,255,255,0.8);
        font-size: 1.2rem;
        margin-top: -1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .milestone-card {
        overflow: hidden;
        border: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .milestone-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    
    .card-header {
        padding: 1.5rem 2rem;
        color: white;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .card-header .milestone-title {
        color: white;
        margin: 0;
    }
    
    .card-body {
        padding: 2rem;
    }
    
    .stadium-icon, .trophy-icon, .youth-icon, .flag-icon {
        font-size: 2rem;
        opacity: 0.8;
    }
    
    .milestone-list li {
        display: flex;
        align-items: center;
        padding: 0.75rem 0;
    }
    
    .milestone-list .icon {
        margin-right: 0.75rem;
        font-size: 1.2rem;
    }
    
    .tactical-board {
        background: rgba(0,0,0,0.05);
        border-radius: 8px;
        padding: 1rem;
        margin-top: 1.5rem;
        display: flex;
        justify-content: space-between;
        border: 1px dashed var(--primary);
    }
    
    .formation {
        font-weight: bold;
        color: var(--primary);
        font-size: 1.5rem;
    }
    
    .strategy {
        font-style: italic;
        color: var(--secondary);
    }
    
    .team-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .badge {
        background: var(--secondary);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
    }
    
    .progress-stats {
        display: flex;
        justify-content: space-around;
        margin-top: 1.5rem;
    }
    
    .stat {
        text-align: center;
    }
    
    .stat-value {
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--primary);
        line-height: 1;
    }
    
    .stat-label {
        font-size: 0.9rem;
        /* color: var(--dark); */
        opacity: 0.8;
    }
    
    .achievements {
        display: flex;
        justify-content: space-around;
        margin-top: 1.5rem;
    }
    
    .achievement {
        display: flex;
        align-items: center;
        font-weight: bold;
        color: var(--secondary);
    }
    
    .medal {
        font-size: 1.5rem;
        margin-right: 0.5rem;
    }
    
    /* Animation for timeline entries */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .milestone-left.visible {
        animation: slideIn 0.6s ease-out forwards;
    }
    
    .milestone-right.visible {
        animation: slideIn 0.6s ease-out forwards;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .progress-stats, .achievements {
            flex-direction: column;
            gap: 1rem;
        }
        
        .card-header {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }
    }
        .formation-graphic {
        text-align: center;
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .pitch {
        display: inline-block;
        position: relative;
        width: 220px;
        height: 140px;
        background: #3A5F0B; /* Grass green */
        border: 2px solid white;
        border-radius: 8px;
        overflow: hidden;
    }
    
    /* Center circle */
    .pitch::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border: 2px solid white;
        border-radius: 50%;
        opacity: 0.3;
    }
    
    .player {
        position: absolute;
        width: 12px;
        height: 12px;
        background: white;
        border-radius: 50%;
        border: 2px solid #F8C537; /* Using your accent color */
        transform: scale(1);
        transition: all 0.3s ease;
        z-index: 2;
    }
    
    /* Player positions for 4-3-3 formation */
    .goalkeeper {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .defender-1 {
        bottom: 40px;
        left: 25%;
    }
    
    .defender-2 {
        bottom: 40px;
        left: 40%;
    }
    
    .defender-3 {
        bottom: 40px;
        left: 60%;
    }
    
    .defender-4 {
        bottom: 40px;
        left: 75%;
    }
    
    .midfielder-1 {
        bottom: 70px;
        left: 30%;
    }
    
    .midfielder-2 {
        bottom: 70px;
        left: 50%;
    }
    
    .midfielder-3 {
        bottom: 70px;
        left: 70%;
    }
    
    .forward-1 {
        bottom: 100px;
        left: 20%;
    }
    
    .forward-2 {
        bottom: 100px;
        left: 50%;
    }
    
    .forward-3 {
        bottom: 100px;
        left: 80%;
    }
    
    /* Hover animations */
    .player:hover {
        transform: scale(1.5);
        background: #F8C537;
        border-color: white;
        box-shadow: 0 0 10px rgba(248, 197, 55, 0.7);
    }
    
    /* Pulsing animation for forwards */
    .forward {
        animation:move  3s infinite alternate;
    }
    .goalkeeper{
         animation:move  3s infinite alternate;
    }
 
    /* @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }


    } */
    
    /* Slight movement for midfielders */
    .midfielder {
        animation: move 3s infinite alternate;
    }
    .defender{
        animation: move 3s infinite alternate;
    }
    @keyframes move {
        from { transform: translateY(0); }
        to { transform: translateY(-15px); }
    }
    
    .formation-label {
        color: #1A2A57; /* Your secondary color */
        font-weight: bold;
        margin-top: 0.5rem;
        font-size: 1.1rem;
    }
    .pitch-diagram {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #2a5c3a 0%, #1e3e2a 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.pitch-outline {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid white;
    border-radius: 4px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
}

.center-spot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.halfway-line {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    width: 1px;
    background: white;
}

.penalty-area {
    position: absolute;
    width: 100px;
    height: 40px;
    border: 2px solid white;
    top: 50%;
    transform: translateY(-50%);
}

.penalty-area.left {
    left: 10px;
}

.penalty-area.right {
    right: 10px;
}

.penalty-spot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 50%;
}

.penalty-spot.left {
    left: 70px;
    transform: translateY(-50%);
}

.penalty-spot.right {
    right: 70px;
    transform: translateY(-50%);
}

.goal-area {
    position: absolute;
    width: 40px;
    height: 20px;
    border: 2px solid white;
    top: 50%;
    transform: translateY(-50%);
}

.goal-area.left {
    left: 10px;
}

.goal-area.right {
    right: 10px;
}

.corner-arc {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
}

.corner-arc.top-left {
    top: 10px;
    left: 10px;
}

.corner-arc.top-right {
    top: 10px;
    right: 10px;
    transform: rotate(90deg);
}

.corner-arc.bottom-left {
    bottom: 10px;
    left: 10px;
    transform: rotate(270deg);
}

.corner-arc.bottom-right {
    bottom: 10px;
    right: 10px;
    transform: rotate(180deg);
}

.player-marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #d4af37;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    transition: all 0.3s ease;
    z-index: 10;
}

.player-marker:hover {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 1);
}

.ball-marker {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255,255,255,0.9);
    z-index: 20;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Grass texture effect */
.pitch-diagram::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(transparent 95%, rgba(0,0,0,0.1) 96%),
        linear-gradient(90deg, transparent 95%, rgba(0,0,0,0.1) 96%);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Player movement animation */
.player-marker.attacking {
    animation: movePlayer 3s infinite alternate ease-in-out;
}

@keyframes movePlayer {
    0% { transform: translate(-50%, -50%); }
    100% { transform: translate(-50%, -60%); }
}
  .governance-section {
                    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                    padding: 4rem 0;
                    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                    position: relative;
                    overflow: hidden;
                }

                .governance-section::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%23d4af37" opacity="0.2"/><circle cx="50" cy="50" r="2" fill="%23d4af37" opacity="0.2"/><circle cx="80" cy="30" r="3" fill="%23d4af37" opacity="0.2"/><circle cx="30" cy="70" r="2" fill="%23d4af37" opacity="0.2"/><circle cx="70" cy="80" r="3" fill="%23d4af37" opacity="0.2"/></svg>'); */
                    background-size: 200px;
                    opacity: 0.3;
                    padding: 30px;
                }


                .section-header {
                    text-align: center;
                    /* margin-bottom: 3rem; */
                }

                .section-title {
                    font-size: 2.5rem;
                    color: #1e3e2a;
                    margin-bottom: 1rem;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    position: relative;
                    display: inline-block;
                }

                .section-title::after {
                    content: "";
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 80px;
                    height: 3px;
                    background: #d4af37;
                }

                .football-divider {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 1rem 0;
                }

                .football-divider .circle {
                    width: 12px;
                    height: 12px;
                    background: #d4af37;
                    border-radius: 50%;
                }

                .football-divider .line {
                    width: 100px;
                    height: 2px;
                    background: #d4af37;
                    margin: 0 10px;
                }

                .section-intro {
                    font-size: 1.1rem;
                    color: #495057;
                    max-width: 800px;
                    margin: 0 auto;
                    line-height: 1.6;
                }

                .governance-structure {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2rem;
                    margin-bottom: 4rem;
                    padding: 40px;
                }

                .gov-card {
                    background: white;
                    border-radius: 10px;
                    padding: 2rem;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                    position: relative;
                    overflow: hidden;
                    border-top: 4px solid;
                }

                .gov-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                }

                .gov-card.primary {
                    border-color: #1e3e2a;
                }

                .gov-card.secondary {
                    border-color: #2a5c3a;
                }

                .gov-card.accent {
                    border-color: #d4af37;
                }

                .gov-card h3 {
                    color: #1e3e2a;
                    margin-bottom: 0.5rem;
                    font-size: 1.4rem;
                }

                .gov-card p {
                    color: #6c757d;
                    font-style: italic;
                    margin-bottom: 1.5rem;
                    font-size: 0.95rem;
                }

                .gov-card ul {
                    padding-left: 1.2rem;
                }

                .gov-card li {
                    margin-bottom: 0.8rem;
                    color: #495057;
                    line-height: 1.5;
                    font-size: 0.95rem;
                }

                .card-icon {
                    width: 50px;
                    height: 50px;
                    background: rgba(30, 62, 42, 0.1);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 1.5rem;
                }

                .card-icon svg {
                    width: 24px;
                    height: 24px;
                    color: #1e3e2a;
                }

                .functional-committees {
                    margin-bottom: 4rem;
                }

                .committees-title {
                    text-align: center;
                    font-size: 1.8rem;
                    color: #1e3e2a;
                    margin-bottom: 0.5rem;
                }

                .committees-subtitle {
                    text-align: center;
                    color: #6c757d;
                    margin-bottom: 2rem;
                    font-size: 1.1rem;
                }

                .committee-categories {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 2rem;
                    padding: 40px;
                }

                .category-card {
                    background: white;
                    border-radius: 10px;
                    padding: 2rem 1.5rem;
                    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
                    transition: all 0.3s ease;
                    position: relative;
                    border: 1px solid rgba(0, 0, 0, 0.05);
                }

                .category-card:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                }

                .category-number {
                    position: absolute;
                    top: -15px;
                    left: 20px;
                    width: 30px;
                    height: 30px;
                    background: #d4af37;
                    color: white;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: bold;
                    font-size: 1.1rem;
                }

                .category-card h4 {
                    color: #1e3e2a;
                    margin-bottom: 1.5rem;
                    font-size: 1.2rem;
                    padding-top: 0.5rem;
                }

                .category-card ul {
                    padding-left: 1rem;
                }

                .category-card li {
                    margin-bottom: 0.7rem;
                    color: #495057;
                    font-size: 0.95rem;
                    position: relative;
                    padding-left: 1rem;
                }

                .category-card li::before {
                    content: "•";
                    color: #d4af37;
                    font-weight: bold;
                    position: absolute;
                    left: 0;
                }

                .reporting-structure {
                    background: white;
                    border-radius: 10px;
                    padding: 2.5rem;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                }

                .reporting-title {
                    text-align: center;
                    font-size: 1.8rem;
                    color: #1e3e2a;
                    margin-bottom: 2rem;
                    position: relative;
                }

                .reporting-title::after {
                    content: "";
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 60px;
                    height: 2px;
                    background: #d4af37;
                }

                .reporting-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 2rem;
                }

                .reporting-item {
                    display: flex;
                    align-items: flex-start;
                    gap: 1rem;
                }

                .reporting-icon {
                    font-size: 1.5rem;
                    color: #d4af37;
                    margin-top: 0.2rem;
                }

                .reporting-item p {
                    color: #495057;
                    line-height: 1.5;
                }

                @media (max-width: 768px) {
                    .section-title {
                        font-size: 2rem;
                    }

                    .governance-structure,
                    .committee-categories,
                    .reporting-grid {
                        grid-template-columns: 1fr;
                    }

                    .functional-committees,
                    .reporting-structure {
                        padding: 1.5rem;
                    }
                }
                 .wffi-section {
      padding: 60px 20px;
      position: relative;
      background: radial-gradient(circle at top left, #0f3b29, #0b2f22 80%);
      overflow: hidden;
    }

    .wffi-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(to right, transparent 95%, rgba(255,255,255,0.05) 95%),
                        linear-gradient(to bottom, transparent 92%, rgba(255,255,255,0.05) 92%);
      background-size: 32px 32px;
      opacity: 0.2;
      pointer-events: none;
    }

    .wffi-title {
      font-size: 2rem;
      margin-bottom: 10px;
      text-transform: uppercase;
      color: #fff;
      letter-spacing: 2px;
    }

    .wffi-desc {
      max-width: 750px;
      font-size: 0.95rem;
      color: #d4f5e9;
      line-height: 1.5;
    }

    /* Search */
    .wffi-search-bar {
      margin: 30px 0;
      display: flex;
      gap: 10px;
    }

    .wffi-search-bar input {
      flex: 1;
      padding: 10px 15px;
      border-radius: 30px;
      border: none;
      font-size: 1rem;
      outline: none;
      transition: 0.3s;
    }
    .wffi-search-bar input:focus {
      box-shadow: 0 0 10px #00ff9d;
    }

    .wffi-search-bar button {
      background: #00b871;
      border: none;
      padding: 10px 18px;
      border-radius: 30px;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .wffi-search-bar button:hover {
      background: #00ff9d;
      color: #0b2f22;
    }

    /* Grid */
    .wffi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
    }

    .wffi-card {
      background: #fff;
      color: #0b2f22;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .wffi-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #00ff9d33, transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .wffi-card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }
    .wffi-card:hover::before {
      opacity: 1;
    }

    .wffi-card h3 {
      margin: 0 0 10px;
      font-size: 1.1rem;
      font-weight: 700;
    }

    .wffi-badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      background: #00b871;
      color: #fff;
    }

    .wffi-actions {
      margin-top: 15px;
      display: flex;
      gap: 10px;
    }
    .wffi-actions button {
      flex: 1;
      padding: 7px 70px;
      border: none;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }
    .wffi-actions button:first-child {
      background: #00b871;
      color: #fff;
    }
    .wffi-actions button:first-child:hover {
      background: #00945c;
    }
    .wffi-actions button:last-child {
      border: 2px solid #00b871;
      background: transparent;
      color: #00b871;
    }
    .wffi-actions button:last-child:hover {
      background: #00b871;
      color: #fff;
    }

    /* Animations */
    .wffi-fade-in {
      opacity: 0;
      transform: translateY(20px);
      animation: wffiFadeInUp 0.6s forwards;
    }
    .wffi-fade-in:nth-child(odd) { animation-delay: 0.1s; }
    .wffi-fade-in:nth-child(even) { animation-delay: 0.2s; }

    @keyframes wffiFadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  #wffi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
  }


.wffi-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 4px solid #28a745; /* Green accent */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content:space-around;
}

.wffi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #28a745, #ffd700, #28a745);
}

.wffi-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
}

.wffi-card h3 {
  margin: 15px 0;
  font-size: 1.4rem;
  color: #2a3439;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.wffi-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #ffd700; /* Gold accent */
}

.wffi-badge {
  background: linear-gradient(to right, #28a745, #5cb85c);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  /* margin-bottom: 15px; */
  display: inline-block;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: 0 3px 6px rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Optional Medal Icon */
.wffi-medal {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at center, #ffd700 30%, #daa520 100%);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  border: 3px solid white;
}

/* Stats in Green & Gold */
.wffi-stats {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  border-top: 1px dashed #dee2e6;
  padding-top: 15px;
}

.wffi-stat {
  font-weight: 600;
  color: #495057;
}

.wffi-stat span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #28a745;
  line-height: 1;
  margin-bottom: 5px;
}

.wffi-stat.gold span {
  color: #ffd700;
}

/* Action Button */
.wffi-action-btn {
  background: linear-gradient(to right, #28a745, #218838);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.wffi-action-btn:hover {
  background: linear-gradient(to right, #218838, #1e7e34);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(40, 167, 69, 0.4);
}

.wffi-action-btn:active {
  transform: translateY(1px);
}

.wffi-action-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0));
  transform: rotateZ(60deg) translate(-5em, 7.5em);
}

.wffi-action-btn:hover::after {
  animation: shine 1.5s forwards;
}

@keyframes shine {
  100% {
    transform: rotateZ(60deg) translate(1em, -1em);
  }
}

/* === BASE STYLING === */
  .grassroots-section {
    position: relative;
    padding: 80px 20px;
    background: 
      linear-gradient(rgba(11, 31, 15, 0.618), rgba(11, 31, 15, 0.95)),
      url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    overflow: hidden;
    border-bottom: 4px solid #ffd700;
  }

  .grassroots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.4); */
    z-index: 1;
  }

  .container {
    position: relative;
    z-index: 2;
    /* max-width: 1200px; */
    margin: 0 auto;
  }

  /* === HEADER STYLING === */
  .grassroots-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-bottom: 15px;
  }

  .grassroots-header h2 span {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }

  .underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    margin: 0 auto 20px;
    border-radius: 2px;
  }

  .grassroots-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
  }

  /* === PILLARS SECTION === */
  .pillars-section h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
  }

  .pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }

  .pillar-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: #ffd700;
  }

  .pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
  }

  .pillar-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
  }

  .pillar-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
  }

  /* === IMPACT SECTION === */
  .impact-section h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .impact-card {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ff8c00;
    border-radius: 8px;
  }

  .impact-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
  }

  /* === CTA SECTION === */
  .cta-section {
    margin-top: 40px;
  }

  .cta-section h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
  }

  .cta-button {
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    color: #0b1f0f;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.6);
  }

  /* === RESPONSIVE DESIGN === */
  @media (max-width: 768px) {
    .grassroots-header h2 {
      font-size: 2rem;
    }
    .pillars-grid {
      grid-template-columns: 1fr;
    }
  }

  /* === BASE STYLING === */
  .coaching-section {
    position: relative;
    padding: 80px 20px;
    background: 
      linear-gradient(rgba(11, 31, 15, 0.642), rgba(28, 48, 32, 0.95)),
      url('https://i.pinimg.com/1200x/35/7b/04/357b0425972e16d23d16ad64c077e4b5.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    overflow: hidden;
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
  }

  .coaching-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.4); */
    z-index: 1;
  }

  .coaching-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L100 100 M100 0 L0 100" stroke="rgba(255,215,0,0.1)" stroke-width="1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: 1;
  }

  .container {
    position: relative;
    z-index: 2;
    /* max-width: 1500px; */
    margin: 0 auto;
  }

  /* === HEADER STYLING === */
  .coaching-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .coaching-header h2 span {
    color: #ffd700;
    position: relative;
  }

  .coaching-header h2 span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff8c00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .coaching-header:hover h2 span::after {
    transform: scaleX(1);
  }

  .header-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    margin: 0 auto 25px;
    border-radius: 2px;
  }

  .intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
  }

  /* === PILLARS SECTION === */
  .pillars-title h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
  }

  .pillars-title h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #ff8c00;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }

  .pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
  }

  .pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #ffd700;
    background: rgba(11, 31, 15, 0.7);
  }

  .pillar-card:hover::before {
    opacity: 1;
  }

  .pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.3);
  }

  .pillar-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffd700;
  }

  .pillar-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
  }

  .pillar-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* === IMPACT STATEMENT === */
  .impact-statement {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ff8c00;
    border-radius: 8px;
  }

  .impact-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
    margin: 0;
  }

  .impact-statement strong {
    color: #ffd700;
  }

  /* === RESPONSIVE DESIGN === */
  @media (max-width: 768px) {
    .coaching-header h2 {
      font-size: 2.2rem;
    }
    .pillars-grid {
      grid-template-columns: 1fr;
    }
  }

     @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    /* Tournament Gallery Styles */
.tournament-gallery {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.gallery-header {
  margin-bottom: 40px;
}

.gallery-header h3 {
  font-size: 2rem;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.gallery-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff8c00, #ffd700);
  margin: 0 auto;
  border-radius: 3px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11, 31, 15, 0.9));
  padding: 20px 15px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
  opacity: 1;
}

.image-overlay p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #ffd700;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-header h3 {
    font-size: 1.5rem;
  }
  
  .image-overlay {
    opacity: 1;
    padding: 10px;
  }
  
  .image-overlay p {
    font-size: 0.9rem;
  }
}
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #0b1f0f; /* dark green base */
      color: white;
    }

    .tournaments-section {
      position: relative;
      padding: 100px 20px;
      text-align: center;
      overflow: hidden;
      background: 
        radial-gradient(ellipse at center, rgba(43, 94, 52, 0.3) 0%, rgba(11, 31, 15, 0.9) 70%),
        url("https://images.unsplash.com/photo-1600185384040-56eac4925484?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80") 
        center/cover no-repeat;
      box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.7);
    }

    .tournaments-section h2 {
      font-size: 3.5rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #ffd700;
      letter-spacing: 3px;
      margin-bottom: 25px;
      position: relative;
      text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
      animation: textGlow 3s ease-in-out infinite alternate;
    }

    @keyframes textGlow {
      0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
      100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3); }
    }

    .tournaments-section h2::after {
      content: "";
      display: block;
      width: 120px;
      height: 4px;
      background: linear-gradient(90deg, #ff8c00, #ffd700, #ff8c00);
      margin: 15px auto 0;
      border-radius: 4px;
      box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
    }

    .tournaments-section p {
      max-width: 800px;
      margin: 0 auto 60px;
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 300;
      position: relative;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
      /* max-width: 1200px; */
      margin: 50px auto 0;
      position: relative;
      z-index: 2;
    }

    .stat-card {
      background: rgba(11, 31, 15, 0.7);
      border: 1px solid rgba(255, 215, 0, 0.3);
      padding: 30px 25px;
      border-radius: 12px;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      backdrop-filter: blur(8px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #28a745, #ffd700, #28a745);
    }

    .stat-card:hover {
      transform: translateY(-10px) scale(1.03);
      background: rgba(11, 31, 15, 0.85);
      border-color: rgba(255, 215, 0, 0.7);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.1);
    }

    .stat-card h3 {
      font-size: 2.5rem;
      color: #ffd700;
      margin-bottom: 10px;
      font-weight: 600;
      position: relative;
      display: inline-block;
    }

    .stat-card h3::after {
      content: "+";
      position: absolute;
      right: -15px;
      top: 5px;
      font-size: 1.5rem;
      color: rgba(255, 215, 0, 0.7);
    }

    .stat-card p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.8);
      margin: 0;
      font-weight: 400;
    }

    /* Decorative elements */
    .tournaments-section::before,
    .tournaments-section::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 200px;
      background: linear-gradient(180deg, rgba(255, 140, 0, 0.3), transparent);
      opacity: 0.2;
      transform: skew(-15deg);
      z-index: 1;
    }
    .tournaments-section::before {
      left: -80px;
    }
    .tournaments-section::after {
      right: -80px;
    }

    /* Floating particles effect */
    .particle {
      position: absolute;
      background: rgba(255, 215, 0, 0.6);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .tournaments-section {
        padding: 70px 20px;
      }
      
      .tournaments-section h2 {
        font-size: 2.5rem;
      }
      
      .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
      }
    }





/* Add this for the particles animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(10px) translateX(-10px);
  }
  75% {
    transform: translateY(-10px) translateX(5px);
  }
}
.govt-img {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin: 30px auto;
  flex-wrap: wrap;
}

.govt-img img {
  width: 100%;
  height: 220px;        /* fixed equal height */
  max-width: 350px;     /* max width so they don’t get too big */
  object-fit: cover;    /* crops image nicely */
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.govt-img img:hover {
  transform: scale(1.05);
}
    .govt-img img:active {
      transform: scale(0.95);
    }

    .govt-img img:nth-child(odd) {
      border: 2px solid #ffd700; /* Gold border for odd images */
    }

    .govt-img img:nth-child(even) {
      border: 2px solid #28a745; /* Green border for even images */
    }

    @media (max-width: 768px) {
      .govt-img img {
        max-width: 100%; /* Full width on smaller screens */
        height: auto;    /* Auto height to maintain aspect ratio */
      }
        .govt-img {
            flex-direction: column; /* Stack images vertically */
            align-items: center;    /* Center align */
        }}

         .pathway-section {
    position: relative;
    padding: 80px 20px;
    background: 
      linear-gradient(rgba(11, 31, 15, 0.495), rgba(11, 31, 15, 0.725)),
      url('https://images.unsplash.com/photo-1552667466-07770ae110d0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }

  .pathway-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 1;
  }

  .container {
    position: relative;
    z-index: 2;
    /* max-width: 1200px; */
    margin: 0 auto;
  }

  /* === HEADER STYLING === */
  .pathway-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .pathway-header h2 span {
    color: #ffd700;
  }

  .header-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    margin: 0 auto 25px;
    border-radius: 2px;
  }

  .intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
  }

  /* === PROGRESSION TIMELINE === */
  .progression-section {
    margin: 60px auto;
    max-width: 1000px;
  }

  .progression-section h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .pathway-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }

  .pathway-step {
    flex: 1;
    min-width: 150px;
    margin: 0 5px;
    position: relative;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    transition: all 0.3s ease;
  }

  .pathway-step:hover .step-icon {
    background: #ffd700;
    color: #0b1f0f;
    transform: scale(1.1);
  }

  .pathway-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    color: white;
  }

  .pathway-arrow {
    color: #ffd700;
    font-size: 2rem;
    margin: 0 -10px;
    opacity: 0.7;
  }

  /* === PATHWAY CARDS === */
  .pathway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px auto;
  }

  .pathway-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-align: left;
  }

  .pathway-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
  }

  .card-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffd700;
  }

  .pathway-card h4 {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
  }

  .pathway-card ul {
    padding-left: 20px;
  }

  .pathway-card li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    position: relative;
  }

  .pathway-card li::before {
    content: "•";
    color: #ffd700;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

  /* === GUARANTEE BOX === */
  .guarantee-box {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 25px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff8c00;
    display: flex;
    align-items: center;
    text-align: left;
  }

  .guarantee-box svg {
    width: 40px;
    height: 40px;
    fill: #ffd700;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .guarantee-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
  }

  .guarantee-box strong {
    color: #ffd700;
  }

  /* === RESPONSIVE DESIGN === */
  @media (max-width: 768px) {
    .pathway-header h2 {
      font-size: 2rem;
    }
    
    .pathway-timeline {
      flex-direction: column;
      align-items: center;
    }
    
    .pathway-step {
      margin: 15px 0;
      width: 100%;
    }
    
    .pathway-arrow {
      transform: rotate(90deg);
      margin: 10px 0;
    }
    
    .guarantee-box {
      flex-direction: column;
      text-align: center;
    }
    
    .guarantee-box svg {
      margin-right: 0;
      margin-bottom: 15px;
    }
  }
  /* 🔹 Banner Image */
.pathway-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px; /* space between images */
  margin: 25px 0;
}

.pathway-banner img {
  width: 100%;
  height: 220px; /* uniform height */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pathway-banner img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}


/* 🔹 Step Images (Timeline) */
.step-img {
  width: 80px;
  height: 80px;
  margin-top: 10px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD700; /* golden border */
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.step-img:hover {
  transform: scale(1.1); /* sporty hover effect */
}

/* 🔹 Card Images */
.card-img {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  background: #0a3d2f; /* green background if image has transparent parts */
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-img:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

/* 🔹 Guarantee Image */
.guarantee-img {
  width: 200px;
  height: 200px;
  margin-right: 12px;
  /* border-radius: 50%; */
  object-fit: cover;
  border: 2px solid #FFD700;
  vertical-align: middle;
}

  /* ===== BASE STYLING ===== */
  .wffi-news-media {
    position: relative;
    padding: 5rem 1.25rem;
    background: 
      linear-gradient(rgba(11, 31, 15, 0.92), rgba(11, 31, 15, 0.96)),
      url('football-field-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
  }

  .wffi-news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(43, 94, 52, 0.4) 0%, rgba(11, 31, 15, 0.9) 100%);
    z-index: 1;
  }

  .wffi-news-container {
    position: relative;
    z-index: 2;
    max-width: 75rem;
    margin: 0 auto;
  }

  /* ===== HEADER STYLING ===== */
  .wffi-news-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .wffi-news-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0.125rem 0.625rem rgba(255, 215, 0, 0.3);
  }

  .wffi-news-underline {
    width: 6.25rem;
    height: 0.25rem;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    margin: 0 auto 1.5rem;
    border-radius: 0.125rem;
  }

  .wffi-year-highlight {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1.25rem;
    font-weight: 500;
  }

  .wffi-year-highlight span {
    color: #ffd700;
    font-weight: 700;
  }

  /* ===== TIMELINE STYLING ===== */
  .wffi-achievement-timeline {
    position: relative;
    padding-left: 3.125rem;
  }

  .wffi-achievement-timeline::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 0;
    bottom: 0;
    width: 0.1875rem;
    background: linear-gradient(to bottom, #ff8c00, #ffd700, #ff8c00);
    z-index: 1;
  }

  .wffi-timeline-event {
    position: relative;
    margin-bottom: 3.75rem;
  }

  .wffi-event-date, .wffi-event-period {
    position: absolute;
    left: -3.125rem;
    width: 6.25rem;
    text-align: right;
    font-weight: 600;
    color: #ffd700;
    font-size: 1rem;
  }

  .wffi-event-period {
    top: -0.625rem;
  }

  .wffi-event-content {
    padding-left: 2.5rem;
    margin-left: 100px;
  }

  .wffi-event-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
  }

  .wffi-event-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 3.125rem;
    height: 0.125rem;
    background: #ff8c00;
  }

  /* ===== NEWS CARD STYLING ===== */
  .wffi-news-card {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 0.0625rem solid rgba(255, 215, 0, 0.2);
    border-radius: 0.625rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.2);
  }

  .wffi-news-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 2.5rem rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
  }

  .wffi-news-img {
    width: 40%;
    background-size: cover;
    background-position: center;
    min-height: 15.625rem;
  }

  .wffi-news-details {
    width: 60%;
    padding: 1.875rem;
    text-align: left;
  }

  .wffi-news-details p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
  }

  /* ===== SPECIAL COMPONENTS ===== */
  .wffi-stat-highlight {
    background: rgba(255, 215, 0, 0.1);
    border-left: 0.1875rem solid #ffd700;
    padding: 0.75rem 0.9375rem;
    margin: 1.25rem 0;
    border-radius: 0 0.3125rem 0.3125rem 0;
    font-size: 0.9375rem;
  }

  .wffi-stat-highlight span {
    color: #ffd700;
    font-weight: 700;
  }

  .wffi-achievement-list {
    list-style-type: none;
    padding-left: 0;
    margin: 1.25rem 0;
  }

  .wffi-achievement-list li {
    position: relative;
    padding-left: 1.5625rem;
    margin-bottom: 0.625rem;
  }

  .wffi-achievement-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.25rem;
  }

  .wffi-quote-box {
    font-style: italic;
    padding: 0.9375rem;
    background: rgba(255, 140, 0, 0.1);
    border-left: 0.1875rem solid #ff8c00;
    margin: 1.25rem 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .wffi-milestone-container {
    display: flex;
    gap: 1.25rem;
    margin: 1.5625rem 0;
  }

  .wffi-milestone {
    text-align: center;
    flex: 1;
  }

  .wffi-milestone span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
    line-height: 1;
  }

  .wffi-milestone small {
    font-size: 0.875rem;
    opacity: 0.8;
    display: block;
    margin-top: 0.3125rem;
  }

  .wffi-player-spotlight {
    display: flex;
    gap: 1.25rem;
    margin: 1.5625rem 0;
  }

  .wffi-player-card {
    padding: 0.9375rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 0.3125rem;
    text-align: center;
    flex: 1;
    border: 0.0625rem solid rgba(255, 215, 0, 0.2);
  }

  .wffi-player-name {
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.3125rem;
  }

  .wffi-player-role {
    font-size: 0.875rem;
    opacity: 0.8;
  }

  .wffi-ambition-text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
    font-weight: 500;
  }

  .wffi-ambition-text strong {
    color: #ffd700;
  }

  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 48rem) {
    .wffi-news-media {
      padding: 3.125rem 1.25rem;
    }
    
    .wffi-news-title {
      font-size: 2.2rem;
    }
    
    .wffi-achievement-timeline {
      padding-left: 1.875rem;
    }
    
    .wffi-achievement-timeline::before {
      left: 0.625rem;
    }
    
    .wffi-event-date, .wffi-event-period {
      left: -1.875rem;
      width: 3.75rem;
      font-size: 0.875rem;
    }
    
    .wffi-news-card {
      flex-direction: column;
    }
    
    .wffi-news-img, .wffi-news-details {
      width: 100%;
    }
    
    .wffi-news-img {
      height: 12.5rem;
    }
    
    .wffi-milestone-container, .wffi-player-spotlight {
      flex-direction: column;
      gap: 0.9375rem;
    }
  }
    @media (max-width: 36rem) {
        .wffi-news-title {
        font-size: 1.8rem;
        }
        
        .wffi-achievement-timeline::before {
        left: 0.3125rem;
        }
        
        .wffi-event-date, .wffi-event-period {
        left: -1.25rem;
        width: 3.125rem;
        font-size: 0.75rem;
        }
        
        .wffi-news-card {
        flex-direction: column;
        }
        
        .wffi-news-img {
        height: 10rem;
        }
    }

     /* WFFI Donate Section Styles */
        .wffi-donate-section {
            position: relative;
            padding: 80px 20px;
            background: linear-gradient(rgba(11, 31, 15, 0.241), rgba(11, 31, 15, 0.95)),
                        url('img/image1.jpg.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .wffi-donate-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: rgba(0, 0, 0, 0.4); */
            z-index: 1;
        }

        .wffi-donate-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .wffi-donate-header {
            margin-bottom: 50px;
        }

        .wffi-donate-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            text-transform: uppercase;
            color: white;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .wffi-donate-header h2 span {
            color: #ffd700;
        }

        .wffi-donate-underline {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #ff8c00, #ffd700);
            margin: 0 auto 25px;
            border-radius: 2px;
        }

        .wffi-donate-intro {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Support Options */
        .wffi-support-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .wffi-support-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .wffi-support-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #28a745, #ffd700, #28a745);
        }

        .wffi-support-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 215, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: #ffd700;
        }

        .wffi-support-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .wffi-support-icon i {
            font-size: 2rem;
            color: #ffd700;
        }

        .wffi-support-card h3 {
            font-size: 1.4rem;
            color: #ffd700;
            margin-bottom: 15px;
        }

        .wffi-support-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .wffi-support-features {
            text-align: left;
            margin-top: 20px;
        }

        .wffi-support-features li {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            padding-left: 25px;
        }

        .wffi-support-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ffd700;
            font-weight: bold;
        }

        /* Impact Stats */
        .wffi-impact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 60px auto;
            max-width: 900px;
        }

        .wffi-impact-stat {
            background: rgba(255, 215, 0, 0.1);
            border-radius: 8px;
            padding: 20px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .wffi-impact-stat h4 {
            font-size: 2.2rem;
            color: #ffd700;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .wffi-impact-stat p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .wffi-donate-cta {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 10px;
            border-left: 4px solid #ff8c00;
        }

        .wffi-donate-cta h3 {
            font-size: 1.8rem;
            color: #ffd700;
            margin-bottom: 20px;
        }

        .wffi-donate-cta p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .wffi-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .wffi-btn-primary {
            background: linear-gradient(to right, #28a745, #218838);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .wffi-btn-primary:hover {
            background: linear-gradient(to right, #218838, #1e7e34);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        }

        .wffi-btn-secondary {
            background: transparent;
            color: #ffd700;
            border: 2px solid #ffd700;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .wffi-btn-secondary:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .wffi-donate-header h2 {
                font-size: 2.2rem;
            }
            
            .wffi-support-options {
                grid-template-columns: 1fr;
            }
            
            .wffi-impact-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .wffi-cta-buttons {
                flex-direction: column;
            }
            
            .wffi-btn-primary, .wffi-btn-secondary {
                width: 100%;
            }
        }

          /* WFFI Initiatives Section Styles */
        .wffi-initiatives-section {
            position: relative;
            padding: 80px 20px;
            background: linear-gradient(rgba(11, 31, 15, 0.723), rgba(11, 31, 15, 0.95)),
                        url('img/sponser.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            overflow: hidden;
        }

        .wffi-initiatives-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: rgba(0, 0, 0, 0.4); */
            z-index: 1;
        }

        .wffi-initiatives-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .wffi-initiatives-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .wffi-initiatives-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            text-transform: uppercase;
            color: white;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .wffi-initiatives-header h2 span {
            color: #ffd700;
        }

        .wffi-initiatives-underline {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #ff8c00, #ffd700);
            margin: 0 auto 25px;
            border-radius: 2px;
        }

        .wffi-initiatives-intro {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Initiatives Grid */
        .wffi-initiatives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .wffi-initiative-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .wffi-initiative-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #28a745, #ffd700, #28a745);
        }

        .wffi-initiative-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 215, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: #ffd700;
        }

        .wffi-initiative-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 215, 0, 0.3);
        }

        .wffi-initiative-logo i {
            font-size: 2.5rem;
            color: #ffd700;
        }

        .wffi-initiative-title {
            font-size: 1.5rem;
            color: #ffd700;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 600;
        }

        .wffi-initiative-partners {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .wffi-initiative-desc {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .wffi-initiative-features {
            margin-top: 25px;
        }

        .wffi-initiative-features li {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            padding-left: 25px;
        }

        .wffi-initiative-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ffd700;
            font-weight: bold;
        }

        .wffi-initiative-stats {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 15px;
        }

        .wffi-initiative-stat {
            text-align: center;
            padding: 10px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 5px;
            flex: 1;
        }

        .wffi-initiative-stat span {
            display: block;
            font-size: 1.5rem;
            color: #ffd700;
            font-weight: 700;
        }

        .wffi-initiative-stat p {
            font-size: 0.85rem;
            margin: 5px 0 0;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Impact & Vision Section */
        .wffi-impact-vision {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 10px;
            border-left: 4px solid #ff8c00;
            text-align: center;
        }

        .wffi-impact-vision h3 {
            font-size: 1.8rem;
            color: #ffd700;
            margin-bottom: 20px;
        }

        .wffi-impact-vision p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .wffi-impact-highlights {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .wffi-impact-item {
            background: rgba(11, 31, 15, 0.7);
            border-radius: 8px;
            padding: 15px;
            width: 150px;
            text-align: center;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .wffi-impact-item i {
            font-size: 2rem;
            color: #ffd700;
            margin-bottom: 10px;
        }

        .wffi-impact-item p {
            font-size: 0.9rem;
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .wffi-initiatives-header h2 {
                font-size: 2.2rem;
            }
            
            .wffi-initiatives-grid {
                grid-template-columns: 1fr;
            }
            
            .wffi-initiative-stats {
                flex-direction: column;
                gap: 10px;
            }
            
            .wffi-impact-highlights {
                flex-direction: column;
                align-items: center;
            }
            
            .wffi-impact-item {
                width: 100%;
                max-width: 250px;
            }
        }

        
        .wffi-contact-container {
            width: 100%;
            max-width: 800px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 215, 0, 0.3);
            backdrop-filter: blur(10px);
            
        }
.contact-section{
     background-color: #0b1f0f;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
}
        .wffi-contact-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .wffi-contact-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffd700;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .wffi-contact-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        .wffi-contact-underline {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #ff8c00, #ffd700);
            margin: 15px auto;
            border-radius: 2px;
        }

        .wffi-contact-form {
            display: grid;
            grid-gap: 20px;
        }

        .wffi-form-group {
            display: flex;
            flex-direction: column;
        }

        .wffi-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 600px) {
            .wffi-form-row {
                grid-template-columns: 1fr;
            }
        }

        .wffi-form-label {
            font-size: 1rem;
            margin-bottom: 8px;
            color: #ffd700;
            font-weight: 500;
        }

        .wffi-form-input, .wffi-form-textarea {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            background: rgba(11, 31, 15, 0.7);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .wffi-form-input:focus, .wffi-form-textarea:focus {
            outline: none;
            border-color: #ffd700;
            box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
        }

        .wffi-form-input::placeholder, .wffi-form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .wffi-form-textarea {
            resize: vertical;
            min-height: 150px;
        }

        .wffi-form-submit {
            background: linear-gradient(to right, #28a745, #218838);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .wffi-form-submit:hover {
            background: linear-gradient(to right, #218838, #1e7e34);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        }

        .wffi-form-submit:active {
            transform: translateY(0);
        }

        .wffi-contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
        }

        .wffi-contact-item {
            display: flex;
            align-items: center;
        }

        .wffi-contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .wffi-contact-icon i {
            font-size: 1.2rem;
            color: #ffd700;
        }

        .wffi-contact-details h4 {
            color: #ffd700;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .wffi-contact-details p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Form validation styles */
        .wffi-form-input.error, .wffi-form-textarea.error {
            border-color: #ff4d4d;
        }

        .wffi-error-message {
            color: #ff4d4d;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        /* Success message */
        .wffi-form-success {
            background: rgba(40, 167, 69, 0.1);
            border: 1px solid rgba(40, 167, 69, 0.5);
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
            text-align: center;
            display: none;
        }

        .wffi-form-success i {
            color: #28a745;
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .wffi-form-success p {
            color: white;
        }