* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gradient: linear-gradient(90deg,
      rgba(32, 137, 94, 0.15) 0%,
      rgba(144, 197, 74, 0.15) 100%);
  /* --primary:  */
}

body {
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  font-size: 15px;
  color: #333;
  transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #1f7a4d;

}

.call-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.call-link i {
  color: white;
  margin-right: 6px;
}

.call-link:hover {
  text-decoration: underline;
}

/* Hide mobile icon on desktop */
.mobile-call {
  display: none;
}

.mobile-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.call-ico .call-ico-desk {
  width: 25px;
  height: 29px;
  fill: #2e7d32;
}

.desktop-call-btn a {
  display: flex;
  align-items: center;
  gap: 8px;
  /* space between icon and number */
  color: white;
  /* text color */
  text-decoration: none;
  font-weight: 500;
}

.desktop-call-btn a:hover {
  color: #ffdd57;
  /* example hover color */
}

.call-ico-desk {
  width: 25px;
  height: 25px;

  fill: currentColor;

}



/* Mobile styles */
@media (max-width: 768px) {

  /* Hide desktop number in mobile */
  .desktop-call {
    display: none;
  }

  .mobile-call {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .mobile-call .call-icon i {
    color: white;
    font-size: 20px;
  }
}




/* Show only on mobile */
@media (max-width: 768px) {
  .desktop-call {
    display: none;
    /* hide desktop call on mobile */
  }

  .mobile-call {
    display: block;
  }

  .nav-links {
    display: none;
    /* menu will toggle */
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    /* background: #111; */
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
  }
}



.nav-links .btn a {
  /* background: #145f45; */
  color: #fff;
  /* padding: 10px 18px; */
  border-radius: 6px;
  transition: 0.3s;

}

.nav-links .btn a:hover {
  background: #1f7a4d;

  color: white;
}


/* Hide hamburger on desktop */
/* Hamburger visible only on mobile */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    width: 100%;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    position: absolute;
    top: 70px;
    /* below navbar */
    left: 0;
    width: 100%;
    max-height: 0;
    /* hidden by default */
    overflow: hidden;
    transition: max-height 0.5s ease;
    z-index: 1000;
    padding: 0;
    margin: 0;
  }

  .nav-links.active {
    max-height: 500px;
    /* enough for all links */
    padding: 20px 0;
  }

  .nav-links li {
    list-style: none;
    text-align: center;
  }

  .nav-links li a {
    font-size: 16px;
    display: block;
    padding: 10px 0;
  }
}

/* Desktop: hide mobile call button */
.mobile-call-btn {
  display: none;
}

/* Mobile view only */
@media (max-width: 768px) {
  .mobile-call-btn {
    display: flex;
    /* show button */
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: transparent;
    /* optional: no background */
    border-radius: 50%;
    text-decoration: none;
    color: white;
    /* white icon */
    /* margin-right: 10px; */
    margin-top: 5px;
    /* space before hamburger */
  }

  .call-ico {
    width: 24px;
    height: 24px;
    fill: #1f7a4d;
    /* matches the white text color */
  }

  .mobile-menu {
    display: flex;
    justify-content: flex-end;
    /* hamburger right, call icon before */
    align-items: center;
  }
}


/* Mobile Optimization */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
    flex-wrap: wrap;
  }

  /* Show hamburger only on mobile */
  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 28px;
  }

  /* Hide nav links initially */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 10px;
    background: #fff;
    border-radius: 6px;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links .btn a {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}

/* Show nav when active */
.nav-links.active {
  display: flex;
}



/* Hero Banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 450px;
  background: url("./assets/banner.png") center/cover no-repeat;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  box-sizing: border-box;
  color: #2c2c2c;
}

/* Text Area */
.banner-content {
  max-width: 500px;
  z-index: 2;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
}

/* Button */
.banner-content .btn {
  background: #1f7a4d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.banner-content .btn:hover {
  background: #1f7a4d;
}

.banner-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  /* margin-left: auto; */

  z-index: 2;
  width: 100%;
}

.banner-form h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1f7a4d;
  text-align: center;
}

.banner-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-form input,
.banner-form select {
  padding: 10px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

.banner-form button {
  background: #1f7a4d;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner-form button:hover {
  background: #16663e;
}

/* Mobile layout - form moves below text */
@media screen and (max-width: 768px) {
  .hero-banner {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
  }

  .banner-form {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    margin: auto;
  }
}

/* Mobile Optimization for Hero Banner */
@media screen and (max-width: 768px) {


  .hero-banner {
    /* height: 350px; */
    /* reduce height */
    padding: 20px 20px;
    /* less horizontal padding */
    align-items: flex-start;
    /* start content from top */
    gap: 20px;
  }

  .banner-content {
    max-width: 100%;
    /* full width */
    margin-top: 40px;
    /* spacing from top */
  }

  .banner-content h1 {
    font-size: 1.8rem;
    /* smaller font */
    line-height: 1.2;
  }

  .banner-content p {
    font-size: 0.9rem;
    /* smaller paragraph */
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .banner-content .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    /* smaller button */
  }
}

/* Optional: For very small screens */
@media screen and (max-width: 480px) {
  .hero-banner {
    /* height: 300px; */
    padding: 20px 15px;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .banner-content p {
    font-size: 0.85rem;
  }

  .banner-content .btn {
    padding: 8px 16px;
  }
}

/* WhatsApp Floating Button (for whole page) */
.whatsapp-float {
  position: fixed;

  bottom: 20px;
  right: 20px;
  z-index: 999;

}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

.experience-sec {
  padding: 10px 80px;
}

.experience-sec>h2 {
  font-size: 35px;
  margin: 40px 0px;
  text-align: center;
}

.experience {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  gap: 50px;
}

.meet-your-guide {
  padding: 0px;
}

/* Image styling */
.experience-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.meet-your-guide-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Content */
.experience-content {
  max-width: 600px;
}

.experience-content h2 {
  font-size: 30px;
  color: #2d3e2f;
  margin-bottom: 20px;
}

.experience-content h3 {
  font-size: 20px;
  color: #2d3e2f;
  margin-bottom: 20px;
}

.experience-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .experience {
    flex-direction: column;
    text-align: center;
  }

  .experience-content {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {

  .experience-sec {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {

  .experience-sec {
    padding: 10px 20px;
  }
}

.why-choose-us {
  text-align: center;
  padding: 70px 20px;
  background: var(--primary-gradient);
}


.why-choose-us h2 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #111;
  margin-bottom: 60px;
}

/* Grid layout */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  justify-items: center;
  align-items: stretch;
}

/* Cards */
.feature-card {
  border: 1px solid #b7e4b0;
  border-radius: 14px;
  padding: 50px 20px;
  width: 100%;
  max-width: 270px;
  min-height: 250px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
}

/* Icon */
.feature-card img {
  width: 65px;
  height: 65px;
  margin-bottom: 25px;
}

/* Text */
.feature-card p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1d3b25;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
  }

  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .feature-card {
    min-height: 230px;
  }

  .feature-card p {
    font-size: 1.1rem;
  }
}

/* Section
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f8fafc;
  color: #222;
  line-height: 1.5;
} */

.retreats-section {
  /* max-width: 1100px; */
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.retreats-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #1a1a1a;
}

/* Tabs */
.tabs {
  display: inline-flex;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

.tab {
  padding: 10px 25px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.tab.active {
  background: #1f7a4d;
  color: #fff;
}

/* Cards layout */
.cards-container {
  display: grid;
  grid-template-columns: auto auto;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 25px;
}

.retreat-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 500px;
  transition: all 0.3s ease;
}

.retreat-card-half-day {
  width: 500px;
}



.retreat-card:hover {
  transform: translateY(-5px);
}

.retreat-card img {
  width: 100%;

  height: auto;

  object-fit: cover;
}

.retreat-card-half-day img {
  width: 100%;
}

.card-body {
  display: flex;
  text-align: left;
  padding: 18px 20px;
  flex-direction: column;
  gap: 10px;
}

.card-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;

}

.card-body h3 {
  font-size: 18px;
  color: #111;
  margin-bottom: 6px;
}

.card-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.location {
  color: #2e7d32;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Button */
.btn {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-top: 8px;
  border: 2px solid #2e7d32;
  cursor: pointer;
}


.btn:hover {
  background: #1f7a4d;
}

/* View More Button inside Card */
.view-more-btn {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  text-decoration: none;
  padding: 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-top: 8px;
  border: none;

  outline: none;

  box-shadow: none;

  cursor: pointer;

}

.view-more-btn:hover {
  background: #256b29;
}

.half-crd-btn-bx {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
}


/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  position: relative;
  text-align: left;
  overflow-y: auto;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.close {
  position: absolute;
  right: 13px;
  top: 0px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.modal h2 {
  margin-bottom: 15px;
  color: #2e7d32;
}

.modal p {
  margin-bottom: 10px;
  color: #555;
}

.modal .btn {
  margin-top: 15px;
}

.retreats-section {
  /* background: var(--primary-gradient); */
  padding: 80px 20px;
  text-align: center;
}

/* Title */
.retreats-section h2 {
  font-size: 1.9rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 50px;
}

/* Gallery */
.retreats-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* Each row */
.row {
  display: flex;
  justify-content: center;
  gap: 25px;
  width: 100%;
  max-width: 1100px;
}

/* Image styles */
.row img {
  border-radius: 16px;
  object-fit: cover;
  height: 230px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.row img:hover {
  transform: scale(1.03);
}

/* Image sizes */
.wide {
  flex: 1.8;
}

.small {
  flex: 1;
}

@media (max-width: 480px) {
  .retreats-section {
    padding: 50px 15px;
  }

  .retreats-section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .row img {
    width: 100%;
    height: 180px;
  }
}

.retreat-banner {
  position: relative;
  width: 1070px;
  height: 480px;
  border-radius: 15px;
  overflow: hidden;
  margin: 60px auto 40px;
  background: url("/assets/girl1.png") center/cover no-repeat;
  /
}

/* Gradient Overlay */
.retreat-banner::before {
  content: "";
  position: absolute;
  left: 0;
  /* top: 152; */
  top: 152px;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  z-index: 1;
}

/* Text Area */
.retreat-banner .banner-content {
  position: absolute;
  left: 40px;
  top: 59%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 380px;
}

.retreat-banner .banner-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.retreat-banner .banner-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Button */
.retreat-banner .btn {
  background-color: #0f3b2e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.retreat-banner .btn:hover {
  background-color: #145a32;
}

/* Mobile Optimization for Retreat Banner */
@media screen and (max-width: 768px) {

  .retreat-card-half-day {

    max-width: 300px;
  }

  .cards-container {
    grid-template-columns: auto;
  }

  .retreat-card {
    max-width: 300px;
  }

  .retreat-banner {
    width: 90%;
    /* full width on mobile */
    height: 300px;
    /* reduce height */
    margin: 40px auto 30px;
    border-radius: 10px;
  }

  .retreat-banner::before {
    top: 0;
    /* gradient covers entire banner */
    height: 100%;
  }

  .retreat-banner .banner-content {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 90%;
  }

  .retreat-banner .banner-content h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .retreat-banner .banner-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .retreat-banner .btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* Very small screens */
@media screen and (max-width: 480px) {
  .retreat-banner {
    height: 250px;
  }

  .retreat-banner .banner-content h2 {
    font-size: 1.1rem;
  }

  .retreat-banner .banner-content p {
    font-size: 0.8rem;
  }

  .retreat-banner .btn {
    padding: 6px 14px;
  }
}



.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: var(--primary-gradient);
  font-family: "Segoe UI", sans-serif;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 40px;
}

.swiper {
  width: 100%;
  padding-bottom: 60px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  width: 100%;
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote {
  font-size: 50px;
  color: #39a846;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.profile h4 {
  font-size: 14px;
  color: #00a651;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}

.profile span {
  font-size: 13px;
  color: #222;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 90%;
    margin: 0 auto;
  }
}

.faq-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  font-family: "Segoe UI", sans-serif;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: #6cc24a;
  /* Green active */
  color: #fff;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  transition: 0.3s;
}

.faq-item.active .faq-question {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  background: #fff;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 25px;
  background: #6cc24a;
  color: #fff;
}

.arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(-135deg);
  border-color: #fff;
}

@media (max-width: 600px) {
  .faq-section h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 15px;
  }
}

/* Contact Section */
.contact {
  padding: 60px 80px;
  text-align: center;
  background: #f9f9f9;
  font-weight: 400;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #2d3e2f;
  font-weight: 400;
  /* Heading weight */
}

/* Form Row */
.contact-form .form-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  font-weight: 400;
}

.contact-form input {
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 400;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 250px;
  outline: none;
  transition: border 0.3s ease;
  border-color: #177d57;
}

.contact-form .btn {
  background: #177d57;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background: #145f45;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form input {
    width: 100%;
  }
}

/* Footer */
.footer {
  background: var(--primary-gradient);
  padding: 40px 80px 20px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: #fff;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-left img {
  max-height: 60px;
}

/* Center column */
.footer-center {
  text-align: center;
}

.footer-center .footer-heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  color: black;
}

.footer-center p {
  font-size: 15px;
  color: black;
  font-weight: 400;
}

/* Right column */
.footer-right {
  text-align: center;
}

.footer-right .footer-heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: black;
}

.footer-right a {
  display: inline-block;
  color: black;
  font-size: 20px;
  margin-top: 5px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-right a:hover {
  opacity: 0.8;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
  font-size: 14px;
  color: black;
}

.footer-center a {
  display: block;
  color: black;
  font-size: 15px;
  text-decoration: none;
  margin: 3px 0;
  transition: color 0.3s ease;
}

.footer-center a:hover {
  color: #fff;
}


.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-content h2 {
  text-align: center;
  margin-top: 0;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.popup-content button {
  width: 100%;
  background: #177d57;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-content button:hover {
  background: #177d57;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.3s ease;
}

.popup-content input,
.popup-content select {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.popup-content button {
  width: 100%;
  background: #177d57;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-content button:hover {
  background: #177d57;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.footer-center a {
  color: #1f7a4d;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-center a:hover {
  color: #1f7a4d;
  /* green hover effect */
}