
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f4f4f4;
            overflow-x: hidden;
        }

        /* Color Variables - Updated to match logo */
        :root {
            --primary-purple: #1a2a4f;      /* dark blue from logo background */
            --primary-dark: #0f1a2f;        /* even darker shade for depth */
            --primary-gradient: linear-gradient(135deg, #1a2a4f 0%, #2c3e6d 100%);
            --secondary-gradient: linear-gradient(135deg, #ffb347, #ff8c00); /* warm orange accent */
            --text-dark: #2c3e50;            /* dark text for light backgrounds */
            --text-light: #666;              /* light text for readability */
            --bg-light: #f8f9fa;             /* very light background */
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --shadow-hover: 0 20px 40px rgba(26, 42, 79, 0.3);
        }

        /* Floating Social Icons - Fixed on Right */
        .floating-social {
            position: fixed;
            right: 20px;
            top: 80%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .social-float {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            text-decoration: none;
            box-shadow: var(--shadow-hover);
            transition: all 0.3s ease;
        }

        .social-float:hover {
            transform: scale(1.2) rotate(10deg);
            box-shadow: 0 10px 30px rgba(26, 42, 79, 0.5);
        }

        .social-float.whatsapp {
            background: #25d366;
        }

        .social-float.call {
            background: #4CAF50;
        }

        .social-float.facebook {
            background: #1877f2;
        }

        .social-float.instagram {
            background: #e4405f;
        }

        .social-float.twitter {
            background: #1da1f2;
        }

        .social-float.youtube {
            background: #ff0000;
        }

        /* Fixed Action Buttons - Left Side */
        .fixed-actions-left {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .action-btn-left {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            text-decoration: none;
            box-shadow: var(--shadow-hover);
            transition: all 0.3s ease;
            position: relative;
        }

        .action-btn-left.whatsapp {
            background: #25d366;
        }

        .action-btn-left.call {
            background: #4CAF50;
        }

        .action-btn-left .tooltip-text {
            position: absolute;
            left: 70px;
            background: white;
            color: var(--text-dark);
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .action-btn-left:hover .tooltip-text {
            opacity: 1;
            visibility: visible;
            left: 80px;
        }

        /* ===== MOBILE-SPECIFIC MENU STYLES with BOOTSTRAP ICONS ===== */

        /* Hide desktop nav on mobile */
        @media (max-width: 991px) {
            .desktop-nav {
                display: none !important;
            }
        }

        /* Show desktop nav on desktop */
        @media (min-width: 992px) {
            .mobile-header,
            .mobile-menu-panel,
            .mobile-menu-overlay {
                display: none !important;
            }
        }

        /* Mobile Header Styles */
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            padding: 12px 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            animation: slideDown 0.5s ease;
        }

        @media (max-width: 991px) {
            .mobile-header {
                display: block;
            }
        }

        .mobile-header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-brand {
            font-family: 'Oswald', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-purple);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
        }

        .mobile-brand span {
            color: var(--primary-dark);
        }

        /* Animated Menu Button with Bootstrap Icons */
        .mobile-menu-btn {
            width: 50px;
            height: 50px;
            border: none;
            background: linear-gradient(135deg, rgba(26, 42, 79, 0.1), rgba(15, 26, 47, 0.1));
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1001;
            font-size: 24px;
            color: var(--primary-purple);
        }

        .mobile-menu-btn:hover {
            background: linear-gradient(135deg, rgba(26, 42, 79, 0.2), rgba(15, 26, 47, 0.2));
            transform: scale(1.05);
        }

        .mobile-menu-btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 42, 79, 0.3);
        }

        /* Icon animation */
        .menu-icon-open,
        .menu-icon-close {
            position: absolute;
            transition: all 0.3s ease;
        }

        .menu-icon-close {
            opacity: 0;
            transform: rotate(-90deg);
        }

        .mobile-menu-btn.active .menu-icon-open {
            opacity: 0;
            transform: rotate(90deg);
        }

        .mobile-menu-btn.active .menu-icon-close {
            opacity: 1;
            transform: rotate(0);
        }

        /* Mobile Menu Panel */
        .mobile-menu-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: white;
            z-index: 1002;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: -5px 0 30px rgba(0,0,0,0.1);
            overflow-y: auto;
        }

        @media (max-width: 480px) {
            .mobile-menu-panel {
                max-width: 100%;
            }
        }

        .mobile-menu-panel.open {
            right: 0;
        }

        /* Menu Header */
        .mobile-menu-header {
            padding: 15px 0;
            border-bottom: 2px solid rgba(26, 42, 79, 0.1);
            background: white;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .mobile-menu-header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-menu-title {
            font-size: 22px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
        }

        .mobile-menu-title i {
            font-size: 24px;
            color: var(--primary-purple);
            -webkit-text-fill-color: initial;
        }

        .mobile-menu-close {
            width: 45px;
            height: 45px;
            border: none;
            background: rgba(26, 42, 79, 0.1);
            border-radius: 50%;
            color: var(--primary-purple);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            background: rgba(26, 42, 79, 0.2);
            transform: rotate(90deg);
        }

        /* Mobile Navigation List */
        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .mobile-nav-item {
            margin-bottom: 8px;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.4s ease;
        }

        .mobile-menu-panel.open .mobile-nav-item {
            opacity: 1;
            transform: translateX(0);
        }

        /* Stagger animation */
        .mobile-menu-panel.open .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu-panel.open .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
        .mobile-menu-panel.open .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu-panel.open .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
        .mobile-menu-panel.open .mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            background: linear-gradient(135deg, rgba(26, 42, 79, 0.03), rgba(15, 26, 47, 0.03));
            border-radius: 15px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
        }

        .mobile-nav-link:hover {
            background: linear-gradient(135deg, rgba(26, 42, 79, 0.1), rgba(15, 26, 47, 0.1));
            transform: translateX(5px);
            border-color: rgba(26, 42, 79, 0.3);
            box-shadow: 0 5px 15px rgba(26, 42, 79, 0.15);
        }

        .nav-icon {
            font-size: 22px;
            margin-right: 15px;
            width: 30px;
            color: var(--primary-purple);
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover .nav-icon {
            transform: scale(1.1);
        }

        .nav-text {
            flex: 1;
        }

        .nav-arrow {
            font-size: 18px;
            color: var(--primary-purple);
            opacity: 0.5;
            transform: translateX(-5px);
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover .nav-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Active link state */
        .mobile-nav-link.active {
            background: linear-gradient(135deg, rgba(26, 42, 79, 0.15), rgba(15, 26, 47, 0.15));
            border-left: 4px solid var(--primary-purple);
        }

        .mobile-nav-link.active .nav-icon {
            color: var(--primary-dark);
        }

        /* Mobile Menu Footer */
        .mobile-menu-footer {
            margin-top: 30px;
            padding: 20px 0;
            border-top: 2px solid rgba(26, 42, 79, 0.1);
        }

        .mobile-social-links {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .mobile-social-link {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, rgba(26, 42, 79, 0.1), rgba(15, 26, 47, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-purple);
            font-size: 22px;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: bounceIn 0.5s ease forwards;
            opacity: 0;
        }

        .mobile-menu-panel.open .mobile-social-link {
            opacity: 1;
        }

        .mobile-menu-panel.open .mobile-social-link:nth-child(1) { animation-delay: 0.35s; }
        .mobile-menu-panel.open .mobile-social-link:nth-child(2) { animation-delay: 0.4s; }
        .mobile-menu-panel.open .mobile-social-link:nth-child(3) { animation-delay: 0.45s; }
        .mobile-menu-panel.open .mobile-social-link:nth-child(4) { animation-delay: 0.5s; }
        .mobile-menu-panel.open .mobile-social-link:nth-child(5) { animation-delay: 0.55s; }

        .mobile-social-link:hover {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-dark));
            color: white;
            transform: translateY(-3px) rotate(360deg);
        }

        /* App Links */
        .mobile-app-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .app-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: linear-gradient(135deg, rgba(26, 42, 79, 0.1), rgba(15, 26, 47, 0.1));
            border-radius: 30px;
            text-decoration: none;
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .app-link:hover {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-dark));
            color: white;
            transform: scale(1.05);
            border-color: white;
        }

        .app-link i {
            font-size: 18px;
        }

        .mobile-copyright {
            text-align: center;
            color: #999;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .mobile-copyright i {
            font-size: 12px;
        }

        /* Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Navigation */
        .navbar {
            background: white;
            transition: all 0.3s ease;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .navbar-brand img{
            width: 60px;
            height: auto;
        }

        .navbar.scrolled {
            padding: 15px 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            font-family: 'Oswald', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-purple) !important;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .navbar-brand span {
            color: var(--primary-dark);
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 12px;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-purple) !important;
        }

        /* Page Header */
.page-header {
    background: linear-gradient(rgba(26, 42, 79, 0.85), rgba(15, 26, 47, 0.95)), url('https://images.unsplash.com/photo-1526232761682-d26e03ac148e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
    margin-top: 76px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 179, 71, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 179, 71, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.page-header h1 span {
    color: #ffb347;
    position: relative;
    display: inline-block;
}

.page-header h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 179, 71, 0.3);
    z-index: -1;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.2s both;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: #ffb347;
    transform: translateY(-2px);
}

.page-header .breadcrumb-item.active {
    color: #ffb347;
    font-weight: 600;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "|";
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .page-header {
        padding: 120px 0 80px;
        margin-top: 60px;
    }
    
    .page-header h1 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 14px;
    }
}

        /* Hero Section with Slider and Text */
        .hero-section {
            position: relative;
            height: 100vh;
            margin-top: 76px;
            overflow: hidden;
        }

        .hero-slider {
            height: 100%;
            position: relative;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide.active {
            opacity: 1;
            z-index: 1;
        }

        /* Slide 1 - Cricket */
        .hero-slide:nth-child(1) {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                        url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        /* Slide 2 - Football */
        .hero-slide:nth-child(2) {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                        url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        /* Slide 3 - Basketball */
        .hero-slide:nth-child(3) {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                        url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        /* Slide 4 - Yoga */
        .hero-slide:nth-child(4) {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                        url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        /* Slide 5 - Fitness */
        .hero-slide:nth-child(5) {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                        url('https://images.unsplash.com/photo-1518611012118-696072aa579a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        /* Slide Content */
        .slide-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }

        .hero-slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-subtitle {
            font-size: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #ffb347;
            margin-bottom: 15px;
        }

        .slide-title {
            font-family: 'Oswald', sans-serif;
            font-size: 72px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 20px;
            text-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .slide-title span {
            color: #ffb347;
        }

        .slide-description {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .slide-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--primary-gradient);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .slide-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .slide-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .slide-btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            background: transparent;
            border-color: white;
        }

        /* Slider Navigation Dots */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #ffb347;
            transform: scale(1.3);
            box-shadow: 0 0 10px #ffb347;
        }

        .dot:hover {
            background: white;
        }

        /* Slider Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .slider-arrow:hover {
            background: var(--primary-gradient);
            transform: translateY(-50%) scale(1.1);
            border-color: transparent;
        }

        .slider-arrow.prev {
            left: 30px;
        }

        .slider-arrow.next {
            right: 30px;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2 span {
            color: var(--primary-purple);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 20px auto 0;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--primary-gradient);
            opacity: 0.1;
            border-radius: 50%;
        }

        .about-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--primary-gradient);
            padding: 25px;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        .experience-badge .years {
            font-size: 36px;
            font-weight: 800;
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .about-content {
            padding-left: 30px;
        }

        .about-content h3 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .about-content h3 span {
            color: var(--primary-purple);
        }

        .about-content p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .features-list {
            list-style: none;
            padding: 0;
        }

        .features-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 16px;
            color: var(--text-dark);
        }

        .features-list li i {
            color: var(--primary-purple);
            font-size: 20px;
            margin-right: 10px;
            background: rgba(26, 42, 79, 0.1);
            padding: 5px;
            border-radius: 50%;
        }

        /* Sports Section */
        .sports-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .sport-card {
            background: white;
            padding: 40px 30px;
            border-radius: 30px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .sport-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .sport-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .sport-card:hover::before {
            transform: scaleX(1);
        }

        .sport-icon {
            width: 100px;
            height: 100px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 48px;
            transition: all 0.4s ease;
        }

        .sport-card:hover .sport-icon {
            transform: rotateY(180deg);
            background: var(--secondary-gradient);
        }

        .sport-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .sport-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }

        /* Mission Vision Section */
        .mission-vision-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .mission-vision-card {
            background: white;
            padding: 50px 35px;
            border-radius: 30px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mission-vision-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .mission-vision-card .icon {
            width: 100px;
            height: 100px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 48px;
            transition: all 0.4s ease;
        }

        .mission-vision-card:hover .icon {
            transform: rotateY(180deg);
            background: var(--secondary-gradient);
        }

        .mission-vision-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .mission-vision-card p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.8;
            margin: 0;
        }

        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: white;
        }

        .value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 30px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            height: 100%;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .value-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .value-card .icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 36px;
            transition: all 0.4s ease;
        }

        .value-card:hover .icon {
            transform: rotate(360deg);
            background: var(--secondary-gradient);
        }

        .value-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .value-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
            margin: 0;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 100px 0;
            background: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            aspect-ratio: 1;
        }

        .gallery-item:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 42, 79, 0.9), rgba(15, 26, 47, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 40px;
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay i {
            transform: scale(1);
        }

        /* Gallery Modal */
        .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-modal.show {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            margin: auto;
            text-align: center;
        }

        .modal-image {
            width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-nav:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .modal-nav.prev {
            left: 20px;
        }

        .modal-nav.next {
            right: 20px;
        }

        .modal-caption {
            margin-top: 20px;
            color: white;
            font-size: 18px;
            font-weight: 600;
        }

        .modal-counter {
            margin-top: 10px;
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }

        /* Achievements Section */
        .achievements-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a2a4f 0%, #0f1a2f 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .achievements-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .achievement-box {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.4s ease;
            height: 100%;
        }

        .achievement-box:hover {
            transform: translateY(-15px) scale(1.05);
            background: rgba(255,255,255,0.2);
        }

        .achievement-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #ffb347;
        }

        .achievement-number {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
            font-family: 'Oswald', sans-serif;
        }

        .counter {
            display: inline-block;
            min-width: 60px;
        }

        .achievement-label {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: white;
        }

        .team-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .team-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-social {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            transition: all 0.4s ease;
        }

        .team-card:hover .team-social {
            bottom: 20px;
        }

        .team-social a {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-purple);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .team-social a:hover {
            background: var(--primary-purple);
            color: white;
            transform: rotate(360deg);
        }

        .team-info {
            padding: 25px;
            text-align: center;
        }

        .team-info h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .team-info p {
            font-size: 15px;
            color: var(--primary-purple);
            font-weight: 600;
            margin: 0;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .faq-item {
            background: white;
            border-radius: 20px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(26, 42, 79, 0.05);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--text-light);
            line-height: 1.8;
        }

        .faq-answer.show {
            padding: 0 30px 20px;
            max-height: 200px;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 30px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-quote {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 48px;
            color: var(--primary-purple);
            opacity: 0.2;
        }

        .testimonial-text {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-purple);
        }

        .author-info h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
        }

        .testimonial-rating {
            margin-top: 10px;
        }

        .testimonial-rating i {
            color: #ffb347;
            font-size: 16px;
            margin-right: 2px;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: white;
        }

        .contact-info {
            background: var(--primary-gradient);
            color: white;
            padding: 50px;
            border-radius: 30px;
            height: 100%;
        }

        .contact-info h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            font-size: 18px;
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .contact-form {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: var(--shadow-hover);
            height: 100%;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-purple);
            box-shadow: 0 0 0 3px rgba(26, 42, 79, 0.1);
        }

        select.form-control {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231a2a4f' d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 16px;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        /* Map Container */
        .map-container {
            margin-top: 60px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            border: 4px solid white;
            height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer */
       /* Updated Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a2a4f 0%, #0f1a2f 100%);  /* Dark blue gradient matching logo */
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Optional: Add subtle pattern overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 179, 71, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Optional: Add floating elements */
.footer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 179, 71, 0.05);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.footer h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #ffb347, #ff8c00);  /* Orange gradient for underline */
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;  /* Lighter color for better contrast on dark background */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ffb347;  /* Orange on hover */
    transform: translateX(5px);
}

.footer-links i {
    font-size: 14px;
    color: #ffb347;  /* Orange icons */
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    color: #e0e0e0;
}

/* Footer Social Icons */
.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 179, 71, 0.3);
}

.social-icon:hover {
    background: linear-gradient(135deg, #ffb347, #ff8c00);
    transform: translateY(-5px) rotate(360deg);
    color: #1a2a4f;
    border-color: transparent;
}

/* Contact Info Footer */
.contact-info-footer p {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-info-footer p i {
    width: 25px;
    font-size: 16px;
    color: #ffb347;
}

/* Footer Bottom Links */
.footer-bottom a {
    color: #e0e0e0 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-bottom a:hover {
    color: #ffb347 !important;
}

/* Address Info Styles */
.address-info p {
    color: #e0e0e0 !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.address-info p:hover {
    transform: translateX(5px);
}

.address-info p i {
    color: #ffb347;
    font-size: 16px;
}

/* Animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
/* Responsive */
@media (max-width: 767px) {
    .social-links-footer {
        justify-content: center;
    }
    
    .contact-info-footer p {
        justify-content: center;
    }
}

        /* Animations */
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .slide-title {
                font-size: 60px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 991px) {
            .slide-title {
                font-size: 48px;
            }

            .slide-subtitle {
                font-size: 16px;
            }

            .about-content {
                padding-left: 0;
                margin-top: 40px;
            }

            .contact-info {
                margin-bottom: 40px;
            }

            .floating-social {
                display: none;
            }

            .fixed-actions-left {
                bottom: 20px;
                left: 20px;
            }

            .action-btn-left {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .slider-arrow.prev {
                left: 15px;
            }

            .slider-arrow.next {
                right: 15px;
            }
        }

        @media (max-width: 767px) {
            .slide-title {
                font-size: 36px;
            }

            .slide-subtitle {
                font-size: 14px;
                letter-spacing: 2px;
            }

            .slide-description {
                font-size: 14px;
            }

            .slide-btn {
                padding: 12px 30px;
                font-size: 14px;
            }

            .section-title h2 {
                font-size: 36px;
            }

            .about-image img {
                height: 400px;
            }

            .experience-badge {
                width: 100px;
                height: 100px;
                padding: 20px;
            }

            .experience-badge .years {
                font-size: 28px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .slider-dots {
                bottom: 20px;
                gap: 8px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }

            .modal-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .modal-close {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .map-container {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .slide-title {
                font-size: 28px;
            }

            .navbar-brand {
                font-size: 24px;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .about-image img {
                height: 300px;
            }

            .experience-badge {
                width: 80px;
                height: 80px;
                padding: 15px;
            }

            .experience-badge .years {
                font-size: 24px;
            }

            .experience-badge .text {
                font-size: 12px;
            }

            .achievement-number {
                font-size: 36px;
            }

            .achievement-label {
                font-size: 16px;
            }

            .contact-info,
            .contact-form {
                padding: 30px;
            }

            .fixed-actions-left {
                bottom: 10px;
                left: 10px;
                gap: 8px;
            }

            .action-btn-left {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .action-btn-left .tooltip-text {
                display: none;
            }
        }

        /* Page Header */
.page-header {
    background: linear-gradient(rgba(26, 42, 79, 0.85), rgba(15, 26, 47, 0.95)), url('https://images.unsplash.com/photo-1518609878377-06d7e4b9149d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
    margin-top: 76px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 179, 71, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 179, 71, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.page-header h1 span {
    color: #ffb347;
    position: relative;
    display: inline-block;
}

.page-header h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 179, 71, 0.3);
    z-index: -1;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.2s both;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: #ffb347;
    transform: translateY(-2px);
}

.page-header .breadcrumb-item.active {
    color: #ffb347;
    font-weight: 600;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "|";
    font-size: 16px;
}

/* Sports Intro */
.sports-intro {
    padding: 80px 0;
    background: white;
}

.sports-intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sports-intro-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.sports-intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.sports-intro-content h2 span {
    color: var(--primary-purple);
}

.sports-intro-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 30px;
}

/* Sports Categories */
.sports-categories {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-tab {
    padding: 12px 30px;
    background: white;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-size: 16px;
}

.category-tab:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.category-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Sport Detail Card */
.sport-detail-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.sport-detail-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.sport-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.sport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sport-detail-card:hover .sport-image img {
    transform: scale(1.1);
}

.sport-image .sport-icon {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    border: 3px solid white;
    z-index: 2;
}

.sport-detail-card:hover .sport-icon {
    transform: rotate(360deg);
    background: var(--secondary-gradient);
}

.sport-content {
    padding: 30px 25px 25px;
}

.sport-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.sport-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.sport-detail-card:hover .sport-content h3::after {
    width: 100%;
}

.sport-content .sport-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
    flex-wrap: wrap;
}

.sport-content .sport-meta i {
    color: var(--primary-purple);
    margin-right: 5px;
}

.sport-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.sport-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.sport-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 14px;
}

.sport-features li i {
    color: var(--primary-purple);
    font-size: 16px;
    background: rgba(26, 42, 79, 0.1);
    padding: 3px;
    border-radius: 50%;
}

.sport-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sport-btn:hover {
    background: transparent;
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/  /* schedule table wrapper */
        .schedule-table {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-top: 30px;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .schedule-table table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;  /* ensures readability on desktop */
        }

        .schedule-table th {
            background: var(--primary-gradient);
            color: white;
            padding: 18px 15px;
            font-weight: 600;
            text-align: center;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .schedule-table th i {
            margin-right: 8px;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
        }

        .schedule-table td {
            padding: 18px 12px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
            color: var(--text-dark);
            font-size: 1rem;
            background-color: white;
            transition: background 0.15s;
        }

        .schedule-table tr:last-child td {
            border-bottom: none;
        }

        .schedule-table tr:hover td {
            background: rgba(26, 42, 79, 0.04);
        }

        /* sport name with icon */
        .schedule-table .sport-name {
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            white-space: nowrap;
        }

        .schedule-table .sport-name i {
            font-size: 1.2rem;
            width: 1.6rem;
            text-align: center;
        }

        /* coach badge */
        .schedule-table .badge {
            background: var(--primary-gradient);
            color: white;
            padding: 7px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            white-space: nowrap;
            box-shadow: 0 6px 12px -6px rgba(26,42,79,0.3);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .schedule-table .badge i {
            margin-right: 6px;
            font-size: 0.9rem;
        }

        /* tiny clock icon inside cells */
        .schedule-table td i.fa-clock,
        .schedule-table td i.fa-calendar-check {
            margin-right: 6px;
            color: #ffb347;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
        }

        /* responsive scroll on small devices */
        .schedule-table {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        /* extra polish */
        .me-2 {
            margin-right: 0.5rem;
        }

        /* small icon inside header gold accent */
        .schedule-table th i[style*="color: #ffb347"] {
            color: #ffd966 !important; /* softer gold for better contrast on dark */
        }
/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.cta-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid white;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Filter Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sport-item {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 991px) {
    .page-header {
        padding: 120px 0 80px;
        margin-top: 60px;
    }
    
    .page-header h1 {
        font-size: 48px;
    }
    
    .sports-intro-content h2 {
        font-size: 36px;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 16px;
    }
    
    .sports-intro {
        padding: 60px 0;
    }
    
    .sports-intro-content h2 {
        font-size: 28px;
    }
    
    .sports-intro-content p {
        font-size: 16px;
    }
    
    .category-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .category-tab {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .schedule-table {
        overflow-x: auto;
    }
    
    .schedule-table table {
        min-width: 600px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 14px;
    }
    
    .sports-intro-content h2 {
        font-size: 24px;
    }
    
    .sport-image {
        height: 200px;
    }
    
    .sport-image .sport-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .sport-content {
        padding: 20px 15px;
    }
    
    .sport-content h3 {
        font-size: 20px;
    }
    
    .sport-meta {
        flex-direction: column;
        gap: 8px !important;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
}
/* Video Gallery Section */
.video-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.video-gallery::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(26, 42, 79, 0.05);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.video-gallery::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 179, 71, 0.05);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 16/9;
    border: 1px solid rgba(0,0,0,0.05);
}

.video-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover img {
    transform: scale(1.1);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary-gradient);
    border-color: white;
    box-shadow: 0 15px 30px rgba(26, 42, 79, 0.4);
}

.video-play i {
    transition: all 0.3s ease;
}

.video-card:hover .video-play i {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(26, 42, 79, 0.95), transparent);
    color: white;
    z-index: 1;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.video-card:hover .video-overlay {
    transform: translateY(0);
}

.video-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

.video-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-overlay p::before {
    content: '🎥';
    font-size: 12px;
    opacity: 0.8;
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.instagram-feed::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(26, 42, 79, 0.1), rgba(255, 179, 71, 0.1));
    border-radius: 0 0 0 150px;
}

.instagram-feed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.1), rgba(26, 42, 79, 0.1));
    border-radius: 0 150px 0 0;
}

.insta-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.insta-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 79, 0.9), rgba(15, 26, 47, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    color: white;
    font-size: 30px;
    transform: scale(0) rotate(-180deg);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737, #fcaf45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
}

.insta-item:hover .insta-overlay i {
    transform: scale(1) rotate(0deg);
}

/* Instagram hover effect with gradient */
.insta-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.insta-item:hover .insta-overlay::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Animation for Instagram items */
@keyframes instaPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.insta-item {
    animation: instaPop 0.5s ease forwards;
    opacity: 0;
}

.insta-item:nth-child(1) { animation-delay: 0.1s; }
.insta-item:nth-child(2) { animation-delay: 0.15s; }
.insta-item:nth-child(3) { animation-delay: 0.2s; }
.insta-item:nth-child(4) { animation-delay: 0.25s; }
.insta-item:nth-child(5) { animation-delay: 0.3s; }
.insta-item:nth-child(6) { animation-delay: 0.35s; }

/* Instagram badge */
.section-title p {
    position: relative;
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, rgba(26, 42, 79, 0.1), rgba(255, 179, 71, 0.1));
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-top: 10px;
}

.section-title p::before {
    content: '@';
    margin-right: 2px;
    color: var(--primary-purple);
}

/* Video Modal Styles (add this if you want video modal) */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.video-modal iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .video-gallery, .instagram-feed {
        padding: 60px 0;
    }
    
    .video-play {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .insta-overlay i {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .video-play {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .video-overlay h4 {
        font-size: 16px;
    }
    
    .video-overlay p {
        font-size: 12px;
    }
    
    .insta-overlay i {
        font-size: 24px;
    }
    
    .video-modal-close {
        top: -30px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .video-play {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .video-overlay {
        padding: 15px;
    }
    
    .video-overlay h4 {
        font-size: 14px;
    }
    
    .video-overlay p {
        font-size: 11px;
    }
    
    .insta-overlay i {
        font-size: 20px;
    }
}

/* Optional: Add loading animation for videos */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.video-card.loading .video-play {
    animation: pulse 1.5s ease infinite;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 80px 0 40px;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(26, 42, 79, 0.05);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 179, 71, 0.05);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #1a2a4f 0%, #2c3e6d 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(26, 42, 79, 0.3);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1a2a4f 0%, #2c3e6d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 40px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 20px rgba(26, 42, 79, 0.2);
}

.contact-card:hover .icon {
    transform: rotateY(180deg) scale(1.1);
    background: linear-gradient(135deg, #ffb347, #ff8c00);
    border-color: white;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    position: relative;
    display: inline-block;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #1a2a4f 0%, #2c3e6d 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.contact-card:hover h3::after {
    width: 80px;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-card .detail {
    font-weight: 700;
    color: #1a2a4f;
    font-size: 18px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.contact-card:hover .detail {
    color: #ffb347;
    transform: scale(1.05);
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px 0 80px;
    background: white;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(26, 42, 79, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 179, 71, 0.03);
    border-radius: 50%;
    z-index: 0;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-label {
    color: #2c3e50;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #2c3e50;
    height: auto;
}

.form-control-lg {
    padding: 16px 20px 16px 50px;
    font-size: 1rem;
}

.form-control:hover {
    border-color: #1a2a4f;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #ffb347;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 179, 71, 0.15);
    transform: translateY(-2px);
}

/* Input Icons */
.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a2a4f;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

textarea + .input-icon {
    top: 25px;
    transform: none;
}

.form-control:focus ~ .input-icon {
    color: #ffb347;
    transform: translateY(-50%) scale(1.1);
}

textarea.form-control:focus ~ .input-icon {
    transform: scale(1.1);
}

/* Select icon */
.select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a2a4f;
    font-size: 1.2rem;
    pointer-events: none;
}

.form-control:focus ~ .select-icon {
    color: #ffb347;
}

/* Select styling */
select.form-control {
    appearance: none;
    background-image: none;
    padding-right: 45px;
    cursor: pointer;
}

select.form-control option {
    padding: 10px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    padding-top: 15px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #1a2a4f 0%, #2c3e6d 100%);
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(26, 42, 79, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    background: transparent;
    border-color: #ffb347;
    color: #ffb347;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 179, 71, 0.3);
}

.submit-btn:hover i {
    transform: translateX(5px) rotate(10deg);
}

.submit-btn i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .contact-info-section {
        padding: 60px 0 30px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-form-section {
        padding: 30px 0 60px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-control-lg {
        padding: 14px 15px 14px 45px;
        font-size: 0.95rem;
    }
    
    .input-icon {
        left: 15px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 14px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-card .icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .contact-card h3 {
        font-size: 20px;
    }
    
    .contact-card .detail {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(26, 42, 79, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 5px solid white;
    height: 450px;
    transition: all 0.4s ease;
    position: relative;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    box-shadow: inset 0 0 0 0 rgba(255, 179, 71, 0.3);
    transition: box-shadow 0.3s ease;
    pointer-events: none;
}

.map-container:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 50px rgba(26, 42, 79, 0.4);
}

.map-container:hover::after {
    box-shadow: inset 0 0 30px rgba(255, 179, 71, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-section {
        padding: 60px 0 30px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card .icon {
        width: 80px;
        height: 80px;
        font-size: 35px;
    }
    
    .contact-card h3 {
        font-size: 22px;
    }
    
    .contact-card .detail {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 40px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-info-section {
        padding: 50px 0 20px;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-card .icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .contact-card h3 {
        font-size: 20px;
    }
    
    .contact-card .detail {
        font-size: 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-control {
        padding: 12px 15px 12px 45px;
        font-size: 15px;
    }
    

    .submit-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-container {
        height: 300px;
        border-width: 3px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-card .icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .contact-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .contact-card p {
        font-size: 14px;
    }
    
    .contact-card .detail {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .form-control {
        padding: 10px 12px 10px 40px;
        font-size: 14px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .map-container {
        height: 250px;
    }
}

/* Form validation styles */
.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-control:invalid:not(:placeholder-shown) + i {
    color: #dc3545;
}

.form-control:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.form-control:valid:not(:placeholder-shown) + i {
    color: #28a745;
}

/* Loading state for submit button */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success message animation */
@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.form-success {
    animation: successPop 0.5s ease;
}