/* public/css/frontendpage.css */
 :root {
            --primary-color: #3a86ff;
            --secondary-color: #ff006e;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --success-color: #4cc9f0;
        }
        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }

        .preloader-content {
            text-align: center;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #3a86ff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        .loader-logo {
            font-size: 24px;
            font-weight: 800;
            color: #3a86ff;
            margin-bottom: 15px;
        }

        .loader-logo span {
            color: #ff006e;
        }

        .loader-text {
            color: #6c757d;
            font-size: 16px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Hide preloader when loaded */
        .loaded #preloader {
            opacity: 0;
            visibility: hidden;
        }

        /* Prevent scrolling during loading */
        body.loading {
            overflow: hidden;
        }
        body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Make the page content expand to fill space above footer */
#page-content {
    flex: 1 0 auto;
}
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .tops-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 5px 45px 5px; /* optional, for some side spacing */
}



.tops-container .navbar-nav {
    margin-left: auto; /* pushes the nav to the right */
    display: flex;
    align-items: center;
    gap: 15px; /* space between items if multiple */
}

.tops-container .navbar-nav .nav-item {
    list-style: none;
}
.login-icon a,
.logout-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-icon a:hover,
.logout-icon:hover {
    transform: scale(1.1);
}

.login-icon svg,
.logout-icon svg {
    width: 28px;
    height: 28px;
}
.nav .nav-link {
  color: #f8f9fa;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav .nav-link:hover {
  color: #28a745;
}

/* Auth User Dropdown - Updated Classes */
.auth-user-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.auth-user-menu .auth-user-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.auth-user-menu .auth-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 2px solid #fff;
}

.auth-user-menu .auth-user-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.auth-user-menu .auth-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background-color: #fff;
    border-radius: 8px;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: none;
}

.auth-user-menu.show .auth-dropdown-menu {
    display: block;
}

.auth-user-menu .auth-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.auth-user-menu .auth-dropdown-item:hover {
    background-color: #f5f5f5;
}

.auth-user-menu .auth-dropdown-item svg.auth-svg-icon {
    margin-right: 8px;
    flex-shrink: 0;
    stroke: #666;
    transition: stroke 0.2s ease;
}

.auth-user-menu .auth-dropdown-item:hover svg.auth-svg-icon {
    stroke: #000;
}

.auth-user-menu .auth-dropdown-item.border-top {
    border-top: 1px solid #e0e0e0;
}

.auth-user-menu .auth-dropdown-item form {
    display: flex;
    align-items: center;
    width: 100%;
}

.auth-user-menu .auth-logout-link {
    margin-left: 5px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.auth-user-menu .auth-logout-link:hover {
    color: #d9534f;
}


        
        /* Header Styles */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .logo-text {
            font-size: 38px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
        }
        
        .logo-text span {
            color: var(--secondary-color);
        }
        
        .nav-item {
            margin-left: 15px;
        }
        .navbar-nav {
        display: flex;
        align-items: center; /* vertically center items */
        flex-direction: row;      /* optional: wrap items on smaller screens */
    }
        
        .btn-login {
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-login:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(58, 134, 255, 0.9), rgba(255, 0, 110, 0.8)), url('https://images.unsplash.com/photo-1552667466-07770ae110d0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            border-bottom-left-radius:16px;
            border-bottom-right-radius:16px;
            padding: 1px 0px 30px 0px;
            text-align: center;
            position: relative;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
            border-radius:12px;
            background-color: #f9f9f9;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark-color);
            font-weight: 700;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            transition: height 0.5s ease;
        }
        
        .feature-card:hover::before {
            height: 100%;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.2);
            color: var(--secondary-color);
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            position: relative;
        }
        
        .step-card {
            text-align: center;
            padding: 30px 20px;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .step-card:hover .step-number {
            transform: scale(1.1) rotate(5deg);
            background: var(--secondary-color);
        }
        
        /* Download Section */
        .download-section {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0;
            border-top-left-radius:32px;
            border-top-right-radius:32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .download-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .app-badges img {
            height: 80px;
            margin: 10px;
            transition: all 0.3s ease;
        }
        
        .app-badges img:hover {
            transform: scale(1.1);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 30px 0;
            text-align: center;
        }

.footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer-left,
.footer-center,
.footer-right {
    margin: 5px 0;
}

.footer-center {
    text-align: center;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

@media (max-width: 767.98px) {
    .footer-row {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        order: 1; /* Move privacy and terms above copyright */
    }


    .footer-center {
        order: 0;
        width: 100%;
        text-align: center;
    }
}

        
        /* Enhanced Language Dropdown */
        .language-dropdown .dropdown-toggle {
            border: none;
            background: transparent;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .language-dropdown .dropdown-toggle:hover {
            background: rgba(0,0,0,0.05);
        }
        
        .language-dropdown .dropdown-menu {
            min-width: 180px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: none;
            padding: 0;
            overflow: hidden;
        }
        
        .language-dropdown .dropdown-menu .list-group {
            border-radius: 10px;
        }
        
        .language-dropdown .dropdown-menu .list-group-item {
            border: none;
            padding: 10px 15px;
            transition: all 0.2s;
        }
        
        .language-dropdown .dropdown-menu .list-group-item:hover {
            background-color: #f8f9fa;
        }
        
        .language-dropdown .dropdown-menu .list-group-item.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .language-dropdown .dropdown-menu .list-group-item a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
        }
        
        .language-dropdown .dropdown-menu .list-group-item a img {
            margin-right: 10px;
            width: 20px;
            height: auto;
            border-radius: 2px;
        }
        
        .language-dropdown .dropdown-menu .list-group-item.active a {
            color: white;
        }
        
        /* Remove default list styling */
        .language-dropdown ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        /* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -30px;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%233a86ff' opacity='0.1' d='M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19c.94 0 1.85-.19 2.7-.53.44-.16.95-.02 1.24.35l2.46 3.06c.35.43.98.48 1.4.13.42-.35.48-.98.13-1.4l-2.46-3.06c-.29-.36-.75-.54-1.22-.47-.85.25-1.76.39-2.7.39C7.91 17 5 14.09 5 10.5S7.91 4 11.5 4 18 6.91 18 10.5c0 1.53-.48 2.97-1.3 4.18-.26.38-.21.9.12 1.23.33.33.85.38 1.23.12C19.2 14.3 20 12.5 20 10.5 20 5.81 16.19 2 11.5 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    opacity: 0.5;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3a86ff, #ff006e);
    margin: 15px auto;
    border-radius: 2px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    color: #3a86ff;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #3a86ff, #ff006e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #e6e6e6;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: #3a86ff;
    transform: scale(1.05);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-user-info {
    display: flex;
    flex-direction: column;
}

.testimonial-user-info h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.testimonial-user-info .user-title {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 4px;
}

.testimonial-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 50%;
    color: #3a86ff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-icon {
    background: #3a86ff;
    color: white;
    transform: rotate(10deg);
}

.testimonial-card p {
    color: #495057;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.testimonial-rating {
    display: flex;
    margin-top: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    margin-right: 3px;
}

/* Animation for scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 70px 0;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial-icon {
        margin-top: 15px;
        align-self: flex-end;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-user {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .testimonial-header {
        align-items: center;
    }
    
    .testimonial-icon {
        align-self: center;
        margin-top: 15px;
    }
}
        
        .sport-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .sport-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .sport-image {
            height: 200px;
            overflow: hidden;
        }
        
        .sport-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .sport-card:hover .sport-image img {
            transform: scale(1.1);
        }
        
        .sport-content {
            padding: 20px;
        }
        
        .svg-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: block;
        }
        
        .cta-section {
            padding: 100px 0;
            background: url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center;
            background-size: cover;
            position: relative;
            color: white;
            text-align: center;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
           /* Features Section */
        .features-section { padding: 80px 0; background-color: #f9f9f9; }
        .section-title { text-align: center; margin-bottom: 50px; color: var(--dark-color); font-weight: 700; }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

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

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            transition: transform 0.3s;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2);
            color: var(--secondary-color);
        }

        .feature-title { font-size: 1.5rem; margin-bottom: 15px; color: var(--dark-color); }

        /* Extra Advanced Feature Section */
        .advanced-features {
            padding: 80px 0;
            background: white;
        }

        .advanced-card {
            border-radius: 15px;
            background: var(--light-color);
            padding: 40px 30px;
            transition: all 0.4s ease;
            text-align: center;
        }

        .advanced-card:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-8px);
        }

        .advanced-card svg {
            height: 70px;
            margin-bottom: 20px;
            transition: transform 0.4s;
        }

        .advanced-card:hover svg {
            transform: rotate(10deg) scale(1.1);
        }
        .stats-section { padding: 80px 0; background: linear-gradient(to right, #4cc9f0, #3a86ff); color: white; } .stat-item { text-align: center; padding: 20px; } .stat-number { font-size: 3rem; font-weight: 800; margin-bottom: 10px; } .stat-label { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
/* Section Styling */
.featured-section {
  background: linear-gradient(to bottom, #ebf8ff, #f0fdf4);
  padding: 4rem 1rem;
    
  font-family: Arial, sans-serif;
}

/* Header */
.featured-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.featured-header h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #1e3a8a; /* navy blue */
  margin-bottom: 0.5rem;
}
.featured-header .subtitle {
  font-size: 1.1rem;
  color: #1d4ed8; /* lighter blue */
  margin-bottom: 1rem;
}
.featured-header .description {
  font-size: 1rem;
  color: #4b5563; /* gray */
  line-height: 1.6;
}

/* Cards Container */
.featured-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

/* Card */
.featured-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
    margin-left: 180px ;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  max-width: 900px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

/* Offsets for staggered layout */
.offset-1 {
  margin-left: 23rem;
}
.offset-2 {
  margin-left: 36rem;
}

/* Text inside card */
.featured-text {
  flex: 1;
}
.featured-text .featured-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.featured-text h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 0.75rem;
}
.featured-text p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Icon */
.featured-icon {
  margin-left: 1.5rem;
  flex-shrink: 0;
}
.featured-icon svg {
  width: 40px;
  height: 40px;
  stroke: #2563eb;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger effect */
.featured-card:nth-child(1) { animation-delay: 0.2s; }
.featured-card:nth-child(2) { animation-delay: 0.4s; }
.featured-card:nth-child(3) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 767.98px) {
  .offset-1, .offset-2 { margin-left: 10; }
  .featured-card { flex-direction: column; text-align: center; }
  .featured-icon { margin: 1rem 0 0; }
    .featured-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
    margin-left: 0px ;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  max-width: 900;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

/* Offsets for staggered layout */
.offset-1 {
  margin-left: 0rem;
}
.offset-2 {
  margin-left: 0rem;
}
}

/* Section Background */
.stadium-section {
  background: linear-gradient(to bottom, #f5f7ff, #e8f0ff);
  padding: 80px 20px;
}

/* Container Flex Layout */
.stadium-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 40px;
  margin: 0px 150px;
}

/* Left & Right Images */
.stadium-image-left img,
.stadium-image-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Content Section */
.stadium-content {
  text-align: left;
}

.stadium-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #6a6f85;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stadium-title {
  font-size: 36px;
  font-weight: 800;
  color: #102a52;
  margin-bottom: 20px;
  line-height: 1.2;
}

.stadium-description {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

/* Button */
.stadium-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #1d4ed8;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.stadium-btn:hover {
  background-color: #153eac;
}

/* ------------------- Responsive ------------------- */
@media (max-width: 991px) {
  .stadium-container {
    grid-template-columns: 1fr; /* single column */
    margin: 0 20px;
    gap: 30px;
  }

  /* Reorder items */
  .stadium-image-left {
    order: 1; /* goes after text */
  }

  .stadium-content {
    order: 2; /* stays in the middle */
    text-align: center;
  }

  .stadium-image-right {
    order: 3; /* goes last but will appear opposite side visually */
  }

  /* Title scaling */
  .stadium-title {
    font-size: 28px;
  }
  .stadium-description {
    font-size: 15px;
  }
}

/* FAQs Section */
.faqs-section {
  padding: 80px 20px;
  background: #f9f9f9;
  position: relative;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  color: #666;
}

/* FAQ Item */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-item {
  max-width: 700px;
  background: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  opacity: 0; /* hidden before animation */
}

/* Text */
.faq-question {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #28a745;
}
.faq-answer {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Left & Right Alignment */
.faq-item.left {
  align-self: flex-start;
  animation: slideInLeft 0.8s ease forwards;
}
.faq-item.right {
  align-self: flex-end;
  animation: slideInRight 0.8s ease forwards;
}

/* Animations */
@keyframes slideInLeft {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Stagger Effect */
.faq-item:nth-child(1) { animation-delay: 0.2s; }
.faq-item:nth-child(2) { animation-delay: 0.4s; }
.faq-item:nth-child(3) { animation-delay: 0.6s; }
.faq-item:nth-child(4) { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 768px) {
  .faq-item {
    align-self: center !important;
    width: 100%;
  }
}
/* Base State (hidden before scroll) */
.faq-item {
  max-width: 700px;
  background: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease;
}

/* Left aligned hidden */
.faq-item.left {
  align-self: flex-start;
  transform: translateX(-80px);
}

/* Right aligned hidden */
.faq-item.right {
  align-self: flex-end;
  transform: translateX(80px);
}

/* When in view (visible) */
.faq-item.show {
  opacity: 1;
  transform: translateX(0);
}

/* Text */
.faq-question {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #28a745;
}
.faq-answer {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-item {
    align-self: center !important;
    width: 100%;
    transform: translateX(0) !important; /* no drift on mobile */
  }
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    /* Hide the main navigation menu on mobile */
    .tops-container > .nav {
        display: none;
    }
    
    /* Mobile menu toggle icon */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: transparent;
        border: none;
        color: #333;
        cursor: pointer;
        margin-left: 15px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background-color: rgba(58, 134, 255, 0.1);
        color: #8e9298;
    }
    
    .mobile-menu-toggle i {
        font-size: 2.1rem;
        color: #f9fcff;
    }
    
    /* Mobile dropdown menu */
    .mobile-nav-dropdown {
        display: none;
        position: absolute;
        top: 9%;
        left: 0;
        right: 0;
        margin-bottom: 20px;
        z-index: 1030;
        padding: 15px;
    }
    
    .mobile-nav-dropdown.show {
        display: block;
    }
    
    /* Horizontal scrolling nav */
    .mobile-nav-scroll {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding-bottom: 10px;
    }
    
    .mobile-nav-scroll::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    .mobile-nav-item {
        flex: 0 0 auto;
        margin-right: 15px;
    }
    
    .mobile-nav-link {
        display: block;
        padding: 10px 20px;
        background: #f8f9fa;
        border-radius: 25px;
        color: #333;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        background: #3a86ff;
        color: white;
    }
}

/* Desktop styles - ensure normal display */
@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-nav-dropdown {
        display: none !important;
    }
}

/* Adjust tops-container for mobile */
@media (max-width: 991.98px) {
    .tops-container {
        flex-wrap: wrap;
        padding-bottom: 15px;
    }

       
}
 /* Adjust hero title margin when dropdown is visible */
    .mobile-nav-dropdown.show ~ .hero-title {
        margin-top: 80px;
    }
    /* Section */
.powerup-section {
  background: #102a52;
  border-radius: 12px;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

/* Wrapper ensures overflow hidden */
.powerup-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track for scrolling */
.powerup-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scrollMarquee 15s linear infinite;
}

/* Items */
.powerup-item {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Marquee animation */
@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* move half since we duplicated items */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .powerup-item {
    font-size: 18px;
  }
  .powerup-track {
    gap: 40px;
    animation-duration: 12s; /* faster on mobile */
  }
}
