/* aboutus page */
.mission-vision-wrapper h3 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: clamp(20px, 4vw, 40px);
  line-height: 100%;
  letter-spacing: 3%;
  color: var(--primary);
}

.aboutus-section.aboutus-page .section-heading {
  max-width: 422px;
  width: 100%;
}

.mission-vision-wrapper p {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 3%;
}

.mission-vision-wrapper>div {
  background-color: white;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 30px 0 70px;
  max-width: 728px;
  width: 100%;
}

.mission-vision-wrapper>div>div.flex {
  padding: 0 12px 0 30px;
}

.mission-vision-wrapper p {
  padding: 0 clamp(30px, 5vw, 80px) 0 clamp(16px, 4vw, 32px);
}

.mission-vision-wrapper {
  gap: clamp(15px, 3vw, 30px);
}

.aboutus-section.aboutus-page>.container>div.flex {
  gap: 20px;
}

/* acknowledgesection */
.acknowledgement-section {
  position: relative;
  z-index: 0;
  background-image: url(../imgs/acknowledge.png);
  background-position: center;
}

.acknowledgement-section::before {
  background: linear-gradient(90deg, #93ca27 0%, rgba(73, 100, 19, 0) 117.89%);
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.acknowledgement-section .section-heading {
  max-width: 422px;
  width: 100%;
}

/* acknowledgesection */

/* service page */
.services-page {
  background-color: #fffbef;
  overflow: visible;
}

.services-page .left-content {
  min-width: 386px;
  width: 386px;
}

.services-page>.container>div.flex {
  gap: 30px;
  align-items: flex-start;
}

.section-wrapper {
  display: flex;
  align-items: flex-start;
}

.services-page .right-content .content-box>p:not(:last-child) {
  margin-bottom: 12px;
}

.services-page .right-content .content-box h3,
.services-page .right-content .content-box h4 {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #393737;
  margin: clamp(15px,3vw,20px) 0;

}

.services-page .right-content .content-box h4 {

  font-size: 25px;

}

.services-page .left-content {
  position: sticky;
  top: 160px;
}

.services-page .left-content>div {
  margin-bottom: 30px;
}

.services-page .services-list {
  padding: 45px 39px;
  border-radius: 30px;
  background-color: #daecff;
}

.to-hire {
  background-color: #93ca27;
  padding: 34px 54px;
  border-radius: 28px;
}

.to-hire h3 {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1.1;
  letter-spacing: 2%;
  text-align: center;
  margin-bottom: clamp(15px, 3vw, 30px);
  color: #fff;
}

.service-img {
  max-width: 944px;
  height: 471px;
  width: 100%;

  margin-bottom: 36px;
}

.service-single .right-content {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 25px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.services-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list ul li {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 100%;
  letter-spacing: 3%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
  background-color: white;
  align-items: center;
  color: #000000;
  transition: all 0.3s ease;
  position: relative;
}

.services-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

/* Arrow */
.services-list ul li i {
  font-size: 14px;
}

/* Active (blue one like screenshot) */
.services-list ul li.active {
  background-color: var(--primary);
  color: #fff;
}

.services-list ul li:hover {
  background: #3182ce;
  color: #fff;
  transition: var(--transition);
}

.content-box {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
}

.content-box.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.services-list li::after {
  content: "\2192";
  /* → arrow */
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Optional: animate arrow */
.services-list li:hover::after {
  transform: translateX(5px);
}

.services-list h3 {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 100%;
  letter-spacing: 3%;
  margin-bottom: clamp(15px, 3vw, 30px);
}

.single-page {
  border-bottom: 1px solid #d6d6d6;
}

.info-div {
  margin: -16px 0 20px;
}

.info-div>div {
  align-items: center;
  gap: 15px;
}

.info-div>a {
  color: black;
  display: inline-flex;
  gap: 10px;
}

.info-div>div>img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.story-section.related-section::before {
  display: none;
}

/* contact us */
.contact-section .contact-content>div>span {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 3%;
  display: block;
  color: #39373799;
  margin-bottom: clamp(10px, 3vw, 15px);
}

.contact-section {
  position: relative;
  background-color: var(--background);
  z-index: 0;
}

.contact-section .section-heading h2 {
  margin-bottom: 0;
}

.contact-section .section-heading>p {
  color: #393737;
}

.contact-section .contact-content>div>a,
.contact-section .contact-content>div>p {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 3%;
  color: black;
}

.contact-section .contact-content>div>a:hover {
  color: var(--secondary);
}

.location-section {
  background-color: var(--background);
}

.location-section>iframe {
  width: 100%;
  height: 582px;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  background-image: url("../imgs/pattern-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

/* form */

.message-box {
  background: #daecff;
  padding: clamp(20px, 3vw, 40px);
  border-radius: 20px;
  max-width: 664px;
}

.message-box h2 {
  margin-bottom: 0;
  color: #292929;
}

.wpcf7-spinner {
  display: none;
}

.message-box .contact-form p {
  margin: 0 0 0;
}

/* Inputs */
.message-box .contact-form input[type="text"],
.message-box .contact-form input[type="email"],
.message-box .contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
}

/* Textarea */
.message-box .contact-form textarea {
  height: 180px;
  resize: none;
}

/* Focus */
.message-box .contact-form input:focus,
.message-box .contact-form textarea:focus {
  outline: 2px solid #4a90e2;
  background: #f5f5f5;
}

.message-box .contact-form input::placeholder,
.message-box .contact-form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 3%;
  color: #3937376e;
}

/* Submit button */
.message-box .contact-form input[type="submit"] {
  background: #2d6cdf;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: block;
  margin: 0 auto;
  transition: var(--transition);
  margin-top: 20px;
}

.message-box .contact-form input[type="submit"]:hover {
  background-color: var(--secondary);
  color: white;
}

/* form */

.contact-section .contact-content {
  margin-top: clamp(20px, 5vw, 70px);
  row-gap: clamp(15px, 3vw, 30px);
  align-items: center;

}

.contact-section .contact-content>div {
  width: calc(50% - 25px);
}

.socials-div {
  gap: 10px;
}

.socials-div a:hover img {
  transform: scale(1.15);
  transition: var(--transition);
}

/* work page */
.work-single .service-img {

  max-width: 100%;
  height: auto;
}

@media (max-width: 1080px) {
  .section-wrapper {
    flex-direction: column;
  }

  .left-content {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    min-width: unset !important;
  }

  .services-page .left-content {
    position: unset;
    top: 160px;
  }

  .services-list ul {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .to-hire {
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: space-between;
    border-radius: 15px;
  }

  .to-hire .btn {
    margin: 0;
  }

  .services-list h3 {
    text-align: center;
  }

  .services-page .left-content>div {
    margin-bottom: 15px;
  }

  .services-list ul li {
    padding: 10px;
    white-space: nowrap;
    margin-bottom: 0;
  }

  .services-list ul li:not(:last-child) {
    margin-bottom: 0;
  }

  .services-list li::after {
    display: none !important;
  }

  .services-page .services-list {
    padding: 20px 15px;
    overflow: scroll;
    scroll-behavior: smooth;
  }

  .to-hire h3 {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 0;
  }
}

@media (max-width: 1020px) {
  .contact-section>.container>div {
    flex-direction: column;
    gap: 30px;
  }

  .contact-section>.container>div>div {
    max-width: 100%;
  }
}

@media (max-width: 880px) {
  .aboutus-section.aboutus-page>.container>div.flex {
    flex-direction: column;
    align-items: start;
  }

  .info-div p,
  .info-div a {
    font-size: 15px;
  }

  .info-div {
    flex-direction: column;
    align-items: start !important;
    row-gap: 20px;
  }

  .aboutus-section.aboutus-page .section-heading {
    max-width: 100%;
  }
}