
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* navbar section */

/* Navbar styles */
:root {
    --primary-color: #3dd4a3;
    --dark-text: #333;
    --light-bg: #f8f9fa;
    --dark-gradient: linear-gradient(90deg, #1a1a4e, #5c1157);
    --secondary-color: #27ae60;

}

.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Ensures it stays above other elements */
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-brand:hover {
    color: #f0f0f0;
}

.nav-link {
    color: white !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #f0f0f0 !important;
    transform: translateY(-2px);
}

/* Custom toggle icon styles */
.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .toggler-icon {
    color: white;
    font-size: 24px;
}

/* navbar section */

/* Hero section */
.hero-section {
    background-image: url("./assets/img/fantasyheader1.jpg");
    background-size: cover;
    /* Ensures the image covers the entire section */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3dd4a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-tabs {
    background: #3dd4a3;
    color: white;
    padding: 10px;
}

/* Download section */
.download-section {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.download-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.download-form {
    display: flex;
    gap: 15px;
}

.form-control {
    border-radius: 5px;
    padding: 12px 15px;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Sports images */
.sports-images {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60%;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }

    .download-form {
        flex-direction: column;
    }

    .sports-images {
        opacity: 0.5;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-section {
        padding: 130px 0;
    }

    .download-section {
        margin-top: -30px;
    }
}

/* hero section */

/* easy start */


.steps-section {
    padding: 60px 0;
    text-align: center;
}

.main-heading {
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.main-heading .highlight {
    color: var(--primary-color);
}

.sub-heading {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.description {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--dark-text);
    line-height: 1.6;
}

.step-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.step-description {
    color: #666;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 28px;
    }

    .sub-heading {
        font-size: 18px;
    }

    .step-card {
        margin-bottom: 20px;
    }
}

/* easy start */

/* app section */

.app-section {
    padding: 80px 0;
}

.app-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.highlight {
    color: var(--primary-color);
}

.app-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 30px;
    color: #666;
    margin-right: 15px;
    text-align: center;
}

.feature-text {
    font-size: 16px;
    color: #555;
}

.feature-link {
    color: #0d6efd;
    text-decoration: none;
}

.feature-link:hover {
    text-decoration: underline;
}

.download-btn {
    background-color: #000;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.qr-section {
    display: flex;
    align-items: center;
}

.qr-img {
    width: 100px;
    height: 100px;
    margin-right: 15px;
}

.qr-text {
    font-size: 14px;
    color: #555;
}

.app-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .app-image-container {
        text-align: center;
        margin-bottom: 40px;
    }

    .app-image {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .app-heading {
        font-size: 28px;
    }

    .app-image {
        max-width: 80%;
    }
}

/* app section */

/* about section  */
.about-section-who {
    padding: 80px 0;
}

.subtitle-who {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 18px;
}

.section-title-who {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.tagline-who {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-icons-who {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-circle-who {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.description-who {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button-who {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button-who:hover {
    background-color: #2ab077;
    transform: translateY(-2px);
}

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

@media (max-width: 991px) {
    .section-title-who {
        font-size: 2.2rem;
    }

    .image-container-who {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .section-title-who {
        font-size: 1.8rem;
    }

    .about-section-who {
        padding: 60px 0;
    }
}

/* about section  */

/* warning banner */
.warning-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/img/bg/9.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.people-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1920/500');
    background-size: cover;
    background-position: bottom center;
    opacity: 0.4;
    z-index: 0;
}

.warning-content {
    position: relative;
    z-index: 1;
}

.warning-heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.risk-warning {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.get-started-btn {
    background-color: #2ecc71;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    margin-left: 0.5rem;
}

/* warning banner */


/* tabs */
.hero-section-1 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 0;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.hero-subtitle-1 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.sports-nav {
    margin-bottom: 2rem;
}

.sports-card {
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1.0rem;
    text-align: center;
    height: 100%;
    cursor: pointer;
}

.sports-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.sports-card.active {
    background-color: var(--primary-color);
    color: white;
}

.sports-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.main-content {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.country-flag {
    width: 24px;
    height: auto;
    margin-right: 0.5rem;
}

.content-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.content-text {
    color: #555;
    line-height: 1.8;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* tabs */

/* stats section */
.stats-section {
    background-image: url('assets/img/bg/2150887552%20(1).jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    position: relative;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.2rem;
}

.silhouette-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 2;
}

.silhouette {
    max-height: 300px;
}

/* stats section */

/* testimonial */
.testimonial-section {
    padding: 80px 0;
    text-align: center;
}

.section-subtitle-test {
    color: #3CCF91;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.section-title-test {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
}

.testimonial-card {
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    max-width: 800px;
    margin-top: 40px;
}

.client-image-wrapper {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #3CCF91;
    overflow: hidden;
    background-color: white;
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 5px;
}

.client-position {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

.client-quote {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quote-icon {
    color: #3CCF91;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rating {
    color: #FF9800;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #3CCF91;
}

/* testimonial */

/* faq */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #212529;
}

.meal-title {
    font-weight: 600;
    color: #198754;
}

.section-title-faq {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #198754;
}

/* faq */

/* footer */
.footer-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/img/bg/1%20(1).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Section Titles */
.section-title {
    position: relative;
}

.section-title span {
     position: relative;
    color: white;
    font-size: 20px;
    display: inline-block;
}

.section-title span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #3dd4a3;
    bottom: 0;
    left: 0;
}

/* Subscribe Section */
.subscribe-section {
    background-color: #3dd4a3;
    border-radius: 4px;
}

.subscribe-btn {
    background-color: #3dd4a3;
    border: 1px solid white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #3dd4a3;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    text-decoration: none;
}

/* Footer Link Hover Effect */
.foot-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.foot-link:hover {
    color: #3dd4a3;
    transform: translateY(-2px);
    text-decoration: underline;
}

/* footer */

        /* Loader Styles */
        .loader-section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f8f9fa;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }
    
        .cricket-loader {
            width: 80px;
            height: 80px;
            background-color: #3dd4a3;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: pulse 1.5s infinite ease-in-out;
        }
    
        .cricket-loader i {
            color: white;
            font-size: 40px;
            animation: rotate 2s infinite linear;
        }
    
        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(61, 212, 163, 0.7);
            }
    
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(61, 212, 163, 0);
            }
    
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(61, 212, 163, 0);
            }
        }
    
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
    
            100% {
                transform: rotate(0deg);
            }
        }
    
        /* Main Content Styles */
        .main-content-load {
            display: none;
            padding: 50px 20px;
        }
    
        .main-content-load h1 {
            color: #3dd4a3;
            margin-bottom: 30px;
        }
    
        .fade-in {
            animation: fadeIn 1s ease-in forwards;
        }
    
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
    
            to {
                opacity: 1;
            }
        }
    
        .hidden {
            opacity: 0;
            pointer-events: none;
        }
    
/* testimonial */
 .test-section {
      padding: 80px 0;
      text-align: center;
    }
    
    .test-section-subtitle {
      color: #6c757d;
      font-size: 16px;
      margin-bottom: 10px;
      font-weight: 500;
    }
    
    .test-section-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 60px;
      color: #212529;
    }
    
    .test-card {
      background-color: #f8f9fa;
      border-radius: 15px;
      padding: 40px 30px;
      height: 100%;
      position: relative;
      text-align: left;
    }
    
    .test-quote-icon {
      font-size: 48px;
      color: #e9ecef;
      margin-bottom: 20px;
    }
    
    .test-text {
      font-size: 24px;
      line-height: 1.4;
      margin-bottom: 50px;
      color: #212529;
      font-weight: 500;
    }
    
    .test-client-info {
      display: flex;
      align-items: center;
      position: absolute;
      bottom: 30px;
      left: 30px;
    }
    
    .test-client-image {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
    }
    
    .test-client-name {
      font-weight: 600;
      margin-bottom: 0;
      font-size: 16px;
    }
    
    .test-client-handle {
      color: #6c757d;
      margin-bottom: 0;
      font-size: 14px;
    }
    
    .test-pagination {
      justify-content: center;
      margin-top: 40px;
    }
    
    .test-page-link {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      padding: 0;
      margin: 0 5px;
      background-color: #dee2e6;
      border: none;
    }
    
    .test-page-item.active .test-page-link {
      background-color: #212529;
    }
    
    .test-page-link:focus {
      box-shadow: none;
    }
    /* testimonial-card */