/* =========================
   GENERAL STYLING
   ========================= */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #4e342e;
  background-color: #fff8e1;
  margin: 0;
  padding: 0;
}

h2,
h1,
h3 {
  font-family: "Playfair Display", serif;
  color: #5d4037;
}

/* =========================
   ABOUT SECTION
   ========================= */
section.py-5.bg-white {
  background-color: #ffffff;
}

/* =========================
   SERVICES CARDS
   ========================= */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* =========================
   VISION SECTION
   ========================= */
.vision-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background-color: #fff8e1;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 223, 150, 0.5) 0%,
    rgba(255, 248, 225, 0) 70%
  );
  transform: translate(-50%, -50%);
  z-index: 0;
}

.vision-text {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s forwards;
}

.vision-text span {
  font-weight: bold;
  color: #d4af37;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   FAQ ACCORDION
   ========================= */
.accordion-button:not(.collapsed) {
  background-color: #ffefb5 !important;
  color: #333 !important;
  box-shadow: none !important;
}

.accordion-button:hover {
  background-color: #fff7cc !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 223, 100, 0.5) !important;
  border-color: #ffd84d !important;
}

/* =========================
   CONTACT SECTION
   ========================= */
#contact input,
#contact textarea {
  border-radius: 8px;
  border: 1px solid #ddd;
}

#contact button {
  border-radius: 50px;
  background-color: #ffd54f;
  color: #4e342e;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

#contact button:hover {
  background-color: #ffca28;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-logo {
    height: 70px;
  }
  .service-card img {
    height: 180px;
  }
}

/* =========================
   HERO SECTION BACKGROUND ANIMATION
========================= */
.hero-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4e342e;
  overflow: hidden;
  animation: heroBgFade 8s ease-in-out infinite alternate;
  background: #ffe082; /* Starting color */
}

/* Background color fade animation */
@keyframes heroBgFade {
  0% {
    background-color: #ffe082; /* Darker yellow */
  }
  50% {
    background-color: #fff8e1; /* Light pastel yellow */
  }
  100% {
    background-color: #ffe082; /* Darker yellow again */
  }
}

/* Keep mandala and orbs on top */
.hero-bg,
.mandala-overlay,
.floating-orb {
  z-index: 0;
}

/* Simple WhatsApp icon link */
/* Simple WhatsApp icon link */
.whatsapp-link {
  color: #25d366; /* WhatsApp green */
  font-size: 1.5rem; /* Adjust size for navbar */
  text-decoration: none;
  transition: transform 0.2s;
  display: flex;
  align-items: center; /* vertically center inside navbar */
}

.whatsapp-link:hover {
  transform: scale(1.2); /* Slight zoom on hover */
  color: #128c7e; /* Darker green on hover */
}

/* .approach-chart {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  margin: 50px auto 0;
}




.central-circle {
  width: 100px;
  height: 100px;
  background-color: #ffd54f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #4e342e;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

Surrounding Circles on Outer Circle
.option-circle {
  width: 85px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #4e342e;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translate(200px)
    rotate(calc(-1 * var(--angle)));
  transition: transform 0.3s, background-color 0.3s;
  cursor: pointer;
}

.option-circle:hover {
  transform: rotate(var(--angle)) translate(200px)
    rotate(calc(-1 * var(--angle))) scale(1.15);
  background-color: #f6b501;
}

Responsive Adjustments
@media (max-width: 768px) {
  .outer-circle {
    width: 300px;
    height: 300px;
  }
  .central-circle {
    width: 80px;
    height: 80px;
    font-size: 0.85rem;
  }
  .option-circle {
    width: 50px;
    height: 50px;
    font-size: 0.7rem;
    transform: rotate(var(--angle)) translate(150px)
      rotate(calc(-1 * var(--angle)));
  }
}

@media (max-width: 480px) {
  .outer-circle {
    width: 240px;
    height: 240px;
  }
  .central-circle {
    width: 70px;
    height: 70px;
    font-size: 0.7rem;
  }
  .option-circle {
    width: 45px;
    height: 45px;
    font-size: 0.65rem;
    transform: rotate(var(--angle)) translate(120px)
      rotate(calc(-1 * var(--angle)));
  }
} */

/* =========================
   HERO BUTTON (Book Session)
   ========================= */
.hero-btn {
  background-color: #ffd54f; /* Soft yellow */
  color: #4e342e; /* Dark brown text for contrast */
  font-weight: 600;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #ffca28; /* Slightly darker yellow on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
