
.hero-section {
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #ffffff, #e6f1fa);
}

.hero-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}
    .hero-title {
      font-size: 2.4rem;
    }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.2) 0%, rgba(19, 19, 19, 0.4) 100%);
    pointer-events: none;
  }
  
  .service-image{
    flex: 1;
    position: relative;
    height: 100%;
    max-height: 500px;
    z-index: 0;
}

/* Background blur effect */
.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/blob-1.png') no-repeat center center;
    background-size: cover;
    filter: blur(130px);
    opacity: 0.6;
    z-index: -1;
}
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero-content-wrapper {
      flex-direction: column;
      gap: 3rem;
    }
    
    .hero-content {
      padding-right: 0;
      text-align: center;
    }
    
    .hero-description {
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-buttons {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      padding: 4rem 0;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: 1rem;
    }
    
    .primary-button,
    .secondary-button {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 1.8rem;
    }
    
    .hero-description {
      font-size: 1rem;
    }

  }.blog-section {
   padding: 4rem 0;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 2fr));
    gap: 20px;
    margin: 0 auto;
  }
 
    .stats-section {
      padding: 50px 0;
      position: relative;
background: linear-gradient(to right, #ffffff, #e6f1fa);
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      
      justify-items: center;
    }
    
    .stat-card {
      text-align: center;
      padding: 20px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
      background: linear-gradient(90deg, #2b6cb0, #3182ce);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .stat-label {
      font-size: 15px;
      color: #3a3a3a;
      font-weight: 600;
      line-height: 1.5;
    }
    
    @keyframes countUp {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .stat-number {
      animation: countUp 0.2s ease-out forwards;
    }
    
    @media (max-width: 1024px) {
      .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 1.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .stats-section {
        padding: 3rem 0;
      }
      
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .stat-card {
        padding: 1.5rem 1rem;
      }
      
      .stat-number {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 480px) {
      .stats-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
      }
    }
    .secondary {
      background-color: #ebeaea !important;
          color: #3A3A3A !important;
          border: none;
          text-decoration: none;
          padding: 12px 18px;
          font-size: 12px;
          border-radius: 30px;
          cursor: pointer;
          transition: background-color 0.3s;
          font-weight: 600;
          margin-bottom: 20px;
    }
   
    .secondary:hover {
      background-color: #d7d5d5 !important;
    }
  /* Blog Card Styles */
  .blog-card {
    border: #0065CD 1px solid;
    border-radius: 12px;
    padding: 10px;
    overflow: hidden;
  }
  
  .card-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .card-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .card-excerpt {
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .card-meta {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  
  .card-meta i {
    margin-right: 0.5rem;
    color: #0065CD;
  }
  
  .card-link {
    display: inline-flex;
    align-items: center;
    color: #0065CD;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .card-link:hover {
    color: #2667cc;
  }
 
  @media (max-width: 768px) {
    .blog-section {
      padding: 3rem 0;
    }
    
    .section-title {
      font-size: 1.75rem;
    }
    
    .blog-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .card-image {
      height: 200px;
    }
  }

.membership {
    padding: 4rem 0;
  }
  
  .service-row {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  
  .service-content {
    flex: 1;
    padding-right: 2rem;
  }
  
  @media (max-width: 992px) {
    .service-row {
      flex-direction: column-reverse;
      gap: 3rem;
    }
    
    .service-content {
      padding-right: 0;
      text-align: center;
    }
    
    .service-subtitle {
      max-width: 100%;
    }
    
    .buttons {
      justify-content: center;
    }
  }
  
  @media (max-width: 576px) {
    .membership {
      padding: 2rem 0;
    }
    
    .service-content h2 {
      font-size: 2rem;
    }
    
    .buttons {
      flex-direction: column;
      gap: 1rem;
    }
    
    .primary, .secondary {
      width: 100%;
    }
  }

  .about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .about > div {
    border: 1px solid #0065CD;
    border-radius: 8px;
    padding: 18px;
    transition: all 0.3s ease;
  }
  
  .about h3 {
    font-size: 17px;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .about h3 span {
    margin-left: 1rem;
    margin-bottom: 20px;
    width: 25px;
  }
  
  .about h3 span i {
    font-size: 1rem;
    color: transparent;
    -webkit-text-stroke: 1px #0065CD;;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .secion-heading h2 {
      font-size: 1.75rem;
    }
    
    .about {
      grid-template-columns: 1fr;
    }
    .hero-title{
      font-size: 1.6rem;
    }
    .hero-section {
  padding: 50px 0;
    }
  }