/* HERO */
.about-hero {
  position: relative;
  height: 60vh;
  background: url(photos/WhatsApp\ Image\ 2026-03-20\ at\ 5.12.18\ PM.jpeg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content p {
  margin-top: 10px;
  font-size: 1.2rem;
}

/* ABOUT INTRO */
.about-intro {
  max-width: 900px;
  margin: 80px auto;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}

.about-intro h2,
.about-intro p {
  opacity: 1;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.about-intro h2 {
  animation-delay: 0.2s;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-intro p {
  animation-delay: 0.5s;
  font-size: 1.3rem;
  line-height: 1.6;
}

/* FADE UP ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  .about-intro h2 { font-size: 2rem; }
  .about-intro p { font-size: 1.3rem; }
}

@media screen and (max-width: 500px) {
  .about-intro h2 { font-size: 1.6rem; }
  .about-intro p { font-size: 1.35rem; }
}

/* ABOUT IMAGE */
.about-image {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  opacity: 1;
  transform: translateY(40px) scale(0.95);
  animation: fadeUpScale 1s ease forwards;
  animation-delay: 0.3s;
  transition: transform 0.3s ease;
}

/* FADE UP + SCALE ANIMATION */
@keyframes fadeUpScale {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* HOVER EFFECT (optional for "alive" feel) */
.about-image img:hover {
  transform: scale(1.02);
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  .about-image { padding: 15px; }
}

@media screen and (max-width: 500px) {
  .about-image img { border-radius: 15px; }
}

/* ABOUT VALUES (Mission / Vision / Goal) */
.about-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1000px;
  margin: 80px auto;
  padding: 20px;
  text-align: center;
}

.about-values .value {
  flex: 1 1 280px;
  margin: 20px;

  opacity: 1;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.about-values .value:nth-child(1) { animation-delay: 0.2s; }
.about-values .value:nth-child(2) { animation-delay: 0.4s; }
.about-values .value:nth-child(3) { animation-delay: 0.6s; }

.about-values h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color:  #4c7fec;
}

.about-values p {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #333;
}

/* WHY CHOOSE US */
.why-us {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}

.why-us h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  opacity: 1;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
  color:  #4c7fec;
}

.why-us .why-list p {
  font-size: 1.1rem;
  margin: 12px 0;
  opacity: 1;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.why-us .why-list p:nth-child(1) { animation-delay: 0.4s; }
.why-us .why-list p:nth-child(2) { animation-delay: 0.6s; }
.why-us .why-list p:nth-child(3) { animation-delay: 0.8s; }
.why-us .why-list p:nth-child(4) { animation-delay: 1s; }

/* FADE UP ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  .about-values { flex-direction: column; align-items: center; }
  .about-values .value { margin: 15px 0; }
  .why-us h2 { font-size: 2rem; }
  .why-us .why-list p { font-size: 1rem; }
}

@media screen and (max-width: 500px) {
  .about-values h3 { font-size: 1.5rem; }
  .about-values p { font-size: 1,3rem; }
  .why-us h2 { font-size: 1.5rem; }
  .why-us .why-list p { font-size: 1.3rem; }
}

/* ABOUT CTA */
.about-cta {
  text-align: center;
  padding: 80px 20px;
  background: rgba(46, 204, 113, 0.1); /* green transparent background */
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.about-cta h2,
.about-cta p,
.about-cta .cta-btn {
  opacity: 1;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.about-cta h2 {
  animation-delay: 0.2s;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #4c7fec;
}

.about-cta p {
  animation-delay: 0.5s;
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #333;
}

.about-cta .cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #4c7fec;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  animation-delay: 0.8s;
}

.about-cta .cta-btn:hover {
  background: #27ae60;
  transform: scale(1.05);
}

/* FADE UP ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  .about-cta h2 { font-size: 2rem; }
  .about-cta p { font-size: 1.3rem; }
}

@media screen and (max-width: 500px) {
  .about-cta h2 { font-size: 1.5rem; }
  .about-cta p { font-size: 1.3rem; }
  .about-cta .cta-btn { padding: 10px 20px; }
}