:root {
            --primary-color: #1a237e;
            --secondary-color: #ff6f00;
            --accent-color: #00acc1;
            --dark-color: #0d1456;
            --light-color: #f5f7fa;
            --text-color: #333333;
            --text-light: #666666;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title h2 {
            display: inline-block;
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-bg {
            background-color: var(--light-color);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-secondary:hover {
            background-color: #e65100;
            border-color: #e65100;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--white) !important;
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .navbar {
            padding: 20px 0;
            background-color: var(--primary-color) !important;
            transition: var(--transition);
        }
        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: var(--transition);
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .hero-section {
            height: 100vh;
            min-height: 700px;
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(13, 20, 86, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .about-img img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }
        .about-img:hover img {
            transform: scale(1.05);
        }
        .about-content h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }
        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 2rem;
        }
        .feature-item {
            flex: 1;
            min-width: 250px;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(26, 35, 126, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        .program-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            transition: var(--transition);
        }
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .program-img {
            height: 220px;
            overflow: hidden;
        }
        .program-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .program-card:hover .program-img img {
            transform: scale(1.1);
        }
        .program-content {
            padding: 25px;
        }
        .program-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .coach-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: var(--transition);
        }
        .coach-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .coach-img {
            height: 300px;
            overflow: hidden;
        }
        .coach-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .coach-card:hover .coach-img img {
            transform: scale(1.05);
        }
        .coach-info {
            padding: 25px;
        }
        .coach-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 1rem;
        }
        .coach-social a {
            width: 40px;
            height: 40px;
            background-color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            transition: var(--transition);
        }
        .coach-social a:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }
        .facilities-carousel {
            position: relative;
        }
        .facility-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            background-color: var(--white);
        }
        .facility-img {
            height: 250px;
            overflow: hidden;
        }
        .facility-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .facility-item:hover .facility-img img {
            transform: scale(1.05);
        }
        .facility-content {
            padding: 25px;
        }
        .testimonial-item {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin: 15px;
            position: relative;
        }
        .testimonial-item:before {
            content: "\f10d";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: rgba(26, 35, 126, 0.1);
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 2rem;
        }
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(26, 35, 126, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .contact-form .form-control {
            padding: 15px;
            border-radius: 4px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
        }
        .footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 80px 0 30px;
        }
        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        .footer-logo span {
            color: var(--secondary-color);
        }
        .footer h5 {
            color: var(--white);
            margin-bottom: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h5:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }
        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition);
        }
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        .friendlink {
            background-color: var(--light-color);
            padding: 50px 0;
        }
        .flink {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        .flink a {
            background-color: var(--white);
            padding: 12px 25px;
            border-radius: 4px;
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .flink a:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-5px);
        }
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .section-title h2 {
                font-size: 2.2rem;
            }
            .about-content h3 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-content p {
                font-size: 1.1rem;
            }
            .section-padding {
                padding: 60px 0;
            }
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            .hero-btns .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: 15px;
            }
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .footer-logo {
                font-size: 1.8rem;
            }
            .flink {
                gap: 15px;
            }
            .flink a {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
