
        /* Add feminine font for headings */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

        h1:not(header h1),
        h2:not(header h2),
        h3:not(header h3),
        h4:not(header h4),
        h5:not(header h5),
        h6:not(header h6) {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        /* Buttons with feminine touches */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }


        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 66, 159, 0.3);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: white;
        }

        .btn-secondary:hover {
            background-color: #c53030;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Hero Section with feminine gradient */
        .hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #fed7e2 100%);
            padding: 4rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #fed7e2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23fbb6ce' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--gray);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .hero-image {
            flex: 1;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        /* Sections Common */
        .sports-section,
        .teams-section,
        .process-section,
        .testimonials {
            padding: 5rem 0;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        h2 {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        /* Sports Grid with feminine hover effects */
        .sports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .sport-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .sport-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, var(--pink), transparent);
            transition: height 0.3s ease;
            z-index: 1;
        }

        .sport-card:hover::after {
            height: 5px;
        }

        .sport-card:hover,
        .team-card:hover {
            border-bottom: 3px solid var(--pink);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .sport-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .sport-card h3 {
            padding: 1rem 1.5rem 0.5rem;
            color: var(--primary);
        }

        .categories {
            padding: 0 1.5rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .category {
            background-color: var(--light);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .category:hover {
            background-color: var(--light-pink);
            transform: scale(1.05);
        }

        /* Teams Grid */
        .teams-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .team-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            color: inherit;
            text-align: center;
            padding: 1.5rem;
            position: relative;
        }

        .team-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, var(--pink), transparent);
            transition: height 0.3s ease;
        }

        .team-card:hover::after {
            height: 5px;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .team-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light);
            border-radius: 50%;
        }

        .team-logo img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        .team-card h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .team-card p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Process Section with feminine background */
        .process-section {
            background: linear-gradient(to bottom, #ffffff 0%, #fef5f7 100%);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .step {
            text-align: center;
            padding: 2rem 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .step:hover {
            transform: translateY(-5px);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--pink) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
        }

        .step h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        /* Testimonials with feminine styling */
        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            border-left: 4px solid var(--pink);
        }

        .testimonial-content {
            margin-bottom: 1.5rem;
        }

        .testimonial-content p {
            font-style: italic;
            color: var(--dark);
        }

        .testimonial-author h4 {
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .testimonial-author p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .cta-content h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .cta-content p {
            margin-bottom: 2rem;
            font-size: 1.2rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .nav ul {
                display: none;
            }
        }

        @media (max-width: 768px) {
            h2 {
                font-size: 1.8rem;
            }

            .hero-text h2 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .sports-grid,
            .teams-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {

            .process-steps,
            .testimonial-cards {
                grid-template-columns: 1fr;
            }
        }
.team-card {
  text-decoration: none; /* removes the underline */
  color: inherit;        /* keeps the text color same as parent */
  display: inline-block; /* lets the divs inside behave nicely */
}
.team-card:hover {
  text-decoration: none; /* keeps it clean on hover */
  opacity: 0.9;          /* optional: subtle hover effect */
}
.sport-card {
  text-decoration: none; /* remove underline */
  color: inherit;        /* keep normal text color */
  display: inline-block; /* ensures the block layout works inside <a> */
}

.sport-card:hover {
  text-decoration: none; /* no underline on hover */
  opacity: 0.9;          /* optional: subtle hover feedback */
}
