 /* Main Banner with Slider */
  .main-banner {
    background: linear-gradient(135deg, #0102a2 0%, #e4e8f0 100%);
    /* padding: 80px 0 100px; */
     padding: 30px 0 100px;
    position: relative;
    overflow: hidden;
  }

  .hero-slider {
    position: relative;
    min-height: 500px;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
  }

  .slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-content {
    padding-right: 30px;
    position: relative;
    z-index: 2;
  }

  .hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 90%;
  }

  .hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
    height: 400px;
    z-index: 2;
  }

  .hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .hero-image:hover img {
    transform: scale(1.03);
  }

  .btn-lg {
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .btn-lg:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
  }

  .btn-lg:focus:not(:active)::after {
    animation: ripple 1s ease-out;
  }

  @keyframes ripple {
    0% {
      transform: scale(0, 0);
      opacity: 0.5;
    }
    100% {
      transform: scale(20, 20);
      opacity: 0;
    }
  }

  .btn-primary {
    /* background: linear-gradient(45deg, #3a7bd5, #00d2ff); */
    color: white;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* background: linear-gradient(45deg, #00d2ff, #3a7bd5); */
  }

  /* .btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
  } */

  .btn-outline-primary:hover {
    background: white;
    color: #3a7bd5;
    border-color: white;
  }

  .btn-success {
    background: linear-gradient(45deg, #00b09b, #96c93d);
    color: white;
  }

  .btn-success:hover {
    background: linear-gradient(45deg, #96c93d, #00b09b);
  }

  .btn-outline-success {
    border: 2px solid #00b09b;
    color: white;
    background: transparent;
  }

  .btn-outline-success:hover {
    background: #00b09b;
    color: white;
  }

  .btn-warning {
    background: linear-gradient(45deg, #f46b45, #eea849);
    color: white;
  }

  .btn-warning:hover {
    background: linear-gradient(45deg, #eea849, #f46b45);
  }

  .btn-outline-warning {
    border: 2px solid #eea849;
    color: white;
    background: transparent;
  }

  .btn-outline-warning:hover {
    background: #eea849;
    color: white;
  }

  /* Slider Navigation */
  .slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
  }

  .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slider-dot:hover {
    transform: scale(1.3);
  }

  .slider-dot.active {
    background: white;
    transform: scale(1.3);
  }

  /* Why Choose Section */ 
  .why-section {
    background: white;
    padding: 80px 0;
  }

  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
  }

  .section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }

  .why-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
  }

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

  .why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    color: white;
    transition: transform 0.3s ease;
  }

  .why-card:hover .why-icon {
    transform: rotate(15deg) scale(1.1);
  }

  .why-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
  }

  .why-card p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Badge styles */
  .badge {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem !important;
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 2.5rem;
    }

    .hero-image {
      height: 350px;
      margin-top: 40px;
    }
  }

  @media (max-width: 768px) {
    .hero-content {
      text-align: center;
      padding-right: 0;
    }

    .hero-content p {
      max-width: 100%;
    }

    .hero-buttons {
      justify-content: center;
    }

    .hero-image {
      height: 300px;
    }
  }

  @media (max-width: 576px) {
    .main-banner {
      padding: 60px 0 80px;
    }

    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }

    .btn-lg {
      padding: 10px 20px;
      font-size: 1rem;
    }

    .why-card {
      padding: 20px;
    }

    .why-icon {
      width: 60px;
      height: 60px;
      font-size: 25px;
    }
  }

