
        :root {
            --primary: #e50914;
            --secondary: #121212;
            --white: #ffffff;
            --dark-gray: #1e1e1e;
            --light-gray: #2a2a2a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        /* Navbar */
        .navbar {
            background-color: rgba(18, 18, 18, 0.9);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        



/* Our Wins Section Styles */
.wins {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.wins-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.win-details {
    padding-right: 20px;
}

.win-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.win-subtitle {
    font-size: 1.5rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 20px;
}

.win-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.win-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 25px;
}

.highlight span {
    font-weight: 500;
    color: #2c3e50;
}

.win-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.win-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.win-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: rgb(240, 28, 28);
    padding: 10px 15px;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wins-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .win-details {
        padding-right: 0;
    }
    
    .win-title {
        font-size: 1.7rem;
    }
    
    .win-subtitle {
        font-size: 1.3rem;
    }
}

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .login-btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .login-btn:hover {
            background-color: #c8000d;
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--dark-gray);
            position: relative;
            overflow: hidden;
            padding: 0 2rem;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.2) 0%, rgba(18, 18, 18, 0.9) 100%);
            z-index: 1;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/1600/900');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 0;
        }
        
        .hero-content {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            z-index: 2;
            padding-top: 5rem;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 span {
            color: var(--primary);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .btn {
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            border: none;
        }
        
        .btn-primary:hover {
            background-color: #c8000d;
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* About Section */
        .about {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .about-card {
            background-color: var(--light-gray);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .about-card:hover {
            transform: translateY(-10px);
        }
        
        .about-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .about-card h3 {
            margin-bottom: 1rem;
        }
        
        .about-card p {
            color: #ccc;
            line-height: 1.6;
        }
        
        /* Events Section */
        .events {
            padding: 5rem 2rem;
            background-color: var(--dark-gray);
        }
        
        .events-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .event-card {
            background-color: var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
        }
        
        .event-img {
            height: 200px;
            background-image: url('/api/placeholder/300/200');
            background-size: cover;
            background-position: center;
        }
        
        .event-details {
            padding: 1.5rem;
        }
        
        .event-date {
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .event-title {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .event-desc {
            color: #ccc;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        /* Projects Section */
        .projects {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .project-card {
            background-color: var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        
        .project-img {
            height: 200px;
            background-image: url('/api/placeholder/300/200');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 18, 18, 0.8);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        .project-links {
            display: flex;
            gap: 1rem;
        }
        
        .project-link {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .project-link:hover {
            transform: scale(1.1);
        }
        
        .project-details {
            padding: 1.5rem;
        }
        
        .project-title {
            margin-bottom: 0.5rem;
        }
        
        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .tech-tag {
            background-color: rgba(229, 9, 20, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.8rem;
        }
        
        .project-desc {
            color: #ccc;
            line-height: 1.6;
        }
        
        /* Team Section */
        .team {
            padding: 5rem 2rem;
            background-color: var(--dark-gray);
        }
        
        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .team-card {
            background-color: var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-img {
            height: 250px;
            background-image: url('/api/placeholder/250/250');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .team-details {
            padding: 1.5rem;
        }
        
        .team-name {
            margin-bottom: 0.5rem;
        }
        
        .team-role {
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .social-link {
            width: 35px;
            height: 35px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-link:hover {
            background-color: var(--primary);
        }
        
        /* Join Us Section */
        .join {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-gray) 100%);
        }
        
        .join-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--light-gray);
            border-radius: 8px;
            padding: 3rem;
        }
        
        .join-title {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .join-form {
            display: grid;
            gap: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.8rem;
            border-radius: 4px;
            border: 1px solid #444;
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .join-btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
            margin-top: 1rem;
        }
        
        .join-btn:hover {
            background-color: #c8000d;
        }
        
        /* Partners Section */
        .partners {
            padding: 5rem 2rem;
        }
        
        .partners-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            place-items: center;
        }
        
        .partner-logo {
            background-color: var(--light-gray);
            height: 100px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        
        .partner-logo:hover {
            transform: scale(1.05);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-gray);
            padding: 3rem 2rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--white);
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .footer-logo span {
            color: var(--primary);
        }
        
        .footer-about p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-contact p {
            color: #ccc;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            color: var(--primary);
            margin-right: 10px;
            width: 20px;
        }
        
        .copyright {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #999;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Blog Section */
        .blog {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .blog-card {
            background-color: var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
        }
        
        .blog-img {
            height: 200px;
            background-image: url('/api/placeholder/350/200');
            background-size: cover;
            background-position: center;
        }
        
        .blog-details {
            padding: 1.5rem;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }
        
        .blog-meta i {
            margin-right: 5px;
        }
        
        .blog-meta span {
            margin-right: 15px;
        }
        
        .blog-title {
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        
        .blog-excerpt {
            color: #ccc;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* Responsiveness */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--secondary);
                flex-direction: column;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                text-align: center;
                padding: 0.8rem 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .join-container {
                padding: 2rem;
            }
        }


    /* CTA Section Styles */
    .cta {
        background-color: var(--primary);
        padding: 80px 0;
        text-align: center;
        color: var(--white);
    }

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

    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .cta-text {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .cta-button {
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .primary-btn {
        background-color: var(--white);
        color: var(--primary);
    }

    .primary-btn:hover {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .secondary-btn {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .secondary-btn:hover {
        background-color: var(--white);
        color: var(--primary);
    }

    /* Contact Section Styles */
    .contact {
        background-color: var(--dark-gray);
        padding: 80px 0;
        color: var(--white);
    }

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

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .contact-content {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .contact-info {
        flex: 1;
        min-width: 300px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-item i {
        font-size: 1.5rem;
        color: var(--primary);
        margin-right: 15px;
        width: 20px;
    }

    .contact-social {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--light-gray);
        color: var(--white);
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        background-color: var(--primary);
    }

    .contact-form {
        flex: 2;
        min-width: 300px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: none;
        border-radius: 5px;
        background-color: var(--light-gray);
        color: var(--white);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #999;
    }

    .submit-btn {
        background-color: var(--primary);
        color: var(--white);
        border: none;
        padding: 12px 30px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .submit-btn:hover {
        background-color: #c4080f;
    }

    /* Footer Styles */
    .footer {
        background-color: var(--secondary);
        color: var(--white);
        padding: 60px 0 20px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-logo {
        flex: 1;
        min-width: 250px;
        margin-bottom: 30px;
    }

    .footer-logo h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .footer-links {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .footer-column {
        margin-bottom: 30px;
        min-width: 150px;
    }

    .footer-column h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: var(--primary);
    }

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

    .footer-column ul li {
        margin-bottom: 8px;
    }

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

    .footer-column ul li a:hover {
        color: var(--primary);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        margin-top: 30px;
        border-top: 1px solid var(--light-gray);
        width: 100%;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .contact-content {
            flex-direction: column;
        }
        
        .footer-container {
            flex-direction: column;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .cta-button {
            width: 80%;
            margin-bottom: 10px;
        }
    }

    