/* Banner Section */
    .services-banner {
      background: url('../images/services/services.jpg') center/cover no-repeat;
      height: 250px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .services-banner::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(2, 69, 11, 0.55);
    }

    .services-banner h1 {
      position: relative;
      color: white;
      font-size: 3rem;
      font-weight: 700;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
      z-index: 2;
    }
    /* Banner Slider */
#servicesBanner {
  position: relative;
}

.banner-slide {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 64, 32, 0.55);
}

.banner-text {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.banner-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.banner-text p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Adjust controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.4);
  border-radius: 50%;
  padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-slide {
    height: 220px;
  }
  .banner-text h1 {
    font-size: 1.6rem;
  }
  .banner-text p {
    font-size: 1rem;
  }
}


    /* Visa Services Section */
    .visa-services {
      padding: 1.5rem 0 !important;
      background: #fff;
    }

    .visa-services h2 {
      font-weight: 700;
      color: #000;
      text-align: left;
      margin-bottom: 35px;
    }

    .service-card {
      background: linear-gradient(135deg, #a3f6cb, #3ed578,#129e5f);
      border: 1.5px solid #003319;
      border-radius: 25px;
      padding: 40px 20px;
      text-align: center;
      transition: all 0.4s ease;
      box-shadow: 0 3px 8px rgba(2, 56, 18, 0.05);
      cursor: pointer;
    }

    .service-card p {
      font-weight: 600;
      font-size: 1.2rem;
      color: #000;
      margin: 0;
    }

    .service-card:hover {
      transform: translateY(-6px);
      background: linear-gradient(135deg, #003319, #2ea66e);
      box-shadow: 0 10px 15px rgba(0,0,0,0.15);
    }
    .service-card:hover p {
      color: white;
    }
    .highlight p {
      color: black;
    }
    a {
  text-decoration: none;
}


    /* Responsive */
    @media (max-width: 992px) {
      .service-card {
        padding: 40px 15px;
      }
    }

    @media (max-width: 768px) {
      .services-banner {
        height: 200px;
      }

      .services-banner h1 {
        font-size: 2rem;
      }

      .service-card {
        padding: 35px 15px;
      }
    }