
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        nav {
            background: #000;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            width: 100%;
            overflow-x: hidden;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100px;
        }

        .logo {
            font-size: 30px;
            font-weight: bold;
            color: white;
        }

        .logo span {
            color: #fbbf24;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fbbf24;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .hero {
            background: linear-gradient(135deg, #000 0%, #1f2937 50%, #000 100%);
            color: white;
            padding: 140px 0px 80px;
            text-align: center;
            /*width: 100vw;
            margin-left: calc(50% - 50vw);*/
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero .highlight {
            color: #fbbf24;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #d1d5db;
        }

        .btn-primary {
            background: #fbbf24;
            color: #000;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-primary:hover {
            background: #f59e0b;
            transform: scale(1.05);
        }

        .features {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: #f9fafb;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
        }

        .feature-card svg {
            width: 50px;
            height: 50px;
            color: #fbbf24;
            margin-bottom: 15px;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: #6b7280;
        }

        .section {
            display: none;
            max-width: 1200px;
            margin: 100px auto 60px;
            padding: 0 20px;
        }

        .section.active {
            display: block;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
        }

        .content-box {
            background: linear-gradient(135deg, #fef3c7 0%, white 100%);
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .content-box h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .content-box p {
            font-size: 1.1rem;
            color: #374151;
            margin-bottom: 15px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .info-card {
            background: #f9fafb;
            padding: 25px;
            border-radius: 10px;
        }

        .info-card h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #ca8a04;
        }

        .info-card p {
            color: #374151;
        }

        .dark-box {
            background: #000;
            color: white;
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .dark-box h4 {
            font-size: 1.8rem;
            color: #fbbf24;
            margin-bottom: 20px;
        }

        .dark-box ul {
            list-style: none;
        }

        .dark-box li {
            padding: 10px 0;
            font-size: 1.1rem;
        }

        .dark-box li::before {
            content: "• ";
            color: #fbbf24;
            font-weight: bold;
            margin-right: 10px;
        }

        .packages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .package {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
        }

        .package.premium {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #000;
            border: none;
        }

        .package h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .package .price {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 25px;
        }

        .package ul {
            list-style: none;
            margin-bottom: 25px;
            text-align: left;
        }

        .package li {
            padding: 8px 0;
        }

        .package li::before {
            content: "✓ ";
            font-weight: bold;
            margin-right: 8px;
        }

        .package button {
            width: 100%;
            background: #fbbf24;
            color: #000;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .package.premium button {
            background: #000;
            color: white;
        }

        .package button:hover {
            transform: scale(1.05);
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .gallery-item:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            transform: translateY(-5px);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .contact-info {
            background: #000;
            color: white;
            padding: 40px;
            border-radius: 10px;
        }

        .contact-info h3 {
            color: #fbbf24;
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .contact-info h4 {
            font-weight: bold;
            margin-top: 20px;
            margin-bottom: 8px;
        }

        .contact-form {
            background: #f9fafb;
            padding: 40px;
            border-radius: 10px;
        }

        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #fbbf24;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: #fbbf24;
            color: #000;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #f59e0b;
        }

        footer {
            background: #000;
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin-top: 80px;
        }

        footer .logo {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        footer p {
            color: #9ca3af;
            margin: 10px 0;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #1f2937;
                flex-direction: column;
                padding: 20px;
                gap: 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 15px;
                
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }
        .court-photo {
    display: flex;
    justify-content: center;
    margin: 30px 0 20px;
}

.court-photo img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    object-fit: cover;
    display: block;
}
.nav-links {
    background: rgb(8, 8, 8);
    padding: 20px;
}

.nav-links a {
    color: #f4f3f3;
}

.nav-links li {
    
    padding: 12px 0;
}  
/* ENROLL POPUP */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none; /* hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: white;
    width: 90%;
    max-width: 450px;
    padding: 25px;
    border-radius: 12px;
}

.popup-box h2 {
    margin-top: 0;
}

.close-btn {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.submit-btn {
    background: #f5b400;
    color: black;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}
#timingWrapper {
    display: none;
}
.call-btn {
    background: #f5b400;
    color: black;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}
.social-links {
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: #fbbf24; /* Yellow color */
    font-size: 28px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}
html, body {
    overflow-x: hidden;
    width: 100% !important; 
    min-width: 0 !important;
}
