html, body {
  font-family: "Times", "Times New Roman", serif;
}
/* === CTA Font Unification === */
.cta, 
.cta h2, 
.cta p, 
.cta-btn {
  font-family: "Times", "Times New Roman", serif !important;
  font-weight: normal;
}

/* Optional: make button text more elegant */
.cta-btn {
  text-transform: none;
  letter-spacing: 0.5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ====== About  ====== */
body.about-page {
  background: #FCFBC5;
  color: #333;
  font-family: "Times", "Times New Roman", serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  height: 100%;
}

.about-hero {
  position: relative;
  height: 60vh;
  background: url("images/about-hero.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.about-hero .hero-overlay {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: white;
}

.about-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  color: #FCFBC5;
}

/* ====== About Intro ====== */
.about-intro,
.about-mission,
.about-cta {
  padding: 80px 20px;
  text-align: center;
}

.about-intro h2,
.about-mission h2,
.about-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-intro p,
.about-mission p,
.about-cta p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* ====== Mission & Vision  ====== */
.about-mission .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.about-mission .mission-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-mission .mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-mission i {
  font-size: 2.5rem;
  color: #FCFBC5;
  margin-bottom: 15px;
}


/* ====== Call To Action ====== */
.about-cta .btn {
  display: inline-block;
  background: linear-gradient(90deg, #FCFBC5, #FCFBC5);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.about-cta .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ====== Our Story ====== */
.our-story {
  padding: 80px 10%;
  text-align: center;
  background: #FCFBC5;
}

.our-story h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #162E1A;
  animation: fadeInDown 1s ease;
}

.timeline {
  border-left: 3px solid #123E2C;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  margin-bottom: 40px;
  padding-left: 20px;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 0.8s ease forwards;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.3s;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #162E1A;
  animation: pulse 1.5s infinite;
}

/* ====== Quote ====== */
.quote {
  padding: 80px 10%;
  text-align: center;
  background: #162E1A;
  color: #FCFBC5;
}

.quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

.quote span {
  display: block;
  margin-top: 20px;
  font-weight: bold;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 0.5s;
}

/* ====== Why Choose Us ====== */
.why-choose-us {
  padding: 80px 10%;
  text-align: center;
  background: #FCFBC5;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #123E2C;
  animation: fadeInDown 1s ease;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.choose-item {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.choose-item:nth-child(2) {
  animation-delay: 0.2s;
}

.choose-item:nth-child(3) {
  animation-delay: 0.4s;
}

.choose-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.choose-item i {
  font-size: 2rem;
  color: #123E2C;
  margin-bottom: 15px;
}

/* ====== CTA ====== */
.cta {
  padding: 100px 10%;
  text-align: center;
  background: #FCFBC5;
  color: #123E2C;
  
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease;
}

.cta-btn {
  display: inline-block;
  background: #123E2C;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  position: relative;
  transition: background 0.3s ease;
  margin-top: 10px;
}


.split span {
  display: inline-block;
}

/* ====== Animations Keyframes ====== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  60% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    background: #162E1A;
  }

  50% {
    transform: scale(1.3);
    background: #5a6b4a;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }

  section {
    padding: 50px 6%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
  }

  section {
    padding: 250px 5%;
  }
}