.about-hero {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  position: relative;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h1 {
  font-size: 3rem;
  color: #040539;
  margin-bottom: 0.5rem;
}

.about-text .breadcrumb {
  font-size: 0.95rem;
  color: #00316e;
}

.about-text .breadcrumb a {
  color: #004aad;
  text-decoration: none;
}

.about-image-wrapper {
  flex: 1.2;
  min-width: 300px;
  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 100px;
  object-fit: cover;
  max-height: 500px;
}

.scribble {
  position: absolute;
  top: -40px;
  left: -90px;
  width: 90px;
  transform: rotate(-30deg); /* Tilt the arrow */
}
 .choose-us {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .choose-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0a0f2c;
    font-weight: 700;
  }

  .choose-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
  }

  .feature-box {
    display: flex;
    align-items: center;
    border: 2px solid #0056d2;
    border-radius: 15px;
    padding: 15px 20px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  }

  .feature-box img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .feature-box p {
    font-weight: bold;
    font-size: 1rem;
    color: #0a0f2c;
    margin: 0;
    text-align: left;
  }

  .choose-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
  }

  .circle-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: #f94386;
    border-radius: 50%;
    z-index: 0;
  }

  .choose-image {
    width: 320px;
    z-index: 1;
    position: relative;
    transform: scale(1.15); /* Zoom effect */
  }

  @media (max-width: 992px) {
    .choose-content {
      flex-direction: column;
      gap: 40px;
    }

    .features {
      align-items: center;
    }

    .feature-box {
      width: 90%;
    }

    .choose-image {
      transform: scale(1.1);
    }
  }

.contact-faq-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-box {
  flex: 1 1 350px;
  border: 2px solid #1c3366;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  background: white;
}

.contact-box h3 {
  text-align: center;
  font-weight: bold;
  color: #001144;
  margin-bottom: 25px;
}

.contact-box form input,
.contact-box form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-box form button {
  background-color: #0047ab;
  color: white;
  padding: 12px 25px;
  font-weight: bold;
  font-size: 15px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-box form button:hover {
  background-color: #00368a;
}

.faq-box {
  flex: 1 1 500px;
}

.faq-subtitle {
  color: #0047ab;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #001144;
}

.faq-item {
  border: 2px solid #1c3366;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background: #fff;
  color: #001144;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  padding: 15px 20px;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "\25BC";
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #fafafa;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 15px;
  color: #555;
  margin: 15px 0;
}
