/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Amaranth&display=swap');

/* ===============================
   About Section Base
=============================== */
.about-section {
  position: relative;
  width: 100%;
  font-family: 'Amaranth', sans-serif;
  overflow: hidden;
  padding: 80px 20px;
  color: #1a1a1a;

  /* Fixed background */
  background: url('img/aboutbg.jpg') center center / cover no-repeat fixed;
}

/* ===============================
   Content Container
=============================== */
.about-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.about-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #2E5932;
  font-weight: 700;
}

/* ===============================
   Top Section (Left Box + Right Image)
=============================== */
.about-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.about-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(47, 93, 52, 0.3);
  border-radius: 18px;
  padding: 30px 25px;
  max-width: 700px;
  flex: 1;
  min-width: 300px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateX(-100px); /* start off-screen left */
  transition: transform 0.1s linear; /* smooth update */
}


.about-box:hover {
  transform: translateY(-10px);
}

.about-box h3 {
  font-size: 27px;
  margin-bottom: 10px;
  color: #2E5932;
}

.about-box h4 {
  font-size: 23px;
  margin-bottom: 15px;
  font-weight: 400;
  color: #4b6b3a;
}

.about-box p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}

/* Right Circle Image */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 250px;
}

.about-image img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #141807;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: scale(1.05); /* initial scale */
  transition: transform 0.1s linear; /* smooth update */
}




.about-image img:hover {
  transform: scale(1.10);
}

/* ===============================
   Bottom Description Box
=============================== */
.about-bottom {
  margin-top: 50px;
  gap: 40px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(47,93,52,0.3);
  border-radius: 18px;
  padding: 35px 45px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  transform: translateX(-100px) scale(0.95); /* start slightly left & smaller */
  transition: transform 0.1s linear;
}


/* ===============================
   Consultation Section
=============================== */
.about-consult {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.consult-heading {
  text-align: center;
  font-size: 27px;
  margin-bottom: 40px;
  color: #2E5932;
}

.consult-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  transform: translateX(-100px) scale(0.95); /* start slightly left & smaller */
  transition: transform 0.1s linear;
}


.consult-text {
  flex: 1;
  min-width: 300px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(47,93,52,0.3);
}

.consult-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}

.consult-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.consult-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.consult-image img:hover {
  transform: scale(1.05);
}

/* ===============================
   Responsive Design
=============================== */
@media screen and (max-width: 992px) {
  .about-top, .consult-content {
    flex-direction: column;
  }

  .about-image img, .consult-image img {
    width: 220px;
    height: 220px;
  }
}

@media screen and (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }
  .about-box h3 {
    font-size: 20px;
  }
  .about-box h4 {
    font-size: 16px;
  }
}
