/* ==========================================================================
   Global Styles
   ========================================================================== */
.banner-content h1 {
    font-size: 52px;
    font-weight: 500;
    line-height: 52px;
    margin: 0 0 20px;
    text-transform: capitalize;
    color: #fff;
}   
.banner-content h3 {
    font-size: 60px;
    font-weight: 500;
    line-height: 60px;
    margin: 0 0 20px;
    text-transform: capitalize;
    color: #fff;
}

@media only screen and (min-width: 1201px) and (max-width: 1600px) {
    .banner-content h3 {
        font-size: 48px;
        line-height: 48px;
    }
}

/* --- Card Base Design --- */
.card-base {
  background: linear-gradient(135deg, #f8fafc 60%, #eaf7e7 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60,130,36,0.08);
  border: 1.5px solid rgba(60,130,36,0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-base:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(60,130,36,0.12);
  border-color: rgba(60,130,36,0.12);
}

/* --- Button Styles --- */
.btn-mr,
.get-in-form button[type="submit"] {
  background: linear-gradient(135deg, #3C8224 0%, #2d6a1c 100%);
  border-radius: 999px;
  padding: 12px 36px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(60,130,36,0.16);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-mr:hover,
.get-in-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60,130,36,0.24);
}

/* ==========================================================================
   Navigation & Header
   ========================================================================== */

/* --- Menu Items --- */
.main-menu ul>li.nav-item>a.nav-link::after,
.site-header.sticky .main-menu ul>li.nav-item>a.nav-link::after {
  display: none !important;
}

.main-menu ul>li.nav-item>a.nav-link {
  color: #fff !important;
  font-weight: 500 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  padding-bottom: 0 !important;
}

.main-menu ul>li.nav-item>a.nav-link:hover,
.main-menu ul>li.nav-item>a.nav-link:focus {
  color: #ccf4bf !important;
}

.main-menu ul>li.nav-item>a.nav-link.active {
  color: #ccf4bf !important;
}

.header-logo{
    width: 100px;
}

/* --- Sticky Header --- */

.site-header.sticky .header-logo {
    width: 70px;
}

.site-header.sticky .navbar-brand {
    padding: 0;
}

.site-header.sticky .navbar {
  background: #fff !important;
  box-shadow: 0 4px 24px 0 rgba(60,130,36,0.15) !important;
  border-bottom: 3px solid !important;
  border-image: linear-gradient(to right, #3C8224, #2d6a1c) 1 !important;
}

/* .site-header.sticky .main-menu ul>li.nav-item>a.nav-link {
  color: #3C8224 !important;
} */

.site-header.sticky .main-menu ul>li.nav-item>a.nav-link:hover,
.site-header.sticky .main-menu ul>li.nav-item>a.nav-link:focus {
  color: #3C8224 !important;
}

.site-header.sticky .main-menu ul>li.nav-item>a.nav-link.active {
  color: #3C8224 !important;
}

/* ==========================================================================
   Feature Sections
   ========================================================================== */

/* --- Common Section Styles --- */
.how-it-works,
.supported-sports {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.how-it-works .section-header,
.supported-sports .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-it-works .section-header h2,
.supported-sports .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.how-it-works .section-header p,
.supported-sports .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.how-it-works .container,
.supported-sports .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.how-it-works .row,
.supported-sports .row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
}

.how-it-works .col-lg-4,
.supported-sports .col-lg-3 {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
}

/* --- Card Styles --- */
.how-it-works .how-step,
.supported-sports .sport-card {
  background: linear-gradient(135deg, #f8fafc 60%, #eaf7e7 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60,130,36,0.08);
  border: 1.5px solid #eaf7e7;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.how-it-works .how-step:hover,
.supported-sports .sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(60,130,36,0.16);
  background: linear-gradient(90deg, #2d6a1c 0%, #3C8224 100%);
}

/* --- Number/Icon Styles --- */
.how-it-works .step-number,
.supported-sports .sport-number {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3C8224;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(60,130,36,0.12);
  transition: all 0.3s ease;
}

.how-it-works .how-step:hover .step-number,
.supported-sports .sport-card:hover .sport-number {
  background: #3C8224;
  color: #fff;
  transform: scale(1.1);
}

/* --- Text Styles --- */
.how-it-works .how-step h4,
.supported-sports .sport-card h5 {
  color: #222;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  transition: all 0.3s ease;
}

.how-it-works .how-step p,
.supported-sports .sport-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
  max-width: 280px;
}

.how-it-works .how-step:hover h4,
.how-it-works .how-step:hover p,
.supported-sports .sport-card:hover h5,
.supported-sports .sport-card:hover p {
  color: #fff;
}

/* --- Responsive Styles --- */
@media (max-width: 1200px) {
  .how-it-works .row,
  .supported-sports .row {
    /*flex-wrap: nowrap;*/
    /*overflow-x: auto;*/
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 -15px;
    padding: 0 15px;
  }

  .how-it-works .row::-webkit-scrollbar,
  .supported-sports .row::-webkit-scrollbar {
    display: none;
  }

  .how-it-works .col-lg-4,
  .supported-sports .col-lg-3 {
    flex: 0 0 300px;
    min-width: 300px;
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .how-it-works .section-header h2,
  .supported-sports .section-header h2 {
    font-size: 2.4rem;
  }

  .how-it-works .col-lg-4,
  .supported-sports .col-lg-3 {
    flex: 0 0 280px;
    min-width: 280px;
  }

  .how-it-works .how-step,
  .supported-sports .sport-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .how-it-works .section-header h2,
  .supported-sports .section-header h2 {
    font-size: 2rem;
  }

  .how-it-works .section-header p,
  .supported-sports .section-header p {
    font-size: 1rem;
  }

  .how-it-works .col-lg-4,
  .supported-sports .col-lg-3 {
    flex: 0 0 260px;
    min-width: 260px;
  }

  .how-it-works .how-step,
  .supported-sports .sport-card {
    padding: 24px 16px;
  }

  .how-it-works .step-number,
  .supported-sports .sport-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .how-it-works .how-step h4,
  .supported-sports .sport-card h5 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}

/* --- App Features Section --- */
.app-features {
  background: #fff;
  padding: 80px 0;
}

.app-features .feature-item {
  background: linear-gradient(135deg, #f8fafc 60%, #eaf7e7 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60,130,36,0.08);
  border: 1.5px solid #eaf7e7;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.app-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(60,130,36,0.16);
  background: linear-gradient(90deg, #2d6a1c 0%, #3C8224 100%);
}

.app-features .feature-icon {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(60,130,36,0.12);
  transition: all 0.3s ease;
}

.app-features .feature-icon i {
  font-size: 32px;
  color: #3C8224;
  transition: all 0.3s ease;
}

.app-features .feature-item:hover .feature-icon {
  background: #3C8224;
  transform: scale(1.1);
}

.app-features .feature-item:hover .feature-icon i {
  color: #fff;
}

.app-features .feature-item h4 {
  color: #222;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  transition: all 0.3s ease;
}

.app-features .feature-item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
}

.app-features .feature-item:hover h4,
.app-features .feature-item:hover p {
  color: #fff;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.single-testimonials {
  background: linear-gradient(135deg, #f8fafc 60%, #eaf7e7 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60,130,36,0.08);
  border: 1.5px solid rgba(60,130,36,0.08);
  padding: 40px 32px;
  margin-bottom: 32px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.single-testimonials:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(60,130,36,0.12);
}

.single-testimonials.active {
  background: linear-gradient(135deg, #3C8224 0%, #2d6a1c 100%);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 56px rgba(60,130,36,0.16);
}

.single-testimonials h4,
.single-testimonials p {
  transition: color 0.3s ease;
}

.single-testimonials.active h4,
.single-testimonials.active p,
.single-testimonials.active .fa-quote-left,
.single-testimonials.active .fa-quote-right,
.single-testimonials.active .icofont-quote-right {
  color: #fff !important;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faqs {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ee 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faqs .section-title {
  background: linear-gradient(90deg, #3C8224 0%, #2d6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.faqs #accordion .card {
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60,130,36,0.08);
  border: 1.5px solid rgba(60,130,36,0.08);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faqs #accordion .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(60,130,36,0.12);
}

.faqs #accordion .card-header .btn-link {
  background: linear-gradient(135deg, #3C8224 0%, #2d6a1c 100%) !important;
  padding: 24px 32px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  color: #fff !important;
}

.faqs #accordion .card-body {
  padding: 24px 32px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */

.get-in-box {
  background: linear-gradient(120deg, #f5f8fd 60%, #eaf7e7 100%);
}
.get-in-form input,
.get-in-form textarea {
  border-radius: 12px;
  border: 1.5px solid rgba(60,130,36,0.08);
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.get-in-form input:focus,
.get-in-form textarea:focus {
  border-color: #3C8224;
  box-shadow: 0 4px 16px rgba(60,130,36,0.08);
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer.site-footer {
  background: linear-gradient(120deg, #f5f8fd 60%, #eaf7e7 100%);
  border-top: 2px solid #3C8224;
  padding: 60px 0 30px 0;
  position: relative;
  z-index: 1;
}

footer.site-footer .single-footer {
  padding: 32px 24px 24px 24px;
  margin-bottom: 24px;
}

footer.site-footer ul li a {
  color: #6a6a6a;
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.2s;
}

footer.site-footer ul li a:hover {
  color: #3C8224;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 991px) {
  .app-features .feature-item,
  .how-it-works .how-step,
  .supported-sports .row {
    padding: 32px 24px;
  }
  
  .single-testimonials {
    padding: 32px 24px;
  }
  
  .faqs #accordion .card-header .btn-link {
    padding: 20px 24px;
    font-size: 1.1rem;
  }
  
  .faqs #accordion .card-body {
    padding: 20px 24px;
    font-size: 1rem;
  }
  
  .supported-sports .row {
    justify-content: flex-start;
    padding: 20px 15px;
  }
  
  .supported-sports .col-lg-3,
  .supported-sports .col-md-6,
  .supported-sports .col-sm-6 {
    flex: 0 0 200px;
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .app-features .feature-item,
  .how-it-works .how-step,
  .supported-sports .row {
    padding: 28px 20px;
  }
  
  .single-testimonials {
    padding: 28px 20px;
  }
  
  .btn-mr,
  .get-in-form button[type="submit"] {
    padding: 10px 28px;
    font-size: 0.95rem;
  }
  
  .faqs .section-title {
    font-size: 2rem;
  }
}

/* Hide specific sections */
.expericence-andSkills,
.tean-area,
.aposh-pricing {
  display: none !important;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.get-in-touch {
  background: linear-gradient(135deg, #f8fafc 60%, #eaf7e7 100%);
  padding: 80px 0;
}

.get-in-touch h2 {
  background: linear-gradient(90deg, #3C8224 0%, #2d6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}

.get-in-touch .contact-info {
  background: linear-gradient(135deg, #f8fafc 60%, #eaf7e7 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60,130,36,0.08);
  border: 1.5px solid rgba(60,130,36,0.08);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.get-in-touch .contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(60,130,36,0.12);
}

.get-in-touch .contact-info h3 {
  color: #3C8224;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.get-in-touch .contact-info h3 i {
  color: #3C8224;
  font-size: 24px;
}

.get-in-touch .contact-info p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */

.blog-area {
  background: #fff;
  padding: 80px 0;
}

.single-blog {
  background: linear-gradient(135deg, #f8fafc 60%, #eaf7e7 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60,130,36,0.08);
  border: 1.5px solid rgba(60,130,36,0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.single-blog:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(60,130,36,0.12);
  background: linear-gradient(90deg, #2d6a1c 0%, #3C8224 100%);
}

.single-blog:hover .blog-content h3,
.single-blog:hover .blog-content p,
.single-blog:hover .blog-content .blog-meta {
  color: #fff;
}

.single-blog:hover .blog-content .blog-meta i {
  color: #a3ffb3;
}

.single-blog .blog-img {
  position: relative;
  overflow: hidden;
}

.single-blog .blog-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.single-blog:hover .blog-img img {
  transform: scale(1.05);
}

.single-blog .blog-content {
  padding: 25px;
}

.single-blog .blog-content .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: #666;
  font-size: 0.9rem;
}

.single-blog .blog-content .blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.single-blog .blog-content .blog-meta i {
  color: #3C8224;
}

.single-blog .blog-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #222;
  transition: color 0.3s ease;
}

.single-blog:hover .blog-content h3 {
  color: #3C8224;
}

.single-blog .blog-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.single-blog .read-more {
  color: #3C8224;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8fafc 60%, #eaf7e7 100%);
  border: 1.5px solid rgba(60,130,36,0.08);
}

.single-blog .read-more:hover {
  background: linear-gradient(90deg, #3C8224 0%, #2d6a1c 100%);
  color: #fff;
  transform: translateX(5px);
}

.sport-card:hover .sport-icon img {
  filter: invert(1);
}

@media (max-width: 991px) {
  .single-blog .blog-img img {
    height: 200px;
  }
  
  .single-blog .blog-content {
    padding: 20px;
  }
  
  .single-blog .blog-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .single-blog .blog-img img {
    height: 180px;
  }
  
  .single-blog .blog-content {
    padding: 15px;
  }
  
  .single-blog .blog-content h3 {
    font-size: 1.2rem;
  }
  
  .single-blog .blog-content p {
    font-size: 0.95rem;
  }
  
  .supported-sports .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
} 

@media (max-width: 767.98px) {
    .banner-content {
        padding-top: 150px !important;
    }
    
    .site-header.sticky .navbar-toggler-icon {
        background: #3C8224;
    }
    
    .site-header.sticky .main-menu ul>li.nav-item>a.nav-link {
        color: #fff !important;
    }
    
    .site-header.sticky .main-menu ul>li.nav-item>a.nav-link.active {
        color: rgb(204, 244, 191) !important
    }
}