@font-face {
  font-family: "Candara";
  src: url("/fonts/Candara.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Candara";
  src: url("/fonts/Candara_Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Bisque";
  src: url("/fonts/Bisque-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Calibri", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* herosection */
.carousel-item.active .hero-slide {
  animation: bgMove 7s ease forwards;
}

@keyframes bgMove {
  from {
    background-position: center top;
    transform: scale(1.005);
  }

  to {
    background-position: center bottom;
    transform: scale(1);
  }
}

/* GLASS BOX animation */
.slide-box {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-40px);
}

/* Active animation */
.carousel-item.active .slide-box {
  animation: boxFade 1.2s ease forwards;
  animation-delay: 0.3s;
}

@keyframes boxFade {
  to {
    opacity: 1;
    max-height: 500px;
    /* enough for content */
    transform: translateY(0);
  }
}

/* TEXT animation */
.text-left {
  opacity: 0;
  transform: translateX(-100px);
}

.carousel-item.active .text-left {
  animation: leftAnim 2s ease forwards;
  animation-delay: 1s;
}

@keyframes leftAnim {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* SCALE animation */
.text-scale {
  opacity: 0;
  transform: scale(0.5);
}

.carousel-item.active .text-scale {
  animation: scaleAnim 2s ease forwards;
  animation-delay: 1s;
}

@keyframes scaleAnim {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* BOTTOM → TOP */
.text-up {
  opacity: 0;
  transform: translateY(80px);
}

.carousel-item.active .text-up {
  animation: upAnim 2s ease forwards;
  animation-delay: 1s;
}

@keyframes upAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.herosection {
  height: 100dvh;
  overflow: hidden;
  font-family: "Candara", sans-serif;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 100%;
}
.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #a5b68d;
  opacity: 0.8;
  border: none;
  margin: 0 5px;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #5d866c;
  transform: scale(1.2);
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.text1 {
  font-size: 65px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 2px #dcccac;
  letter-spacing: 1px;
}
.text2 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 2px #dcccac;
  letter-spacing: 1px;
}
.text3 {
  font-size: 45px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1px;
}
.text6 {
  font-size: 32px;
  color: #fff;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1px;
  text-shadow: none;
}
.innertext6 {
  font-size: 45px;
}
.text4 {
  font-size: 32px;
  color: #fff;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1px;
  text-shadow: none;
}
.innertext4 {
  font-size: 48px;
}
.innertext5 {
  font-size: 38px;
}
.text5 {
  font-size: 38px;
  color: #fff;
  font-weight: 500;
  line-height: 120%;
  text-shadow: none;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .herosection {
    height: 50dvh;
    overflow: hidden;
    font-family: "Candara", sans-serif;
  }

  .text1 {
    font-size: 32px;
  }

  .text2 {
    font-size: 22px;
  }

  .text3 {
    font-size: 24px;
  }

  .text4 {
    font-size: 18px;
  }

  .text5 {
    font-size: 20px;
  }

  .text6 {
    font-size: 18px;
  }

  .innertext4,
  .innertext5,
  .innertext6 {
    font-size: inherit;
  }
}
/* who we are  */
/* ── WHO WE ARE ── */
.who-we-are {
  background-color: transparent;
  overflow: hidden;
}
.about-box {
  max-width: 1000px;
  text-align: justify;
  font-family: "Candara", sans-serif;
}

.about-box p {
  font-size: 24px;
  line-height: 1.2;
  text-align: justify;
  color: #444;
}

.about-box strong {
  color: #5d866c;
  font-weight: 800;
}
.custom-bg-who {
  background-color: #d9e9cf;
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 50px,
      rgba(160, 190, 120, 0.12) 51px
    ),
    repeating-linear-gradient(
      to right,
      transparent,
      transparent 50px,
      rgba(160, 190, 120, 0.12) 51px
    );
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e0edcc;
}

.wwa-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.wwa-badge {
  display: inline-block;
  background: #ffffff;
  border: 1px solid rgba(90, 160, 80, 0.35);
  color: #727d73;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  padding: 5px 18px;
  margin-bottom: 18px;
}

/* Heading */
.who {
  font-size: 70px;
  font-weight: 900;
  color: #727d73;
  font-family: "Candara", sans-serif;
  text-transform: capitalize;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* Accent divider */
.wwa-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #727d73, #c9ddb0);
  border-radius: 999px;
  margin: 0 auto 28px;
}

/* Body text */
.who-text {
  font-size: 20px;
  color: #4a5540;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 900px;
}

/* Cards */
.who-card {
  background: #ffffff;
  border: 1px solid #dcecc7;
  border-radius: 16px;
  padding: 28px 18px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.who-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(130, 175, 90, 0.13);
}

.who-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: #edf7e2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-card h4 {
  font-size: 18px;
  font-weight: 900;
  color: #3a4d2c;
  font-family: "Candara", sans-serif;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .who {
    font-size: 36px;
  }

  .who-text {
    font-size: 16px;
    padding: 0 10px;
  }
  .about-box {
    padding-right: 20px;
    padding-left: 10px; /* recommended */
  }
  .about-box p {
    font-size: 16px;
  }

  .who-card {
    padding: 20px 15px;
  }

  .step-left,
  .step-right {
    justify-content: center !important;
    text-align: center;
  }

  .step-card {
    text-align: center;
  }

  .step-card button {
    display: block;
    margin: 12px auto;
  }
}
/* who we are  */

/* ── OUR JOURNEY ── */
/* ── JOURNEY SECTION ── */
.lefticons {
  width: 90%;
  height: auto;
  transform: translateX(-50px);
}
@media (max-width: 768px) {
  .lefticons {
    width: 90%;
    height: auto;
    transform: translateX(0px);
  }
  /* REMOVE LINE */
  .timeline-line,
  .timeline-container::before,
  .timeline-container::after,
  .step::before {
    display: none;
  }

  /* FIX LAYOUT */
  .step {
    flex-direction: column !important;
    align-items: center;
    padding-left: 0;
  }

  .step-left,
  .step-right {
    width: 100%;
    justify-content: center;
  }

  /* CENTER CONTENT */
  .step-card {
    text-align: center !important;
  }

  .step-card button {
    display: block;
    margin: 15px auto !important;
  }

  /* IMAGE FIX */
  .step-icon-wrap img {
    width: 90%;
    transform: none !important;
  }
}
/* SECTION */
.journey-section {
  padding: 80px 0;
  background: #ecfae5;
}

.journey-section button {
  padding: 10px 22px;
  background: #a5b68d;
  color: #fff;
  border: none;
  margin-left: 10px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.journey-section button:hover {
  background: #a5b68d;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(192, 57, 43, 0.3);
}
/* HEADER */
.jrn-header {
  text-align: center;
  margin-bottom: 60px;
}

.jrn-lead {
  color: #666;
  font-size: 20px;
}

/* TIMELINE */
.timeline-container {
  position: relative;
  display: flex;
  justify-content: center;
}

/* CENTER LINE */
.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    #c1cfa1 0px,
    #c1cfa1 10px,
    transparent 10px,
    transparent 18px
  );
}

.steps-overlay {
  width: 100%;
  max-width: 900px;
}

/* STEP */
.step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 80px 0;
  position: relative;
}

/* DOT */
.step::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #a5b68d;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.righticon {
  transform: translateX(-40px);
}
/* LEFT & RIGHT SIDE */
.step-left,
.step-right {
  width: 45%;
  display: flex;
  align-items: center;
}

/* GAP CONTROL HERE 🔥 */
.step-left {
  justify-content: flex-end;
  padding-right: 30px;
}

.step-right {
  justify-content: flex-start;
  padding-left: 30px;
}

/* REVERSE FOR STEP 2 */
.step-2 {
  flex-direction: row-reverse;
}

/* ICON */
.step-icon-wrap {
  width: 450px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* CARD */
.step-card {
  width: 100%;
  max-width: 450px;
  /* background: #fff; */
  text-align: center;
  /* border-radius: 15px;
  border: 1px solid #ddd; */
}
/* LEFT animation */
.left-animate {
  animation: slideLeft 1s ease forwards;
}

/* RIGHT animation */
.right-animate {
  animation: slideRight 1s ease forwards;
}

/* KEYFRAMES */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-container::before,
.timeline-container::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #a5b68d;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* TOP DOT */
.timeline-container::before {
  top: 0;
}

/* BOTTOM DOT */
.timeline-container::after {
  bottom: 0;
}

@media (max-width: 768px) {
  .journey-section {
    padding: 50px 15px;
  }

  .jrn-lead {
    font-size: 16px;
  }

  .step {
    margin: 40px 0;
  }

  .step-icon-wrap {
    width: 100%;
    height: auto;
  }

  .step-card {
    text-align: left;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }
  .righticon {
    transform: translateX(0px);
  }

  .step {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 40px;
  }

  .step-left,
  .step-right {
    width: 100%;
    padding: 0;
    justify-content: flex-start;
  }

  .step::before {
    left: 20px;
  }

  .step-icon-wrap {
    margin-bottom: 10px;
  }
}
.step-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 5s ease;
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-line {
  height: 0;
  transition: 5.5s ease;
}

.timeline-container.animate .timeline-line {
  height: 100%;
}
.contact-section {
  padding: 80px 0;
  background: #d9e9cf; /* WHITE BG */
}

/* LEFT SIDE */
.contact-left h1 {
  font-size: 42px;
  font-weight: 600;
  color: #000;
}

.contact-left h1 span {
  font-weight: 700;
}

.connect-tag {
  color: #727d73;
  font-size: 20px;
  font-weight: 500;
}

.desc {
  color: #555;
  font-size: 18px;
  margin: 20px 0;
}

/* INFO BOX */
.info-box {
  display: flex;
  /* align-items: center; */
  gap: 15px;
  margin: 20px 0;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: #a5b68d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.info-box h6 {
  margin: 0;
  font-weight: 600;
}

.info-box p {
  margin: 0;
  color: #555;
}

/* RIGHT FORM CARD */
.contact-form-card {
  background: #f7f7f7; /* LIGHT GREY */
  padding: 30px;
  border-radius: 20px;
}

.contact-form-card h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.small-text {
  color: #727d73;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* FORM */
.contact-form-card label {
  font-weight: 500;
  margin-top: 10px;
}

.form-control {
  width: 100%;
  height: 45px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  padding: 10px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 12px;
  background: #a5b68d;
  transition: all 0.8s ease-in-out;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 10px;
  transition: 0.3s;
}

.info-icon i {
  font-size: 18px;
}
.submit-btn:hover {
  background: linear-gradient(90deg, #727d73, #c9ddb0);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: #a5b68d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #000;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .contact-left h1 {
    font-size: 28px;
  }

  .desc {
    font-size: 16px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .form-control {
    height: 40px;
  }
}
/* contact */
@media (max-width: 768px) {
  .step-icon-wrap img {
    width: 100% !important;
    max-width: 100%;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .step {
    padding-left: 20px;
  }

  .step-card {
    width: 100%;
    max-width: 100%;
  }
}
/* footer */

.footer {
  padding-top: 20px;
  padding-bottom: 2px;
  background-color: #a5b68d;
}
.footer p {
  font-size: 20px;
  color: #fff;
}
