/* HEADER */
.header {
  background: #f5f9f7;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LOGO */
.logo img {
  width: 70px;
  height: auto;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 15px;
}

/* BUTTON */
.nav-btn a {
  background: #2f5d50;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

/* TOGGLE BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE BUTTON HIDE */
.mobile-btn {
  display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* SHOW TOGGLE */
  .menu-toggle {
    display: block;
  }

  /* HIDE DESKTOP BUTTON */
  .desktop-btn {
    display: none;
  }

  /* NAV MENU STYLE */
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  /* SHOW MENU WHEN ACTIVE */
  .nav-links.active {
    display: flex;
  }

  /* MOBILE BUTTON SHOW */
  .mobile-btn {
    display: block;
  }
}

/* MAIN HEADING */
.hero-heading h1 {
  font-family: "Georgia", "Times New Roman", serif; /* premium font */
  font-size: 34px;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* SUBTEXT */
.hero-subtext {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* MAIN */
.main-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

/* NEW CONTAINER (important) */
.tree-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* TREE WRAPPER */
.tree-wrapper {
  position: relative;
  width: 900px; /* fixed base width */
  max-width: 900px;
}

/* TREE IMAGE */
.tree-image {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTAINERS */
#illnesses-container,
#roots-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* BOXES */
.illness-box,
.root-box {
  position: absolute;
  transform: translate(-50%, -50%);
  color: white;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: auto;
  transition: 0.2s;
  width: 110px;
}

.illness-box {
  background: #2f5d50;
}

.root-box {
  background: rgba(20, 2, 2, 0.9);
}

/* HOVER */
.illness-box:hover {
  background: rgba(241, 196, 15, 0.9);
  color: black;
  transform: translate(-50%, -50%) scale(1.1);
}

.root-box.pop-out {
  transform: translate(-50%, -50%) scale(1.15);
  color: black;
  box-shadow: 0 0 15px rgba(241, 196, 15, 0.9);
  background: #f39c12;
}

/* TOOLTIP */
.tooltip {
  position: fixed;
  width: 240px;
  max-width: 90%;
  background: white;
  color: #333;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 100;
  border-left: 5px solid #e74c3c;
}

.tooltip.hidden {
  opacity: 0;
  visibility: hidden;
}

/* ================= MOBILE MAGIC ================= */

/* Tablet */
@media (max-width: 768px) {
  .tree-wrapper {
    transform: scale(0.75);
    transform-origin: top center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .tree-wrapper {
    transform: scale(0.55);
    transform-origin: top center;
  }

  .tooltip {
    bottom: 10px;
    top: auto !important;
    left: 5% !important;
  }
}

/* 🌿 SECTION */
.programs {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fff8dc, #f6f1e7);
}

/* TITLE */
.section-title {
  font-family: "Georgia", serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #2f5d50;
}

/* SUBTITLE */
.section-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}

/* CARD CONTAINER */
.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD BASE */
.card {
    background: #fff;
    width: 400px;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

* 

/* CARD HOVER */
.card:hover {
  transform: translateY(-10px);
}

/* CARD TEXT */
.card h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.card p {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
}

.card ul {
  padding-left: 18px;
  font-size: 13px;
  color: #444;
}

.card ul li {
  margin-bottom: 5px;
}

/* BUTTON LINK */
.card a {
  display: inline-block;
  margin-top: 15px;
  font-size: 13px;
  color: #2f5d50;
  text-decoration: none;
  font-weight: 600;
}

/* 🌟 FEATURED CARD */
.featured {
  background: #1f4d45;
  color: #fff;
  transform: scale(1.05);
  z-index: 2;
}

/* TEXT WHITE */
.featured h3,
.featured p,
.featured a {
  color: #fff;
}

/* GOLDEN GLOW EFFECT */
.featured::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 215, 0, 0.4),
    transparent
  );
  transform: rotate(25deg);
  animation: shine 3s infinite;
}

/* SHINE ANIMATION */
@keyframes shine {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

/* BUTTON INSIDE FEATURED */
.featured a {
  display: inline-block;
  margin-top: 20px;
  background: #f1c40f;
  color: #000;
  padding: 8px 15px;
  border-radius: 6px;
  transition: 0.3s;
}

.featured a:hover {
  background: #ffd700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .featured {
    transform: scale(1);
  }
}



/* SECTION */
.about-premium {
  padding: 80px 20px;
  background: linear-gradient(to right, #f8fbf9, #ffffff);
  text-align: center;
}

/* HEADER */
.about-header h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.about-header p {
  color: #666;
  margin-bottom: 40px;
}

/* CARDS */
.about-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD STYLE */
.about-card {
  background: #ffffff;
  padding: 25px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: left;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.about-card:hover {
  transform: translateY(-10px);
}

/* LIST */
.about-card ul {
  padding-left: 15px;
  margin: 15px 0;
  color: #555;
}

/* BUTTON */
.about-card button {
  padding: 8px 15px;
  border: none;
  background: #27ae60;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.about-card button:hover {
  background: #1e8449;
}

/* CENTER CARD (HIGHLIGHT) */
.highlight {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  transform: scale(1.05);
}

/* GOLDEN GLOW EFFECT */
.highlight::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 4px;
  background: linear-gradient(to right, transparent, gold, transparent);
  top: 50%;
  left: -25%;
  animation: glowLine 2s linear infinite;
}

/* GLOW ANIMATION */
@keyframes glowLine {
  0% { left: -25%; }
  100% { left: 100%; }
}

/* IMAGE */
.about-image-section {
  margin-top: 50px;
}

.about-image-section img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: 0.4s;
}

.about-image-section img:hover {
  transform: scale(1.05);
}

/* CONTAINER */
.healing-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE CONTENT */
.healing-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

/* RIGHT IMAGE */
.healing-image {
  flex: 1;
  text-align: center;
}

/* IMAGE STYLE */
.healing-image img {
  width: 100%;
  max-width: 400px;
  animation: floatImage 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* FLOAT ANIMATION */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* FADE IN ANIMATION */
.healing-box {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🌿 HEALING SECTION */
.healing-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f9fff9, #e4ca61);
}

/* HEADER */
.healing-header h2 {
  font-size: 45px;
  color: #2f5d50;
  margin-bottom: 10px;
}

.healing-header p {
  color: hsl(0, 3%, 6%);
  margin-bottom: 10px;
}

.healing-desc {
  max-width: 700px;
  margin: auto;
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}

/* CONTAINER */
.healing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* BOX */
.healing-box {
  background: #ffffff;
  padding: 30px;
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.4s;
  position: relative;
}

/* HOVER EFFECT */
.healing-box:hover {
  transform: translateY(-10px) scale(1.03);
}

/* LEFT GREEN */
.healing-box.left {
  border-top: 5px solid #2ecc71;
}

/* RIGHT GOLDEN */
.healing-box.right {
  border-top: 5px solid #f1c40f;
}

/* TITLE */
.healing-box h3 {
  margin-bottom: 5px;
  color: #2c3e50;
}

/* TAGLINE */
.tagline {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

/* LIST */
.healing-box ul {
  text-align: left;
  padding-left: 15px;
}

.healing-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

/* CENTER & SYMBOL */
.healing-center {
  font-size: 40px;
  font-weight: bold;
  color: #f1c40f;
  animation: glow 2s infinite alternate;
}

/* GLOW ANIMATION */
@keyframes glow {
  from { opacity: 0.5; }
  to { opacity: 1; transform: scale(1.2); }
}

/* FOOTER TEXT */
.healing-footer-text {
  margin-top: 40px;
}

.healing-footer-text p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}

/* BUTTON */
.healing-btn {
    background: linear-gradient(135deg, #fff8dc, #ddc04a);
    color: #555;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.healing-btn:hover {
  transform: translateY(-3px);
}

/* 🔻 HERO BUTTON */
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  background: #2f5d50;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  box-shadow: 0 6px 15px rgba(47, 93, 80, 0.3);
}

/* hover effect */
.hero-btn:hover {
  background: #1e8449;
  transform: translateY(-3px);
}




/* SECTION */
.pricing-section {
  padding: 80px 20px;
  background: #f5f1ea;
  text-align: center;
}

/* TITLE */
.pricing-title {
  font-size: 30px;
  color: #3d3d3d;
  margin-bottom: 50px;
}

/* CARDS */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.pricing-card {
  background: #fdfaf6;
  padding: 30px 20px;
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: left;
  transition: 0.3s;
  position: relative;
  border: 1px solid #e6dfd6;
}

/* HOVER */
.pricing-card:hover {
  transform: translateY(-10px);
}

/* HEADINGS */
.pricing-card h3 {
  text-align: center;
  margin-bottom: 5px;
  color: #6b5e4a;
}

.subtitle {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

/* PRICE */
.price {
  text-align: center;
  font-size: 26px;
  color: #3d3d3d;
}

.duration {
  text-align: center;
  font-size: 13px;
  margin-bottom: 20px;
  color: #777;
}

/* LIST */
.pricing-card ul {
  padding-left: 15px;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

/* BUTTON */
.pricing-card button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #6b7c4f;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.pricing-card button:hover {
  background: #55663e;
}

/* POPULAR CARD */
.popular {
  transform: scale(1.05);
  border: 2px solid #d8c8a5;
}

/* BADGE */
.badge {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #e7cfa5;
  color: #5a4d3c;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

/* 🌿 TESTIMONIAL SECTION */
.testimonial-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdfaf5, #fff8dc);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* soft background texture */
.testimonial-section::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: bgMove 20s linear infinite;
}

/* container */
.testimonial-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* title */
.testimonial-title {
  font-family: "Georgia", serif;
  font-size: 34px;
  color: #4a3f35;
  margin-bottom: 10px;
  animation: fadeDown 1s ease;
}

/* subtitle */
.testimonial-subtitle {
  font-size: 15px;
  color: #7a6c60;
  margin-bottom: 50px;
  animation: fadeUp 1.2s ease;
}

/* cards layout */
.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* card */
.testimonial-card {
  background: #1f4d45;
  padding: 25px;
  border-radius: 15px;
  width: 300px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.4s;

  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s forwards;
}

/* delay animation */
.testimonial-card:nth-child(1) { animation-delay: 0.3s; }
.testimonial-card:nth-child(2) { animation-delay: 0.6s; }
.testimonial-card:nth-child(3) { animation-delay: 0.9s; }

/* hover */
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* text */
.testimonial-card p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 15px;
  color: #fff;
}

.testimonial-card span {
  font-size: 13px;
  color: #f1c40f;
}

/* animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bgMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(-60px,-60px); }
}

/* responsive */
@media (max-width: 900px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* 🌿 IMPORTANT SECTION */
.important-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdf7f2, #f4e8d8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* soft texture */
.important-section::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBg 25s linear infinite;
}

/* container */
.important-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* header */
.important-header h2 {
  font-family: "Georgia", serif;
  font-size: 28px;
  color: #5a4636;
  margin-bottom: 15px;
  animation: fadeDown 1s ease;
}

.important-header p {
  font-size: 15px;
  color: #6b5e55;
  max-width: 700px;
  margin: 10px auto;
}

/* boxes */
.important-boxes {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* box */
.important-box {
  background: #f8f1e7;
  padding: 25px;
  width: 350px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.4s;

  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s forwards;
}

.important-box.left { animation-delay: 0.3s; }
.important-box.right { animation-delay: 0.6s; }

/* hover */
.important-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* titles */
.important-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #3c332c;
}

/* list */
.important-box ul {
  padding-left: 0;
  list-style: none;
}

.important-box ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #5a4d43;
  line-height: 1.5;
}

/* left check color */
.left ul li {
  color: #2f5d50;
}

/* right cross color */
.right ul li {
  color: #8e3b3b;
}

/* footer */
.important-footer {
  margin-top: 40px;
  font-size: 16px;
  color: #4a3f35;
  font-style: italic;
  animation: fadeUp 1.2s ease;
}

/* animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveBg {
  0% { transform: translate(0,0); }
  100% { transform: translate(-80px,-80px); }
}

/* responsive */
@media (max-width: 900px) {
  .important-boxes {
    flex-direction: column;
    align-items: center;
  }
}


/* 🌿 WHY ROOT SECTION */
.why-root {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #fff8dc);
  position: relative;
  overflow: hidden;
}

/* subtle pattern */
.why-root::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveBg 20s linear infinite;
}

/* container */
.why-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* header */
.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-header h1 {
  font-family: "Georgia", serif;
  font-size: 38px;
  color: #2f5d50;
}

.why-header p {
  color: #666;
  font-size: 16px;
}

/* content */
.why-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* text */
.why-text {
  flex: 1;
}

.why-box {
  background: #f9f4eb;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  transition: 0.4s;
  animation: fadeUp 1s ease;
}

.why-box:hover {
  transform: translateY(-5px);
}

.why-box h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.why-box p {
  font-size: 14px;
  color: #555;
}

/* image */
.why-image {
  flex: 1;
  text-align: center;
}

.why-image img {
    width: 150%;
    max-width: 900px;
    animation: float 4s ease-in-out infinite;
}

/* floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* steps */
.why-steps {
  margin-top: 60px;
  text-align: center;
}

.why-steps h2 {
  margin-bottom: 30px;
  color: #2f5d50;
}

/* steps container */
.steps-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  background: #ffffff;
  padding: 20px;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.step:hover {
  transform: translateY(-8px);
}

/* step number */
.step span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #2f5d50;
  color: #fff;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 10px;
  font-weight: bold;
}

.step h4 {
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: #666;
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveBg {
  0% { transform: translate(0,0); }
  100% { transform: translate(-60px,-60px); }
}

/* responsive */
@media (max-width: 900px) {
  .why-content {
    flex-direction: column;
  }
}


.footer {
  background: #0f3d3e;
  color: #fff;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f1c40f;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f1c40f;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 150px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  background: #1b5e5f;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #f1c40f;
  color: #000;
  transform: translateY(-3px);
}

/* 🔻 Bottom Footer */
.footer-bottom {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  background: #092d2e;
  font-size: 14px;
}

/* 🔻 FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  text-decoration: none;
  animation: floatWhatsapp 2s infinite ease-in-out;
}

/* Hover */
.whatsapp-float:hover {
  background: #1ebe5d;
}

/* 🔻 Animation */
@keyframes floatWhatsapp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}