.bgmentor{background-image:url('assets/images/online-mentor-platform.jpg');background-sie:cover; background-repeat:no-repeat;}
 .group-select-left {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: bold;
      font-size: 16px;
    }

    .select-item {
      position: relative;
    }

    .select-icon {
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .select-item .select2-container {
      width: 100% !important;
    }

    .select2-container .select2-selection--single {
      height: 40px;
      padding: 5px 12px;
      border: 1px solid #ccc;
      border-radius:4px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
      line-height: 28px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
      top: 7px;
    }.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: normal;
    height: auto;
    margin-right: 0;
    top: -1em;
    padding: 2px 20px;
}.select2-container--default .select2-selection--single .select2-selection__arrow{display:none;}
.pricing-section {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
  }
  
  .pricing-heading {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
  }
  
  .pricing-subtext {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
  }
  
  .pricing-container {
    position: relative;
  }
  
  /* Desktop Grid */
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
  }
  
  .pricing-card {
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid #eee;
  }
  
  .pricing-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;padding:0;
    margin-bottom: 1rem;background:transparent;border:0;
  }
  .card-duration {
    border-radius: .25rem;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
}
  .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0;
  }
  
  .action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1em 0;
}
  
  .primary-button, .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 25px 50px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .primary-button {
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    color: white !important;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
  }
  
  .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
  }
  
  .secondary-button {
    background: white;
    color: #4f46e5;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  
  .secondary-button:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  
  .card-description {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.55;
    min-height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .card-price {
    font-size: 1.1rem;
    color: #444;
  }
  
  .card-price span {
    font-size: 28px;
    font-weight: 800;
    color: #111;
  }
  
  .card-button {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    background: #111;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  
  .card-button:hover {
    background: #4f46e5;
    transform: translateY(-2px);
  }
  
  /* Mobile Carousel */
  @media (max-width: 768px) {
    .pricing-cards {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
      gap: 1.5rem;
      padding: 20px;
      margin: 0 -1rem;
    }
    
    .pricing-card {
      min-width: 85%;
      scroll-snap-align: center;
      flex: 0 0 auto;
    }
    
    /* Hide scrollbar */
    .pricing-cards::-webkit-scrollbar {
      display: none;
    }
    
    .carousel-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .carousel-prev,
    .carousel-next {
      background: white;
      border: 1px solid #e5e7eb;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    .carousel-prev:hover,
    .carousel-next:hover {
      background: #f3f4f6;
      border-color: #d1d5db;
    }
    
    .carousel-prev svg,
    .carousel-next svg {
      width: 20px;
      height: 20px;
      color: #4b5563;
    }
    
    .carousel-dots {
      display: flex;
      gap: 8px;
    }
    
    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #e5e7eb;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    .carousel-dot.active {
      background: #4f46e5;
      transform: scale(1.2);
    }
  }
  
  /* Hide carousel controls on desktop */
  @media (min-width: 769px) {
    .carousel-controls {
      display: none;
    }
  }