/* ======== Global ======== */
body {
    background-color: #f2f7f6;
    font-family: Arial, sans-serif;
  }
  
  /* ======== Services Circular Layout ======== */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
  }
  
  .subtitle {
    color: #f5b301;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
  }
  
  .circle-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
  }
  
  .center-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  
  .service {
    width: 120px;
    position: absolute;
    text-align: center;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    background: #f5b301;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    font-size: 24px;
    color: #000;
  }
  
  .service p {
    font-size: 0.85rem;
    margin: 0;
    font-weight: 600;
  }
  
  /* Positioning for circle items */
  .service1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
  .service2 { top: 20%; left: 85%; transform: translate(-50%, -50%); }
  .service3 { top: 60%; left: 100%; transform: translate(-50%, -50%); }
  .service4 { top: 100%; left: 50%; transform: translate(-50%, -50%); }
  .service5 { top: 60%; left: 0%; transform: translate(-50%, -50%); }
  .service6 { top: 20%; left: 15%; transform: translate(-50%, -50%); }
  
  @media (max-width: 600px) {
    .circle-wrapper {
      transform: scale(0.7);
    }
  }
  
  /* ======== Testimonial Section ======== */
  .testimonial-section {
    background-color: #fcb900;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
  }
  
  .testimonial-section h3 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
  }
  
  .testimonial-section h1 {
    font-size: 32px;
    margin: 10px 0 40px;
  }
  
  .testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
  }
  
  .testimonial {
    display: none;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .testimonial.active {
    display: flex;
    opacity: 1;
  }
  
  .avatars {
    margin-bottom: 20px;
  }
  
  .avatars img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    margin: 0 5px;
    object-fit: cover;
  }
  
  .testimonial p {
    font-size: 14px;
    color: #fff;
    max-width: 600px;
  }
  
  .stars {
    color: white;
    margin: 10px 0;
  }
  
  .name {
    font-weight: bold;
    color: white;
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
  }
  
  .arrow.left {
    left: 20px;
  }
  
  .arrow.right {
    right: 20px;
  }
  
  /* ======== Certificates Section ======== */
  .certificates-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .certificates-section .subtitle {
    color: #f5b301;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .certificates-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
  }
  
  .certificates-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .certificate-item {
    width: 200px;
  }
  
  .certificate-item img {
    width: 100%;
    height: auto;
    border: 2px solid #f5b301;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .certificate-title {
    margin-top: 12px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
  }
  
  @media (max-width: 600px) {
    .certificate-item {
      width: 100%;
      max-width: 300px;
    }
  }
  
.hero {
    height: 500px;
    position: relative;
    overflow: hidden;
}
.hero-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slider img.active {
    opacity: 1;
}
.hero-content {
    max-width: 600px;
}

/* Optional: refine placement of the badge on large screens */
@media (min-width: 992px) {
    .trusted-badge {
      position: absolute;
      bottom: 0;
      right: 0;
      transform: translate(50%, 50%);
      max-width: 250px;
    }
  }
  .group:hover .dropdown {
    display: block;
  }

  @media (max-width: 768px) {
    .circle-wrapper {
      width: 100%;
      height: auto;
      transform: none;
    }
    .center-img {
      position: static;
      margin: 0 auto 20px;
      transform: none;
    }
    .service {
      position: static;
      display: inline-block;
      margin: 10px;
    }
  }

  
