html, body {
  height: 100%;
  background: #f2f7f4;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #ffffff;
  padding: 12px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 100%;
  padding: 0 3%;
  box-sizing: border-box;
  display: flex;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

nav h1 {
  font-size: 1.6em;
  color: #2b6e46;
  margin: 0;
}

/* Site brand / logo */
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo {
  height: 64px;
  width: auto;
  display: block;
}

@media (max-width: 700px) {
  .site-logo {
    height: 48px;
  }
}

.site-title {
  font-size: 1.8rem; /* match H2 size */
  color: #2b6e46;
  font-weight: 700;
  letter-spacing: 0.4px;
}

@media (max-width: 700px) {
  .site-title {
    font-size: 1.25rem;
  }
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav ul li a:hover {
  color: #2b6e46;
}

nav ul li a.active {
  color: #2b6e46;
  font-weight: 600;
}

nav ul.nav-list {
  display: flex;
  align-items: center;
}

/* Align the site brand contents (logo + title) vertically */
.site-brand {
  display: flex;
  align-items: center;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  position: relative; /* needed for absolute watermark positioning */
  background: #e7f2ec;
}

/* Hero watermark (logo behind heading) */
.hero-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 70%;
  max-height: 450px; /* constrain by height */
  width: auto;
  opacity: 0.225; /* 50% increase from 0.15 */
  z-index: 1; /* above animated background */
  pointer-events: none;
  object-fit: contain;
  background-color: transparent;
}
.hero > h2,
.hero > p {
  position: relative;
  z-index: 2; /* ensure text sits above watermark */
}

@media (max-width: 900px) {
  .hero-watermark {
    height: 60%;
    max-height: 360px;
  opacity: 0.18; /* 50% increase from 0.12 */
  }
}

@media (max-width: 480px) {
  .hero-watermark {
    height: 40%;
    max-height: 220px;
  /* Exact 50% increase applied to previous 0.08 -> 0.12 */
  opacity: 0.12; /* 50% increase from 0.08 */
  }
}

.hero h2 {
  font-size: 2.2em;
  color: #2b6e46;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 10px auto;
}

/* About Section */
section {
  padding: 60px 20px;
}

section h2 {
  text-align: center;
  color: #2b6e46;
  font-size: 1.8em;
  margin-bottom: 30px;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.about {
  background: #fff; /* ensure About is white */
}

.about img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #2b6e46;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about p {
  max-width: 800px;
  font-size: 1.05em;
}

/* Experience Section */
.experience {
  background-color: #f2f7f4; /* light green */
  text-align: center;
  padding: 70px 20px;
}

.experience .exp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
}

.experience .exp-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.experience .exp-card h3 {
  color: #2b6e46;
  margin-bottom: 10px;
}

/* Services */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.service {
  background: linear-gradient(135deg, #e7f2ec 60%, #f9f9f9 100%);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(44,110,70,0.13), 0 2px 8px rgba(44,110,70,0.09);
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 340px;
  justify-content: flex-start;
  position: relative;
  border: none;
  padding: 32px 22px 24px 22px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.service:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(44,110,70,0.18), 0 4px 16px rgba(44,110,70,0.13);
}
.service h3 {
  margin-top: 0;
  margin-bottom: 18px;
  text-align: center;
  width: 100%;
  font-weight: 700;
  color: #2b6e46;
  font-size: 1.25em;
  letter-spacing: 0.5px;
  background: none;
}
.service .service-icon {
  font-size: 2.5em;
  margin-bottom: 12px;
  color: #2b6e46;
  opacity: 0.85;
}
.service p {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  width: 100%;
  font-size: 1em;
  color: #444;
  background: none;
}
.service-pricing {
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18em;
  font-weight: bold;
  color: #2b6e46;
  background: none;
  border: none;
  padding-top: 0;
}

/* Gallery */
.gallery {
  background-color: #fff; /* gallery: white to continue alternation */
  text-align: center;
  padding: 60px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: 30px auto;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Futuristic Gallery slider styles */
.gallery-slider {
  position: relative;
  max-width: 90%;
  width: 100%;
  height: 500px;
  margin: 30px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e7f2ec 60%, #f2f7f4 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44, 110, 70, 0.08);
  padding: 30px 0 50px 0;
}

.gallery-slide {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
  width: 85%;
  height: 95%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(44, 110, 70, 0.13);
  z-index: 1;
  filter: brightness(0.98) saturate(1.1);
}
.gallery-img.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 110, 70, 0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.8em;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(44, 110, 70, 0.15);
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-btn.left {
  left: 20px;
}
.gallery-btn.right {
  right: 20px;
}
.gallery-btn:hover {
  background: #2b6e46;
  box-shadow: 0 4px 16px rgba(44, 110, 70, 0.22);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
}

.gallery-dots .dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #cbe7d6;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 1px 4px rgba(44, 110, 70, 0.08);
}
.gallery-dots .dot.active {
  background: #2b6e46;
  transform: scale(1.18);
  box-shadow: 0 2px 8px rgba(44, 110, 70, 0.18);
}

/* Testimonials */
.testimonials {
  background-color: #f2f7f4; /* testimonials: light green */
  padding: 60px 20px;
}

.testimonial {
  max-width: 700px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
}

/* Contact */
.contact {
  background: #fff; /* ensure contact section is white */
}
.contact-form {
  max-width: 550px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8faf8 100%);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 110, 70, 0.08);
  border: 1px solid #e8f0ec;
}

.contact-form input, 
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 14px;
  margin: 0 0 18px 0;
  border: 1.5px solid silver;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #fafbfa;
  color: #333;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9d9d9d;
}

.contact-form input:focus, 
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #2b6e46;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(43, 110, 70, 0.1);
  transform: translateY(-2px);
}

.phone-input-container {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.phone-input-container select {
  width: 140px;
  flex-shrink: 0;
  margin: 0;
  padding: 10px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232b6e46' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: #fafbfa;
  padding-right: 36px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 1.5px solid silver;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  color: #333;
}

.phone-input-container select:hover {
  border-color: #2b6e46;
}

.phone-input-container select:focus {
  outline: none;
  border-color: #2b6e46;
  box-shadow: 0 0 0 3px rgba(43, 110, 70, 0.1);
  transform: translateY(-2px);
}

.phone-input-container input {
  flex: 1;
  margin: 0;
  min-width: 0;
}

/* Searchable Country Dropdown */
.country-search-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 140px;
}

.country-search-input {
  width: 100%;
  padding: 10px 14px;
  margin: 0;
  border: 1.5px solid silver;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background-color: #fafbfa;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.country-search-input:focus {
  outline: none;
  border-color: #2b6e46;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(43, 110, 70, 0.1);
  transform: translateY(-2px);
}

.country-search-input::placeholder {
  color: #9d9d9d;
}

.country-selected {
  position: absolute;
  top: 10px;
  left: 14px;
  font-size: 15px;
  color: #333;
  pointer-events: none;
  display: none;
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.country-selected.visible {
  display: block;
}

.country-search-input.hidden {
  display: none;
}

.country-dropdown-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #e8f0ec;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(43, 110, 70, 0.1);
}

.country-dropdown-list.show {
  display: block;
}

.country-option {
  padding: 10px 14px;
  cursor: pointer;
  color: #333;
  font-size: 14px;
  font-family: inherit;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.country-option:last-child {
  border-bottom: none;
}

.country-option:hover {
  background-color: #e7f2ec;
  color: #2b6e46;
}

.country-option.disabled {
  color: #999;
  cursor: default;
  background-color: #f9f9f9;
}

.country-option.disabled:hover {
  background-color: #f9f9f9;
  color: #999;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}

.contact-form button {
  background: linear-gradient(135deg, #2b6e46 0%, #245d3b 100%);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: 600;
  margin: 8px auto 0;
  display: block;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(43, 110, 70, 0.25);
}

.contact-form button:hover {
  background: linear-gradient(135deg, #245d3b 0%, #1f4d32 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 110, 70, 0.35);
}

.contact-form button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-form {
    padding: 30px 20px;
    max-width: 100%;
    margin: 0 10px;
  }

  .phone-input-container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .phone-input-container select {
    width: 100%;
    padding: 10px 16px;
    padding-right: 40px;
  }

  .phone-input-container input {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 10px 14px;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .contact-form button {
    padding: 13px 30px;
    font-size: 1em;
    width: 100%;
    max-width: 300px;
  }
}

/* Loading Overlay Styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e8f0ec;
  border-top: 4px solid #2b6e46;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-container p {
  color: #2b6e46;
  font-size: 1.1em;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.3px;
}

footer {
  text-align: center;
  padding: 6px;
  background: #2b6e46;
  color: #fff;
  font-size: 0.9em;
}

main {
  flex: 1 0 auto;
}

/* Hamburger menu styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  padding: 10px;
}
.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: #2b6e46;
  position: relative;
  border-radius: 2px;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #2b6e46;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger::before {
  top: -9px;
}
.hamburger::after {
  top: 9px;
}

/* Responsive nav */
@media (max-width: 900px) {
  nav ul.nav-list {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: none;
    padding: 20px 0;
    z-index: 1001;
  }
  nav ul.nav-list.show {
    display: flex;
  }
  nav ul.nav-list li a {
    padding-left: 20px;
    line-height: 1;
  }
  .nav-toggle {
    display: block;
  }
  nav {
    position: relative;
  }
}

@media (max-width: 900px) {
  .gallery-slider {
    max-width: 95%;
    height: 400px;
    padding: 20px 0 40px 0;
  }
  .gallery-slide {
    height: 100%;
  }
  .gallery-img, .gallery-img.active {
    height: 90%;
    border-radius: 12px;
  }
  .gallery-btn {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
  }
  .gallery-btn.left {
    left: 15px;
  }
  .gallery-btn.right {
    right: 15px;
  }
  .gallery-dots {
    margin-top: 16px;
    bottom: 12px;
  }
  .gallery-dots .dot {
    width: 11px;
    height: 11px;
  }
}

@media (max-width: 768px) {
  .gallery-slider {
    max-width: 98vw;
    height: 350px;
    padding: 18px 0 38px 0;
  }
  .gallery-slide {
    height: 100%;
  }
  .gallery-img, .gallery-img.active {
    height: 88%;
    border-radius: 10px;
    width: 80%;
  }
  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 1.4em;
  }
  .gallery-btn.left {
    left: 10px;
  }
  .gallery-btn.right {
    right: 10px;
  }
  .gallery-dots {
    margin-top: 14px;
    bottom: 10px;
  }
  .gallery-dots .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 600px) {
  .gallery-slider {
    max-width: 98vw;
    height: 300px;
    padding: 15px 0 35px 0;
  }
  .gallery-slide {
    height: 100%;
  }
  .gallery-img, .gallery-img.active {
    height: 85%;
    border-radius: 8px;
    width: 78%;
  }
  .gallery-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2em;
  }
  .gallery-btn.left {
    left: 8px;
  }
  .gallery-btn.right {
    right: 8px;
  }
  .gallery-dots {
    margin-top: 12px;
    bottom: 8px;
  }
  .gallery-dots .dot {
    width: 9px;
    height: 9px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .gallery-slider {
    max-width: 98vw;
    height: 250px;
    padding: 12px 0 30px 0;
  }
  .gallery-img, .gallery-img.active {
    height: 82%;
    border-radius: 8px;
    width: 75%;
  }
  .gallery-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1em;
    opacity: 0.8;
  }
  .gallery-btn.left {
    left: 6px;
  }
  .gallery-btn.right {
    right: 6px;
  }
  .gallery-btn:active {
    opacity: 1;
  }
  .gallery-dots {
    margin-top: 10px;
    bottom: 6px;
  }
  .gallery-dots .dot {
    width: 8px;
    height: 8px;
    gap: 6px;
  }
}

@media (max-width: 700px) {
  .about {
    padding: 20px;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 60px 20px;
  text-align: center;
}
.reviews-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,110,70,0.09);
  width: 220px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.review-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 24px rgba(44,110,70,0.18);
}
.review-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.review-info {
  padding: 16px 10px;
  width: 100%;
  background: #e7f2ec;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.review-info strong {
  display: block;
  font-size: 1.1em;
  color: #2b6e46;
}
.review-info span {
  font-size: 0.95em;
  color: #555;
}

/* Popup styles */
.review-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44,110,70,0.18);
  align-items: center;
  justify-content: center;
}
.review-popup .popup-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44,110,70,0.18);
  padding: 32px 24px;
  max-width: 340px;
  text-align: center;
  position: relative;
}
.review-popup .close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2em;
  color: #2b6e46;
  cursor: pointer;
  font-weight: bold;
  z-index: 10; /* Ensure it's above video */
}
.popup-content img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 8px rgba(44,110,70,0.13);
  display: block;
}
.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2em;
  color: #2b6e46;
  cursor: pointer;
  font-weight: bold;
}
.popup-content h3 {
  margin: 0;
  color: #2b6e46;
}
.popup-content p {
  margin: 10px 0;
  color: #333;
  font-size: 1em;
}

/* Review Form Section */
.review-form-section {
  margin: 40px auto 0 auto;
  max-width: 600px;
  background: #f2f7f4;
  padding: 24px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,110,70,0.09);
}
.review-form-section h3 {
  margin-bottom: 18px;
  color: #2b6e46;
}
.review-form input,
.review-form textarea {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 7px;
  font-size: 1em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.review-form input::placeholder,
.review-form textarea::placeholder {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1em;
}
.review-form button {
  background-color: #2b6e46;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1em;
  margin-top: 10px;
}
.review-form button:hover {
  background-color: #245d3b;
}
.explore-btn {
  margin-top: 18px;
  background: linear-gradient(135deg, #f0f8f4 0%, #e8f5f0 100%);
  color: #2b6e46;
  border: 2px solid #2b6e46;
  border-radius: 25px;
  padding: 12px 32px;
  font-size: 0.95em;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(43, 110, 70, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.explore-btn:hover {
  background: linear-gradient(135deg, #2b6e46 0%, #3d8b5c 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(43, 110, 70, 0.15);
}

/* Login social buttons: simplified icon (no circular background), reduced height, vertical gap */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px; /* vertical gap between stacked buttons */
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px; /* reduced height */
  border-radius: 10px;
  width: 100%;
  background: #fff;
  color: #2b6e46;
  border: 2px solid #2b6e46;
  box-shadow: 0 6px 18px rgba(43,110,70,0.08);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(43,110,70,0.12);
}
.social-btn .btn-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 6px; /* small rounded rect, not a circle */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* remove white circle */
  border: none;
  color: inherit;
  box-shadow: none;
}
.social-btn .btn-icon svg { width:28px; height:28px; }

.google-btn, .facebook-btn { background:#fff; color:#2b6e46; border-color:#2b6e46; }

@media (max-width:700px) {
  .social-btn { padding: 8px 10px; gap:10px; font-size:0.98rem; }
  .social-btn .btn-icon { width:38px; height:38px; flex:0 0 38px; }
  .social-btn .btn-icon svg { width:22px; height:22px; }
}

/* Nature Animated Background */
.nature-animated-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e7f2ec 60%, #cbe7d6 100%);
}

.nature-bg {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.leaf {
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at 60% 40%, #2b6e46 70%, #cbe7d6 100%);
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  opacity: 0.7;
  animation: leafFloat 7s infinite linear;
}
.leaf1 { left: 10%; top: 20%; animation-delay: 0s; }
.leaf2 { left: 80%; top: 30%; animation-delay: 2s; }
.leaf3 { left: 30%; top: 70%; animation-delay: 4s; }

@keyframes leafFloat {
  0% { transform: translateY(0) rotate(-10deg);}
  50% { transform: translateY(30px) rotate(10deg);}
  100% { transform: translateY(0) rotate(-10deg);}
}

.cloud {
  position: absolute;
  width: 80px;
  height: 40px;
  background: #fff;
  border-radius: 40px;
  opacity: 0.5;
  animation: cloudMove 12s infinite linear;
}
.cloud1 { left: 20%; top: 10%; animation-delay: 0s; }
.cloud2 { left: 70%; top: 15%; animation-delay: 6s; }

@keyframes cloudMove {
  0% { transform: translateX(0);}
  100% { transform: translateX(60px);}
}

.sun {
  position: absolute;
  left: 85%; top: 8%;
  width: 60px; height: 60px;
  background: radial-gradient(circle at 60% 40%, #ffe066 80%, #fffbe6 100%);
  border-radius: 50%;
  box-shadow: 0 0 40px 10px #ffe06688;
  animation: sunPulse 4s infinite alternate;
  opacity: 0.8;
}

@keyframes sunPulse {
  0% { box-shadow: 0 0 40px 10px #ffe06688; }
  100% { box-shadow: 0 0 60px 20px #ffe066cc; }
}

/* Ensure hero content is above animation */
.hero > h2,
.hero > p {
  position: relative;
  z-index: 1;
}

/* Founder & Info Sections */
.founder-section,
.achievements-section,
.philosophy-section,
.vision-section {
  padding: 50px 20px;
  text-align: center;
}
.founder-section, .philosophy-section {
  background-color: #f2f7f4; /* light green sections (after removing Experience) */
}
.achievements-section, .vision-section {
  background: #fff; /* white sections */
}
.founder-section .info-block,
.achievements-section .info-block,
.philosophy-section .info-block,
.vision-section .info-block {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05em;
  color: #444;
  line-height: 1.7;
}
.founder-section img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #2b6e46;
  box-shadow: 0 6px 18px rgba(44,110,70,0.12);
}

@media (max-width: 700px) {
  .founder-section .info-block,
  .achievements-section .info-block,
  .philosophy-section .info-block,
  .vision-section .info-block {
    padding: 0 12px;
    font-size: 1em;
  }
}

/* Enforce alternating backgrounds across the homepage sections */
/* Enforce alternating backgrounds across the homepage sections (updated order) */
#about, .about {
  background: #fff !important; /* white */
}
#founder, .founder-section {
  background: #f2f7f4 !important; /* light green */
}
#achievements, .achievements-section {
  background: #fff !important; /* white */
}
#philosophy, .philosophy-section {
  background: #f2f7f4 !important; /* light green */
}
#vision, .vision-section {
  background: #fff !important; /* white */
}
#gallery, .gallery {
  background: #f2f7f4 !important; /* light green */
}
#testimonials, .testimonials {
  background: #fff !important; /* white */
}
#contact, .contact {
  background: #f2f7f4 !important; /* light green */
}

/* Admin dropdown: ensure no gap and allow hover/focus to keep it open */
.nav-list .nav-dropdown {
  position: relative; /* container for absolute dropdown */
}

.nav-list .nav-dropdown .dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 1px); /* overlap by 1px to avoid tiny gap when moving cursor */
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  z-index: 2000;
  margin: 0;            /* remove margin that may create a gap */
  padding: 6px 0;
  list-style: none;
  border-radius: 4px;
  overflow: hidden;
  pointer-events: auto;
  transition: opacity 120ms ease;
  opacity: 0;
  visibility: hidden;
}

/* Visible states (hover, keyboard focus, explicit "open" class) */
.nav-list .nav-dropdown:hover > .dropdown,
.nav-list .nav-dropdown:focus-within > .dropdown,
.nav-list .nav-dropdown.open > .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* keep link focusable */
.nav-list .nav-dropdown > .nav-link {
  cursor: pointer;
}

/* for touch devices still allow manual open via class */
@media (hover: none) {
  .nav-list .nav-dropdown .dropdown {
    display: none !important;
  }
}

/* User Dropdown Menu */
.user-menu {
  position: relative;
}

.user-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.user-dropdown-btn:hover {
  color: #2b6e46;
  background: transparent;
}

.user-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #2b6e46;
}

.user-name {
  font-weight: 600;
  color: #2b6e46;
  white-space: nowrap;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.user-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1000;
  border: 1px solid #e9ecef;
}

.user-dropdown:hover .user-dropdown-menu,
.user-dropdown.open .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #2b6e46;
}

.dropdown-item svg {
  flex-shrink: 0;
}

.dropdown-divider {
  height: 1px;
  background-color: #e9ecef;
  margin: 4px 0;
}

.logout-item:hover {
  background-color: #ffe6e6;
  color: #dc3545;
}

.btn-login {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: #333 !important;
  border: none;
  border-radius: 0;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-login:hover {
  color: #2b6e46 !important;
  background: transparent;
  transform: none;
  box-shadow: none;
}

/* Responsive User Dropdown */
@media (max-width: 900px) {
  .user-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    margin-top: 10px;
  }
  
  .user-menu {
    width: 100%;
  }
  
  .user-dropdown-btn {
    justify-content: center;
    width: 100%;
    padding: 12px;
  }
  
  .dropdown-item {
    justify-content: center;
    padding: 14px 16px;
  }
}