:root {
  --primary-color: #2f89b0;
  --primary-light-color: #135776;
  --secondary-color: #17977e;
  --secondary-light-color: #046955;
  --lime-color: #17977e1a;
  --text-primary-color: #8a8a8a;
  --text-secondary-color: #828282;
  --white-color: #ffffff;
  --input-bg-color: #f6f6f6;
  --input-dark-bg-color: #e5e5e5;
}

/* Full-width banner image */
.banner {
  height: 80vh;
  background-image: url(../img/about-us-banner-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.about-us-banner-heading {
  font-size: 10vw;
}

.description-image {
  width: 400px;
  height: 420px;
  object-fit: cover;
}

.content-box {
  background: linear-gradient(
    180deg,
    var(--secondary-color) 0%,
    var(--primary-light-color) 100%
  );
  color: white;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.content-box h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}

.content-box p {
  font-family: Inter;
  font-size: 24px;
  font-weight: 400;
  line-height: 48.41px;
  text-align: center;
}

/* Full-width image */
.full-width-image img {
  width: 100%;
  height: auto;
  margin-top: 20px; /* Adjust as needed */
}

/* Mission section styles */
.mission-section {
  background-color: var(--white-color);
}

.mission-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mission-heading {
  color: var(--secondary-color);
  font-size: 10vw;
  font-weight: 500;
  line-height: 100px;
  margin-bottom: 20px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.mission-paragraph {
  color: var(--text-secondary-color);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36.31px;
  text-align: justified;
  margin-bottom: 30px;
}

/* Boxes section styles */
/* Boxes section styles */
.boxes-section {
  background-color: var(--white-color);
}

.box {
  background-color: #f0f0f0;
  border: 1px solid #c3c3c3;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
}

.box-icon {
  font-size: 50px;
  color: var(--primary-light-color); /* Icon color */
  margin-bottom: 15px;
}

.box h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  text-align: center; /* Centered heading */
  color: var(--primary-light-color); /* Heading color */
  margin-bottom: 10px;
}

.box p {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-align: justified;
  color: var(--text-primary-color); /* Paragraph color */
}

/* Contact Section Styles */
.contact-section {
  height: 550px;
  background-color: var(--primary-light-color);
  clip-path: polygon(0 23%, 100% 0, 100% 75%, 0% 100%);
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  padding: 0 5%; /* Add horizontal padding for spacing */
}
/* Content within the section */
.contact-content {
  position: relative; /* Position relative for padding adjustment */
  text-align: left; /* Align text to the left */
}

.contact-content-image-area {
  top: -120px;
  right: -50px;
}

/* Layout for small screens (576px to 767px) */
@media (max-width: 767px) {
  .contact-content-image-area {
    position: relative !important;
    top: inherit !important;
    right: inherit !important;
  }
}

.contact-heading {
  font-family: "Josefin Sans", sans-serif;
  font-size: 60px; /* Adjust size as needed */
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff; /* Heading color */
  margin-bottom: 20px; /* Space below the heading */
}

.contact-paragraph {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff; /* Paragraph color */
}

.contact-link {
  color: var(--secondary-color); /* Link color */
  text-decoration: underline; /* Underline links */
}

.contact-link:hover {
  color: #dcdcdc; /* Change link color on hover for better visibility */
}

.trusted-professionals-section {
  height: 500px;
  background-color: var(--primary-light-color);
  clip-path: polygon(0 0, 100% 0, 100% 77%, 0% 100%);
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .trusted-professionals-section {
    height: inherit !important;
  }
}
