:root {
            --primary: #22C55E;
    --primary-light: #4ADE80;
    --primary-dark: #16A34A;
            --dark: #0A1F0A;
            --darker: #051005;
            --light: #F0F8F0;
            --gray: #6B8B6B;
            --accent: #009b22;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Geometric background elements */
        .bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-element {
            position: absolute;
            border-radius: 10px;
            opacity: 0.03;
            background: var(--primary);
        }
        
        /* Header & Navigation */
        header {
            background: rgba(15, 15, 30, 0.8);
            backdrop-filter: blur(12px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid rgba(34, 197, 94, 0.15);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .logo-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            /* margin-right: 15px; */
            position: relative;
        }
        
        .logo-icon img {
            width: 60px;
            height: auto;
            object-fit: contain;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.6));
        }
        
        .logo-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle closest-side, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.1) 50%, transparent 100%);
            z-index: 1;
            animation: pulse 3s infinite ease-in-out;
        }
        
        @keyframes pulse {
            0% { transform: scale(0.95); opacity: 0.5; }
            50% { transform: scale(1.05); opacity: 0.8; }
            100% { transform: scale(0.95); opacity: 0.5; }
        }
        
        /* .logo-icon::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: shine 4s infinite linear;
        } */
        
        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }
        
        .logo-text {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        
        /* Mobile menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .menu-toggle span {
            height: 3px;
            width: 100%;
            background-color: var(--light);
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            font-size: 1.05rem;
            font-family: 'Rajdhani', sans-serif;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Hero Section - New Design */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 2;
            position: relative;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(34, 197, 94, 0.15);
            color: var(--primary-light);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 25px;
            font-weight: 500;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(34, 197, 94, 0.2);
        }
        
        .hero h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 4rem;
            margin-bottom: 25px;
            line-height: 1.1;
            font-weight: 700;
        }
        
        .hero h1 span {
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        
        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 3px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: var(--gray);
            max-width: 600px;
        }
        
        .btn {
            display: inline-block;
            padding: 16px 35px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn::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;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            margin-left: 20px;
            box-shadow: none;
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
        }
        
        .hero-image {
            position: absolute;
            right: 0;
            top: 30%;
            transform: translateY(-50%);
            width: 45%;
            height: 70%;
            background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(0, 255, 37, 0.1));
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 37, 0.1) 0%, transparent 40%);
            z-index: -1;
        }

        .hero-main-image {
            width: 80%;
            height: auto;
            /* margin-bottom: 10px; */
            margin-top: 100px;
            filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.6));
            animation: float 4s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .hero-image-content {
            text-align: center;
            color: var(--gray);
            padding: 30px;
        }
        
        .hero-image-content i {
            font-size: 5rem;
            margin-bottom: 20px;
            color: var(--primary);
            opacity: 0.7;
        }
        
        .hero-image-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        /* Countdown Timer with Enhanced Animations */
        .countdown-container {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            max-width: 600px;
            margin-left: 0;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .countdown-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 127, 0.1), transparent);
            transition: left 2s ease;
        }

        .countdown-container:hover::before {
            left: 100%;
        }

        .countdown-item {
            text-align: center;
            color: var(--light);
            position: relative;
            transition: transform 0.3s ease;
        }

        .countdown-item:hover {
            transform: translateY(-5px);
        }

        .countdown-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            line-height: 1;
            position: relative;
            transition: all 0.3s ease;
            text-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
        }

        .countdown-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-top: 5px;
            transition: color 0.3s ease;
        }

        /* Animation Classes */
        .flip-animation {
            animation: flipNumber 0.3s ease-in-out;
        }

        @keyframes flipNumber {
            0% { transform: rotateX(0deg); }
            50% { transform: rotateX(-90deg); }
            100% { transform: rotateX(0deg); }
        }

        .pulse-animation {
            animation: pulseGlow 0.6s ease-in-out;
        }

        @keyframes pulseGlow {
            0% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(0, 255, 127, 0.4);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(0, 255, 127, 0.1);
            }
            100% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(0, 255, 127, 0);
            }
        }

        /* Celebration Animation */
        .countdown-container.celebration {
            animation: celebrate 2s ease-in-out infinite;
            background: linear-gradient(45deg, 
                rgba(255, 215, 0, 0.1), 
                rgba(255, 20, 147, 0.1), 
                rgba(0, 255, 127, 0.1), 
                rgba(30, 144, 255, 0.1)
            );
            background-size: 400% 400%;
        }

        @keyframes celebrate {
            0%, 100% { 
                background-position: 0% 50%;
                transform: scale(1);
            }
            25% { 
                background-position: 100% 50%;
                transform: scale(1.02);
            }
            50% { 
                background-position: 100% 100%;
                transform: scale(1);
            }
            75% { 
                background-position: 0% 100%;
                transform: scale(1.02);
            }
        }

        /* Event Started Message */
        .event-started-message {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 255, 127, 0.9);
            color: var(--dark);
            padding: 15px 25px;
            border-radius: 10px;
            font-weight: bold;
            animation: fadeInScale 1s ease-out;
            z-index: 10;
        }

        .event-started-message h3 {
            margin: 0;
            font-size: 1.2rem;
            text-align: center;
        }

        @keyframes fadeInScale {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        /* Glowing Border Animation */
        .countdown-container::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(0, 255, 127, 0.3), 
                transparent, 
                rgba(0, 255, 127, 0.3)
            );
            border-radius: 17px;
            z-index: -1;
            animation: rotateGlow 4s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .countdown-container:hover::after {
            opacity: 1;
        }

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

        /* Number Glow Effect */
        .countdown-number:hover {
            text-shadow: 
                0 0 10px rgba(0, 255, 127, 0.5),
                0 0 20px rgba(0, 255, 127, 0.3),
                0 0 30px rgba(0, 255, 127, 0.2);
            transform: scale(1.1);
        }

        /* Responsive adjustments for countdown */
        @media (max-width: 768px) {
            .countdown-container {
                gap: 15px;
                padding: 15px 20px;
                margin-left: auto;
                margin-right: auto;
            }

            .countdown-number {
                font-size: 2.5rem;
            }

            .countdown-label {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .countdown-container {
                gap: 10px;
                padding: 10px 15px;
            }

            .countdown-number {
                font-size: 2rem;
            }

            .countdown-label {
                font-size: 0.7rem;
            }

            .event-started-message h3 {
                font-size: 1rem;
            }
        }
        
        /* Section Styles */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .section-title h2 span {
            color: var(--primary);
            position: relative;
        }
        
        .section-title h2 span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        /* Focus Areas - New Design */
        .focus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .focus-card {
            background: linear-gradient(145deg, rgba(10, 30, 10, 0.6), rgba(5, 20, 5, 0.6));
            border-radius: 15px;
            padding: 40px 30px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .focus-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            transition: height 0.5s;
        }
        
        .focus-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .focus-card:hover::before {
            height: 100%;
        }
        
        .focus-card .focus-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 25px;
            filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.4));
            transition: transform 0.3s ease-in-out;
        }
        
        .focus-card:hover .focus-icon {
            transform: scale(1.1) translateY(-5px);
        }
        
        .focus-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--light);
            font-family: 'Rajdhani', sans-serif;
        }
        
        .focus-card p {
            color: var(--gray);
            font-size: 1.05rem;
        }
        
        /* Team Section - New Design */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background: linear-gradient(145deg, rgba(10, 30, 10, 0.6), rgba(5, 20, 5, 0.6));
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .member-image {
            height: 280px;
            background: linear-gradient(45deg, #1a4a1a, #2d7a2d);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 20px;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease-in-out;
            filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
        }

        .member-image:hover img {
            transform: scale(1.05);
        }
        
        .member-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(34, 197, 94, 0.3), rgba(0, 255, 37, 0.3));
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .team-member:hover .member-image::before {
            opacity: 1;
        }
        
        .member-info {
            padding: 30px;
            text-align: center;
        }
        
        .member-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--light);
            font-family: 'Rajdhani', sans-serif;
        }
        
        .member-info p {
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .member-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .member-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        /* Events Section - New Design */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .event-card {
            background: linear-gradient(145deg, rgba(10, 30, 10, 0.6), rgba(5, 20, 5, 0.6));
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .event-image {
            height: 200px;
            background: linear-gradient(45deg, rgba(45, 142, 45, 0.1), rgba(26, 90, 26, 0.1));
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 30px;
        }
        
        .event-image img {
            width: 500px;
            height: 285%;
            object-fit: contain;
            filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.4));
            transition: transform 0.3s ease-in-out;
        }
        
        .event-card:hover .event-image img {
            transform: scale(1.1) translateY(-5px);
        }
        
        .event-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(34, 197, 94, 0.3), rgba(0, 255, 37, 0.3));
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .event-card:hover .event-image::before {
            opacity: 1;
        }
        
        .event-info {
            padding: 30px;
        }
        
        .event-date {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .event-info h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--light);
            font-family: 'Rajdhani', sans-serif;
        }
        
        .event-info p {
            color: var(--gray);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(0, 255, 37, 0.1) 100%);
            padding: 80px 0;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-item {
            padding: 30px;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            font-family: 'Rajdhani', sans-serif;
        }
        
        .stat-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .stat-text {
            color: var(--light);
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .stat-desc {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            margin-bottom: 25px;
        }
        
        .footer-about p {
            color: var(--gray);
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        
        .footer-heading {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--light);
            font-family: 'Rajdhani', sans-serif;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1.1rem;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 1.05rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.4s ease-out, transform 0.4s ease-out;
        }
        
        .animate.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Partners Section Styles */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .partner-card {
            background: var(--dark);
            border-radius: 15px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(34, 197, 94, 0.1);
        }

        .partner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .partner-logo {
            width: 100%;
            height: 150px;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .partner-logo img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid var(--primary);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            filter: brightness(0.9);
        }

        .partner-card:hover .partner-logo img {
            transform: scale(1.05);
            filter: brightness(1);
            box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
        }

        .partner-info h3 {
            font-size: 1.8rem;
            color: var(--primary-light);
            margin-bottom: 10px;
        }

        .partner-info p {
            font-size: 1rem;
            color: var(--light);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .partner-social {
            margin-top: auto;
        }

        .partner-social a {
            color: var(--gray);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .partner-social a:hover {
            color: var(--primary);
        }

        /* Highlight Icons Styles */
        .highlight-icon {
            width: 60px;
            height: 60px;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(58%) sepia(96%) saturate(1234%) hue-rotate(95deg) brightness(96%) contrast(89%);
            transition: all 0.3s ease;
        }
        
        .member-image:hover .highlight-icon {
            transform: scale(1.1);
            /* filter: brightness(0) saturate(100%) invert(58%) sepia(96%) saturate(1234%) hue-rotate(95deg) brightness(120%) contrast(89%); */
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                width: 95%;
                padding: 0 15px;
            }
            
            .focus-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 25px;
            }
            
            .events-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 25px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .hero-image {
                position: relative;
                width: 100%;
                height: 400px;
                margin-top: 50px;
                transform: none;
            }
            
            .hero-main-image {
                margin-top: 100px;
                width: 80%;
            }
            
            .hero {
                padding-bottom: 80px;
            }
            
            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
            }
            
            .focus-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 20px;
            }
            
            .events-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 20px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                margin-bottom: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            
            nav {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 90px);
                background: var(--dark);
                border-right: 1px solid rgba(34, 197, 94, 0.2);
                transition: left 0.3s;
                z-index: 999;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 40px;
            }
            
            nav ul li {
                margin: 0 0 25px 0;
            }
            
            nav ul li a {
                font-size: 1.2rem;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .focus-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .events-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .partners-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .highlight-icon {
                width: 50px;
                height: 50px;
            }
            
            .focus-card {
                padding: 30px 20px;
            }
            
            .team-member .member-image {
                height: 250px;
            }
            
            .event-card .event-image {
                height: 180px;
            }
            
            .partner-card {
                padding: 25px;
            }
            
            .section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 14px 25px;
                font-size: 1rem;
            }
            
            .btn-outline {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .highlight-icon {
                width: 45px;
                height: 45px;
            }
            
            .focus-card {
                padding: 25px 15px;
            }
            
            .focus-card .focus-icon {
                width: 60px;
                height: 60px;
            }
            
            .team-member .member-image {
                height: 220px;
            }
            
            .member-info {
                padding: 20px;
            }
            
            .event-card .event-image {
                height: 160px;
                padding: 20px;
            }
            
            .event-info {
                padding: 20px;
            }
            
            .partner-card {
                padding: 20px;
            }
            
            .partner-logo {
                height: 120px;
            }
            
            .partner-logo img {
                width: 100px;
                height: 100px;
            }
            
            .section {
                padding: 50px 0;
            }
            
            .section-title {
                margin-bottom: 40px;
            }
        }
