
        :root {
            --primary-color: #dc3545; /* Soft Red */
            --secondary-color: #2b549a; /* Teal */
            --accent-color: #f5ab29; /* Yellow */
            --dark-text: #2d3436;
            --light-bg: #f7f9fc;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        #nav-home-desk{
            position: absolute !important;
        }
        #nav-home-desk .navbar{
            background: white !important;
            height: 100 !important;
            padding-top: 40px !important;
        }
        #nav-home-desk .navbar-collapse .nav {
            align-items: end !important;
        }

        /* Utility Classes */
        .bg-primary-custom { background-color: var(--primary-color) !important; color: white !important; }
        .bg-secondary-custom { background-color: var(--secondary-color); color: white; }
        .text-primary-custom { color: var(--primary-color); }
        .text-secondary-custom { color: var(--secondary-color); }
        .bg-primary-second{background-color: #17b886 !important ;}

        .section-padding {
            padding: 80px 0;
        }
        .hero-section {
            position: relative;
            overflow: hidden;
            top: 100;
        }
        .hero-section {
            min-height: 100vh;
        }

        /* Video styling */
        .hero-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            object-fit: cover;
            z-index: 0;
        }

        /* Overlay */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.33); /* light overlay */
            z-index: 1;
        }
        #landing{
            position: relative;
            top: 100;
            margin-bottom: 100px;
        }



.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Icon overlay */
.activity-icon { 
    font-size: 75px;
    color: var(--secondary-color); /* transparent effect */
    z-index: 0;
    pointer-events: none;
}

/* Keep text above icon */
.activity-card h3,
.activity-card h6,
.activity-card p,
.activity-card a {
    position: relative;
    z-index: 1;
}
.commitment .card{
    background: #eccccf;
}
.commitment .list-group-item{
    background: transparent;
    color: black;
}
        h1, h2, h3, h4 {
            font-weight: 800 !important;
        }
        h2{
            font-size: 3rem !important;
        }
        h3{
            font-size: 2.5rem !important;
        }
        .btn-active{
            text-decoration: none;
            color: var(--secondary-color) !important;
            border: 1px solid var(--secondary-color);
            padding: 10px 25px;
            font-size: 14px;
            border-radius: 50px;
        }
        .cta-bg{
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background-color: #eccccf;
            border-radius: 50px;
        }
        .btn-active:hover{
            background: var(--secondary-color);
            color: white !important;
            text-decoration: none;
        }
        .btn-rounded {
            border-radius: 50px !important;
            padding: 10px 30px !important;
            font-weight: 700 !important;
            text-transform: uppercase;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s !important;
        }

        .btn-rounded:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
            background-color: var(--secondary-color) !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #fff 0%, #f0fdfc 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section {
            position: relative;
            height: 100vh; /* full viewport height */
            overflow: hidden;
        }

        .hero-cover-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* ensures the image covers the section without distortion */
            z-index: 0; /* behind the content */
        }

        .hero-section .container {
            position: relative;
            z-index: 1; /* above the image */
        }

        .hero-blob {
            position: absolute;
            z-index: 0;
            opacity: 0.1;
        }

        /* Infographic Features - Why Parents Trust */
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            border: none;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--dark-text);
        }

        /* Testimonials */
        .testimonial-card {
            background: #fff;
            border-left: 5px solid var(--secondary-color);
            padding: 20px;
            margin: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            font-style: italic;
        }

        /* Activities Section */
        .activity-card {
            border: none !important;
            border-radius: 15px !important;
            overflow: hidden;
            margin-bottom: 30px;
            transition: 0.5s;
        }
        
        .activity-card .card-header {
            background-color: var(--secondary-color);
            color: white;
            font-weight: 700;
            border-bottom: none;
        }

        .activity-icon-overlay {
            font-size: 3rem;
            color: rgba(0,0,0,0.1);
            position: absolute;
            bottom: -10px;
            right: 10px;
        }
        .activity-card .card-body {
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Pushes button to the bottom */
            height: 100%; /* Ensures it takes full card height */
            padding: 25px 25px 35px 25px;
        }


        /* Calendar / Commitment Section */
        .commitment-list i {
            color: #27ae60; /* Green for checks */
            margin-right: 10px;
        }

        /* Team Section */
        .teacher-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid var(--accent-color);
            margin-bottom: 15px;
        }

        /* Gallery */
        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 30px;
            transition: opacity 0.3s;
        }
        .gallery-img:hover {
            opacity: 0.9;
        }

        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: transform 0.3s;
            text-decoration: none;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            color: white;
        }



        
        /* Waves Separator */
        .wave-container {
            position: relative;
            background: var(--primary-color);
            color: white;
            overflow: hidden;
        }
        .wave-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        .wave-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }
        .wave-bottom .shape-fill {
            fill: #FFFFFF;
        }

        /* ========================================= */

        .activity-header {
    position: relative;
    overflow: hidden;
    height: 90vh; /* adjust as needed */
    margin-bottom: 80px;
    top: 100;
}
.main-cont{
    position: relative;
    top: 150;
    margin-bottom: 100px;
}

.cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.text-sec{
    top: 30%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(0 0 0 / 30%); /* adjust darkness */
    z-index: 1;
}

.activity-header .container {
    position: relative;
    z-index: 2; /* make text above overlay */
}

        /* Page Header */
        .activity-header {
            /* background: linear-gradient(135deg, var(--tennis-green) 0%, #b8e994 100%);
            padding: 80px 0 60px; */
            color: white;
            /* border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden; */
        }

        .activity-icon-bg {
            position: absolute;
            right: 5%;
            bottom: -20px;
            font-size: 15rem;
            opacity: 0.2;
            color: white;
            transform: rotate(-15deg);
        }
                /* Coach Card */
        .coach-card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            overflow: hidden;
            background: white;
            text-align: center;
        }
        .coach-img-container {
            background: var(--accent-color);
            padding: 20px;
        }
        .coach-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 5px solid white;
            object-fit: cover;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Info Cards */
        .info-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--tennis-green);
        }

        /* Benefits List */
        .benefit-item {
            display: flex;
            align-items: start;
            margin-bottom: 15px;
        }
        .benefit-icon {
            min-width: 40px;
            height: 40px;
            background-color: rgba(120, 224, 143, 0.2);
            color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .text-success{
            color: var(--secondary-color) !important;
        }
        /* Video Container */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            background: #000;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        .gallery-item {
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s;
            cursor: pointer;
            height: 250px;
        }
        .gallery-item:hover {
            transform: scale(1.03);
        }

        /* Schedule Badge */
        .schedule-badge {
            background-color: #f1f2f6;
            color: var(--dark-text);
            padding: 10px 15px;
            border-radius: 10px;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .btn-enroll {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.1rem;
            width: 100%;
            transition: transform 0.2s;
        }
        .btn-enroll:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
            color: white;
        }
