@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #f44336; /* Energetic red/orange */
    --secondary: #0d47a1; /* Deep navy */
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.3px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.section-padding {
    padding: 30px 0;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.mobile-toggle {
    display: none;
}

.navbar ul {
    display: flex;
    gap: 35px;
}

.navbar ul li a {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 5px;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.navbar ul li a:hover::after, .navbar ul li a.active::after {
    width: 100%;
}
.navbar ul li a:hover, .navbar ul li a.active {
    color: var(--primary);
}

/* Buttons */
.primary-btn {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}
.primary-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    color: #fff;
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.secondary-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 150px 0 100px;
    background: url('../images/sports_banner.png') center/cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.85) 50%, rgba(13,71,161,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    animation: fadeInUp 1s ease;
}

.hero-content .subtitle {
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 720px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Marquee Section */
.marquee-container {
    background: var(--secondary);
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    position: relative;
}
.marquee-content {
    display: flex;
    animation: marqueeScroll 20s linear infinite;
    align-items: center;
}
.marquee-content span {
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 30px;
    display: flex;
    align-items: center;
}
.marquee-content span::after {
    content: '•';
    color: var(--primary);
    margin-left: 60px;
    font-size: 30px;
    line-height: 0;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title.left {
    text-align: left;
    margin-bottom: 30px;
}
.section-title span {
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 42px;
    color: var(--secondary);
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Dual Container Styling (Alternating) */
.dual-section {
    padding: 100px 0;
}
.dual-section.bg-gray {
    background: var(--bg-gray);
}
.dual-content p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 20px;
}
.dual-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: 0.4s;
}
.dual-image img:hover {
    transform: scale(1.02);
}
.list-check li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    font-weight: 500;
}
.list-check li i {
    color: var(--primary);
    font-size: 20px;
}

/* Cards (Events & Services) */
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    box-shadow: 0 20px 40px rgba(13, 71, 161, 0.12), 0 8px 20px rgba(244, 67, 54, 0.1);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(244, 67, 54, 0.3);
}
.service-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}
.service-card:hover i {
    transform: scale(1.2) rotate(-8deg);
}
.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.service-card:hover h3 {
    color: var(--primary);
}
.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Event / Project Cards */
.event-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}
.event-card:hover {
    box-shadow: 0 25px 45px rgba(13, 71, 161, 0.16), 0 10px 20px rgba(244, 67, 54, 0.1);
    transform: translateY(-10px) scale(1.015);
    border-color: rgba(244, 67, 54, 0.35);
}
.event-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.event-card:hover .event-img {
    transform: scale(1.08);
}
.event-content {
    padding: 30px;
    border-top: none;
    border-radius: 0 0 14px 14px;
    flex-grow: 1;
}
.tag-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(244, 67, 54, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.event-card:hover .tag-badge {
    transform: translateY(-2px);
}
.event-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.event-card:hover .event-content h3 {
    color: var(--primary);
}
.event-content p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Founders */
.founder-card {
    text-align: center;
    transition: 0.3s ease;
    padding: 20px;
    border-radius: 15px;
}
.founder-card:hover {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.founder-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 5px solid var(--bg-gray);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.founder-card:hover img {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(244, 67, 54, 0.2);
}
.founder-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}
.founder-card h4 {
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}
.founder-card p {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
}

/* Footer */
.main-footer {
    background: var(--secondary);
    color: #fff;
    padding: 80px 0 30px;
}
.footer-logo-box {
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-logo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
.footer-logo-box img {
    height: 52px;
    width: auto;
    max-width: 240px;
    display: block;
    object-fit: contain;
}
.footer-box h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.footer-box h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}
.footer-box p {
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer-box p i {
    color: var(--primary);
    margin-top: 5px;
}
.footer-box ul li {
    margin-bottom: 15px;
}
.footer-box ul li a {
    color: #cbd5e1;
}
.footer-box ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Social Icons - Animated SVG Icons */
.social-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.social-icon-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icon-btn:hover {
    transform: translateY(-5px) scale(1.12);
}

.social-icon-btn:hover svg {
    transform: scale(1.15);
}

.social-icon-btn:active {
    transform: translateY(-1px) scale(0.92);
    transition: transform 0.1s ease;
}

/* YouTube Specific Styling & Hover Glow */
.social-icon-btn.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.55);
}

/* Instagram Specific Styling & Hover Glow */
.social-icon-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(214, 36, 159, 0.55);
}

/* Facebook Specific Styling & Hover Glow */
.social-icon-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.55);
}

/* LinkedIn Specific Styling & Hover Glow */
.social-icon-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 119, 181, 0.55);
}

/* Twitter/X Specific Styling & Hover Glow */
.social-icon-btn.twitter:hover {
    background: #000000;
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

/* Newsletter Input */
.newsletter-input {
    display: flex;
    margin-top: 20px;
}
.newsletter-input input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: inherit;
    outline: none;
}
.newsletter-input button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}
.newsletter-input button:hover {
    background: #d32f2f;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 14px;
}

/* Inner Banner */
.inner-banner {
    min-height: 100vh;
    width: 100%;
    padding: 120px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}
.inner-banner h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.inner-banner p {
    color: #f1f5f9;
    font-size: 20px;
    max-width: 750px;
    margin: 0 auto;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    line-height: 1.6;
}

/* Contact Page Enhancements */
.form-control {
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating Bottom-Right WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Video Showcase Section */
.video-showcase-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(13, 71, 161, 0.18);
    border: 3px solid rgba(13, 71, 161, 0.12);
    background: #000;
    max-width: 900px;
    margin: 0 auto;
}

.video-showcase-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* WhatsApp QR Section */
.whatsapp-qr-section {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 50%, #25d366 100%);
    color: #ffffff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-qr-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
    max-width: 850px;
    margin: 0 auto;
}

.whatsapp-qr-img {
    width: 220px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border: 4px solid #25d366;
}

.whatsapp-qr-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #075e54;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-qr-info p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(18, 140, 126, 0.45);
}

@media (max-width: 768px) {
    .whatsapp-qr-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .whatsapp-qr-img {
        width: 180px;
    }
    .whatsapp-qr-info h3 {
        justify-content: center;
    }
}
