.top-nav {
            background-color: #000; /* Assuming black from the image for the very top bar */
            color: #fff;
            padding: 5px 0;
            font-size: 0.8em;
            text-align: right;
        }
        .main-navbar {
            background-color: #0000FF; /* Blue from image */
            padding: 15px 0;
            color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .main-navbar .navbar-brand {
            color: #fff;
            font-weight: bold;
        }
        .main-navbar .nav-link {
            color: #fff;
            margin-right: 15px;
        }
        .main-navbar .btn-outline-light {
            border-color: #fff;
            color: #fff;
        }

        /* Hero Section - .sports-section */
        .sports-section {
            background-color: #0000FF; /* Blue background */
            color: #fff;
            padding: 80px 0; /* Adjust padding as needed */
        }

        .sports-section .badge {
            background-color: rgba(255, 255, 255, 0.25) !important; /* Translucent white */
            color: #fff !important;
            padding: 8px 15px;
            font-size: 0.9em;
        }

        .sports-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

        .sports-section p {
            font-size: 1.1em;
            line-height: 1.6;
            color: #fff;
        }

        .sports-section .btn-wh1 {
            background-color: #4CAF50; /* Green button */
            border-color: #4CAF50;
            color: #fff;
            padding: 12px 25px;
            font-size: 1.1em;
            border-radius: 5px; /* Slightly rounded corners */
        }
        .sports-section .btn-wh1:hover {
            background-color: #45a049;
            border-color: #45a049;
        }

        .demo-form-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            color: #333; /* Dark text inside form */
        }

        .demo-form-card h2 {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 25px;
            color: #333;
        }

        .demo-form-card .form-control,
        .demo-form-card .form-select {
            height: 50px; /* Custom height for inputs */
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 0 15px;
        }
        .demo-form-card .form-control::placeholder {
            color: #aaa;
        }

        .schedule-demo-button {
            background-color: #4CAF50; /* Green button */
            border-color: #4CAF50;
            color: #fff;
            padding: 12px 25px;
            font-size: 1.1em;
            width: 100%; /* Full width button */
            border-radius: 5px;
            margin-top: 15px;
        }
        .schedule-demo-button:hover {
            background-color: #45a049;
            border-color: #45a049;
        }

        .demo-form-card .form-text {
            font-size: 0.85em;
            color: #777;
            margin-top: 15px;
        }

        /* Imagine Sports Section */
        .imagine-sports {
            background-color: #f8f9fa; /* Light background */
            padding: 60px 0;
        }

        .sport-section-title {
            color: #333;
            font-weight: bold;
            margin-bottom: 40px;
            text-align: center;
        }

        .sport-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
            display: flex; /* For equal height cards */
            flex-direction: column;
            justify-content: space-between;
            height: 100%; /* Ensure full height */
        }

        .sport-icon {
            width: 60px;
            height: 60px;
            background-color: #0000FF; /* Blue circle */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
        }
        .sport-icon svg {
            width: 30px;
            height: 30px;
            fill: none;
            stroke: #fff; /* White icon */
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .sport-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .sport-description {
            color: #666;
            font-size: 0.95em;
            line-height: 1.5;
            flex-grow: 1; /* Allows description to take available space */
            margin-bottom: 15px;
        }

        .learn-more-link {
            color: #0000FF; /* Blue link */
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
        }
        .learn-more-link svg {
            width: 18px;
            height: 18px;
            margin-left: 5px;
            fill: none;
            stroke: #0000FF; /* Blue icon */
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.2s ease-in-out;
        }
        .learn-more-link:hover {
            text-decoration: underline;
        }
        .learn-more-link:hover svg {
            transform: translateX(3px);
        }

        /* Product Tour Section */
        .product-tour-section-sports {
            background-color: #f0f2f5; /* Light gray background */
            padding: 80px 0;
        }

        .product-tour-text h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .product-tour-text p {
            font-size: 1.1em;
            color: #555;
            margin-bottom: 30px;
        }

        .watch-now-button {
            background-color: #4CAF50; /* Green button */
            border-color: #4CAF50;
            color: #fff;
            padding: 12px 25px;
            font-size: 1.1em;
            border-radius: 5px;
        }
        .watch-now-button:hover {
            background-color: #45a049;
            border-color: #45a049;
        }

        .product-tour-image-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .product-tour-image {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Resources Section */
        .resources-section-sports {
            background-color: #0000FF; /* Blue background */
            padding: 60px 0;
            color: #fff;
        }

        .resources-section-title {
            font-size: 2.2rem;
            font-weight: bold;
            color: #fff;
            text-align: center;
            margin-bottom: 40px;
        }

        .resource-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .resource-card-img-top {
            width: 100%;
            height: 180px; /* Fixed height for image placeholders */
            object-fit: cover;
            border-bottom: 1px solid #eee;
        }

        .resource-card-body {
            padding: 20px;
            color: #333;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .resource-tag {
            font-size: 0.8em;
            color: #777;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .resource-card-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .download-link {
            color: #0000FF; /* Blue link */
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            margin-top: auto; /* Pushes link to the bottom */
        }
        .download-link svg {
            width: 18px;
            height: 18px;
            margin-left: 5px;
            fill: none;
            stroke: #0000FF; /* Blue icon */
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.2s ease-in-out;
        }
        .download-link:hover {
            text-decoration: underline;
        }
        .download-link:hover svg {
            transform: translateX(3px);
        }


        /* Top Ranked Sports Section */
        .white-bg-section {
            background-color: #fff;
            padding: 80px 0;
        }

        .custom-headline-color {
            color: #333; /* Dark gray/black for the headline */
            line-height: 1.3;
        }

        .Top-ranked-sports .img-fluid {
            border-radius: 8px; /* Slightly more rounded */
            box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Soft shadow */
        }

        .Top-ranked-sports .p-4 {
            border-radius: 10px !important;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Soft shadow for stats cards */
        }

        .Top-ranked-sports .display-5 {
            font-size: 3.5rem;
        }
        .Top-ranked-sports .text-primary {
            color: #0000FF !important; /* Blue for 19K+ */
        }
        .Top-ranked-sports .text-success {
            color: #4CAF50 !important; /* Green for $500M+ */
        }
        .Top-ranked-sports .text-warning {
            color: #FFC107 !important; /* Orange for 98% */
        }
        .Top-ranked-sports p.mb-0 {
            color: #666; /* Gray text for descriptions */
        }


        /* Testimonial Section */
        .testimonial-section-sports {
            background: linear-gradient(to right, #4CAF50, #66BB6A); /* Green gradient */
            padding: 80px 0;
            color: #fff;
        }

        .testimonial-content-wrapper {
            text-align: center;
        }

        .testimonial-tag {
            font-size: 0.9em;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .testimonial-title {
            font-size: 2.8rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 50px;
        }

        .video-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 500px; /* Limit width of video cards */
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .video-thumbnail-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            background-color: #e0e0e0; /* Placeholder background */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; /* Ensure content doesn't spill */
        }
        .video-thumbnail-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        /* If no iframe, just show a placeholder image */
        .video-thumbnail-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }


        .video-card-body {
            padding: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
        }
.nice-select:before{
    display: none;
}
.nice-select.form-select {
    display: flex;
    align-items: center;
    width: 100%;
}
        .case-study-button {
            background-color: #4CAF50; /* Green button */
            border-color: #4CAF50;
            color: #fff;
            padding: 12px 25px;
            font-size: 1.1em;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block; /* Make it behave like a block for padding */
        }
        .case-study-button:hover {
            background-color: #45a049;
            border-color: #45a049;
            color: #fff;
        }