body {
    overflow-x: hidden;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Hero Section */
.hero {
    height: 80vh;
    /* background: var(--primary-gradient); */
    display: flex;
    background-image: 
        linear-gradient(rgba(0,0,0,0.6)),
        url(img/survey.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Services */

.image-wrapper {
  position: relative;
  display: inline-block;
}

.service-img {
  width: 200px !important;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25)); /* adds the soft shadow */
}

/* .service-card:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 20px rgba(207, 223, 246, 0.4)); 
} */

.service-card {
    cursor: pointer;
    /* width: 80%; */
    margin: 0 auto;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%; /* size of the fade */
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none; /* so it doesn't block clicks */
}

.icon-box {
      font-size: 3rem;
      color: #004aad;
      margin-bottom: 15px;
    }
    .cta-section {
      background-color: #004aad;
      color: white;
      padding: 60px 0;
      text-align: center;
    }

/* Testimonials */
.testimonial-card {
  background: rgba(140, 166, 250, 0.467);
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.accordion-button {
  font-weight: 600;
  background-color: #fff;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #132335;
  background-color: #e9f2ff;
}

.accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-body {
  font-size: 0.95rem;
  color: #555;
}

 .service-card h5 {
      font-weight: 700;
      color: #222;
      margin-bottom: 15px;
    }

    .service-card p {
      font-size: 0.95rem;
      line-height: 1.8;
      color: #555;
      text-align: left;
    }


/* Service */
.service-card ul {
      text-align: left;
      padding-left: 20px;
      margin-bottom: 1rem;
    }

.service-card ul li {
      margin-bottom: 6px;
      color: #666;
    }


 .cta-section .btn {
      border-radius: 10px;
      padding: 10px 15px;
    }


/* Contact Us */
.contact-section {
      padding: 80px 0;
    }

    .contact-section h2 {
      font-weight: 700;
      margin-bottom: 10px;
    }

    .contact-info i {
      font-size: 24px;
      color: #0d6efd;
      margin-right: 10px;
    }

    .contact-form input,
    .contact-form textarea {
      border-radius: 10px;
      box-shadow: none;
    }

    .contact-form button {
      border-radius: 10px;
      font-weight: 600;
      padding: 10px 25px;
    }

    iframe {
      border: 0;
      width: 100%;
      height: 300px;
      border-radius: 10px;
      margin-top: 20px;
    }

/* Footer */
footer {
    background: #00050c;
    color: white;
}