 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #FDFBF7;
      color: #2C2B28;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

   /* Fullscreen background */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a6e1a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Center content */
.preloader-content {
  text-align: center;
}

/* === RING CONTAINER === */
.loader-ring {
  position: relative;
  width: 130px;
  height: 130px;
  margin: auto;
}

/* Spinning ring */
.loader-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top: 4px solid #D4AF37;   /* gold */
  border-right: 4px solid #D4AF37;
  animation: spin 1s linear infinite;
}

/* Soft glow ring (premium feel) */
.loader-ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

/* === ROUND LOGO === */
.preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%; /* makes it round */
  object-fit: cover;
  border: 3px solid #D4AF37;
  background: #fff;
}

/* Text */
.preloader-content p {
  color: #D4AF37;
  margin-top: 25px;
  letter-spacing: 2px;
  font-size: 18px;
  animation: fadeText 2s infinite;
}

/* Animations */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeText {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
    /* Global styles */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 5%;
    }
    section {
      padding: 80px 0;
    }
    @media (max-width: 768px) { section { padding: 60px 0; } }
    @media (max-width: 480px) { section { padding: 50px 0; } }

    h2 {
      font-size: 2.6rem;
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
      color: #2C5F2D;
      letter-spacing: -0.5px;
    }
    h2:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 80px;
      height: 4px;
      background: #D4AF37;
      border-radius: 4px;
    }
    @media (max-width: 768px) { h2 { font-size: 2rem; } }
    .btn {
      display: inline-block;
      background: #2C5F2D;
      color: white;
      padding: 12px 28px;
      border-radius: 60px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #2C5F2D;
      color: #2C5F2D;
    }
    .btn-outline:hover {
      background: #2C5F2D;
      color: white;
      transform: translateY(-3px);
    }
    .btn:hover {
      background: #1E3B2A;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
/* Sticky Nav */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(6, 114, 4, 0.97);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #F9E2A7;
  white-space: nowrap;
}

.logo span {
  color: #D4AF37;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #FFF8E7;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #D4AF37;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #F9E2A7;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: #125704;
  z-index: 2000;
  transition: 0.3s ease;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-sidebar.open {
  right: 0;
}

.mobile-sidebar a {
  color: #FFF;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.close-sidebar {
  background: none;
  border: none;
  color: #D4AF37;
  font-size: 1.8rem;
  align-self: flex-end;
  cursor: pointer;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
}

.sidebar-overlay.active {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}
   /* Hero Slider */
.hero {
  height: 85vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

/* Overlay for better text readability */
.slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 2rem 3rem;
  border-radius: 48px;
  color: white;
  max-width: 85%;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  font-weight: bold;
}

.slider-btn:hover {
  background: rgba(212, 175, 55, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Dots/Indicators */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #D4AF37;
  width: 30px;
  border-radius: 20px;
}

.dot:hover {
  background: #D4AF37;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 1.5rem 2rem;
    max-width: 90%;
  }
  
  .slider-btn {
    font-size: 1.25rem;
    padding: 0.5rem 0.9rem;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .slider-dots {
    bottom: 20px;
    gap: 8px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .dot.active {
    width: 24px;
  }
}
    /* Cards grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2rem;
    }
    .menu-card, .room-card, .event-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }
    .menu-card:hover, .room-card:hover { transform: translateY(-6px); }
    .img-placeholder {
      height: 190px;
      background-size: cover;
      background-position: center;
    }
    .card-content { padding: 1.3rem; }
    .price { font-weight: 800; color: #B5651E; font-size: 1.3rem; margin: 8px 0; }

    /* Filter Buttons */
    .filter-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
      justify-content: center;
    }
    .filter-btn {
      background: transparent;
      border: 2px solid #2C5F2D;
      color: #2C5F2D;
      padding: 8px 24px;
      border-radius: 40px;
      cursor: pointer;
      font-weight: 600;
    }
    .filter-btn.active, .filter-btn:hover { background: #2C5F2D; color: white; }

    /* Popup Modal (Order & Booking) */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.75);
      z-index: 3000;
      align-items: center;
      justify-content: center;
    }
    .modal.active {
      display: flex;
    }
    .modal-content {
      background: #fff;
      max-width: 500px;
      width: 90%;
      border-radius: 40px;
      padding: 2rem;
      position: relative;
      max-height: 85vh;
      overflow-y: auto;
    }
    .close-modal {
      position: absolute;
      right: 20px;
      top: 18px;
      font-size: 1.8rem;
      cursor: pointer;
      background: none;
      border: none;
    }
    .form-group { margin-bottom: 1.2rem; }
    input, select, textarea {
      width: 100%;
      padding: 12px 18px;
      border-radius: 60px;
      border: 1.5px solid #E2D9CE;
      font-family: inherit;
    }
    textarea { border-radius: 24px; resize: vertical; }
    .booking-form-title, .order-form-title { margin-bottom: 1rem; color: #2C5F2D; }

    /* Other sections */
    .about-grid, .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    @media (max-width: 800px) { .about-grid, .contact-grid { grid-template-columns: 1fr; } }
    .info-card {
      background: #F7F3ED;
      padding: 2rem;
      border-radius: 32px;
    }
    .services-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }
    .service-tag {
      background: white;
      padding: 8px 18px;
      border-radius: 40px;
      font-weight: 500;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
    }
    .gallery-img {
      height: 220px;
      background-size: cover;
      border-radius: 28px;
      transition: 0.3s;
    }
    footer {
      background: #1F2E1C;
      color: #E9E3D5;
      padding: 40px 0;
      text-align: center;
    }
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: #25D366;
      border-radius: 50%;
      width: 58px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99;
      cursor: pointer;
      box-shadow: 0 6px 14px rgba(0,0,0,0.2);
      transition: 0.2s;
    }
    .toast-msg {
      position: fixed;
      bottom: 100px;
      right: 30px;
      background: #1F2E1C;
      color: #D4AF37;
      padding: 12px 24px;
      border-radius: 50px;
      z-index: 999;
      opacity: 0;
      transition: 0.25s;
      font-weight: 500;
    }
    .scroll-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s ease;
    }
    .scroll-reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
    .order-now-btn {
      width: 100%;
      background: #D4AF37;
      color: #1F2E1C;
      border: none;
      padding: 12px;
      border-radius: 60px;
      font-weight: 700;
      margin-top: 12px;
      cursor: pointer;
    }
    .preloader-logo img {
    width: 80px;   /* adjust size */
    height: auto;
}
.slide-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== FOOTER BASE ===== */
footer {
  background: linear-gradient(135deg, #0a1a0a 0%, #0b1d0b 100%);
  color: #ccc;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.footer-area {
  padding-top: 60px;
  position: relative;
  z-index: 1;
}

/* ===== CONTAINER ===== */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== GRID LAYOUT ===== */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===== LOGO ===== */
.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  border-color: #D4AF37;
}

/* Brand name */
.footer-brand {
  margin-top: 15px;
}

.footer-brand h3 {
  color: #D4AF37;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
}

/* ===== TITLES ===== */
.footer-tittle h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-tittle h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s ease;
}

.footer-tittle:hover h4::after {
  width: 70px;
}

/* ===== LINKS ===== */
.footer-tittle ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-tittle ul li {
  margin-bottom: 12px;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.footer-tittle ul li:hover {
  transform: translateX(3px);
}

.footer-tittle ul li a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-tittle ul li a:hover {
  color: #D4AF37;
  padding-left: 5px;
}

/* ===== CONTACT ICONS ===== */
.footer-tittle ul li i {
  color: #D4AF37;
  margin-right: 12px;
  width: 20px;
  text-align: center;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.footer-tittle ul li:hover i {
  transform: scale(1.1);
}

.contact-info li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info li span {
  flex: 1;
}

/* ===== TEXT ===== */
.single-footer-caption p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #aaa;
}

/* Opening hours */
.opening-hours {
  margin-top: 15px;
}

.opening-hours p {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.opening-hours .day {
  color: #D4AF37;
}

/* ===== BOTTOM AREA ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* ===== COPYRIGHT ===== */
.footer-copy-right p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.footer-copy-right p a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copy-right p a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===== SOCIAL ===== */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social span {
  font-size: 14px;
  color: #aaa;
  margin-right: 5px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.footer-social a:hover {
  background: #D4AF37;
  color: #0a1a0a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ===== NEWSLETTER (Optional) ===== */
.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 30px 0 0 30px;
  font-size: 13px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #666;
}

.newsletter-form button {
  padding: 10px 18px;
  background: #D4AF37;
  border: none;
  color: #0a1a0a;
  font-weight: bold;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #e6c342;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-area {
    padding-top: 50px;
  }
}

/* Small Tablet / Large Mobile (600px - 767px) */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-tittle h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer-tittle ul li {
    font-size: 13px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Mobile (320px - 599px) */
@media (max-width: 599px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  
  .footer-area {
    padding-top: 40px;
  }
  
  .footer-logo img {
    width: 60px;
    height: 60px;
  }
  
  .footer-tittle h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-tittle h4 {
    text-align: center;
    display: block;
  }
  
  .footer-tittle ul li {
    text-align: center;
  }
  
  .footer-tittle ul li:hover {
    transform: translateX(0);
  }
  
  .footer-tittle ul li i {
    margin-right: 8px;
  }
  
  .contact-info li {
    justify-content: center;
  }
  
  .opening-hours p {
    justify-content: center;
    gap: 15px;
  }
  
  .single-footer-caption p {
    text-align: center;
  }
  
  .newsletter-form {
    max-width: 280px;
    margin: 15px auto 0;
  }
  
  .footer-copy-right p {
    font-size: 12px;
  }
  
  .footer-social span {
    font-size: 12px;
  }
  
  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .footer-container,
  .footer-bottom-content {
    padding: 0 40px;
  }
  
  .footer-grid {
    gap: 50px;
  }
}
/* Container */
.footer-tittle {
  margin-bottom: 30px;
}

/* Title */
.footer-tittle h4 {
  color: #D4AF37; /* gold */
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
}

/* Small underline accent */
.footer-tittle h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #D4AF37;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* List reset */
.footer-tittle ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items */
.footer-tittle ul li {
  margin-bottom: 12px;
}

/* Links */
.footer-tittle ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover effect (slide + color) */
.footer-tittle ul li a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

/* Optional arrow effect */
.footer-tittle ul li a::before {
  content: "›";
  position: absolute;
  left: -12px;
  opacity: 0;
  color: #D4AF37;
  transition: 0.3s;
}

/* Show arrow on hover */
.footer-tittle ul li a:hover::before {
  left: -5px;
  opacity: 1;
}
html {
  scroll-behavior: smooth;
}
/* Brand container */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo image */
.brand img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #D4AF37; /* gold ring */
}

/* Text */
.logo-text {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

/* Highlight "Gardens" */
.logo-text span {
  color: #D4AF37;
  font-weight: 700;
}
/* ===== ABOUT SECTION ===== */
#about {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9faf8 0%, #f0f2ec 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #2C5F2D, #D4AF37);
}

#about::after {
  content: '✦';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 80px;
  color: rgba(44, 95, 45, 0.03);
  pointer-events: none;
  font-family: serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Section Title */
#about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
  color: #1a3b1a;
  font-weight: 700;
}

#about h2::before {
  font-size: 2rem;
  margin-right: 12px;
  display: inline-block;
  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(10deg); }
}

#about h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #2C5F2D);
  border-radius: 3px;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Info Cards */
.info-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #2C5F2D);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
}

/* Card Titles */
.info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.info-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #D4AF37;
  border-radius: 2px;
}

/* Paragraphs */
.info-card p {
  color: #555;
  line-height: 1.7;
  margin: 15px 0;
  font-size: 1rem;
}

/* Services List (Tags) */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.service-tag {
  background: linear-gradient(135deg, #2C5F2D 0%, #1e451f 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: default;
}

.service-tag:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #D4AF37 0%, #b8960e 100%);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Services List (Bullet) */
.info-card ul {
  margin: 15px 0;
  padding: 0;
}

.info-card ul li {
  padding: 10px 0;
  color: #555;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(44, 95, 45, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card ul li:last-child {
  border-bottom: none;
}

.info-card ul li::before {
  content: '✓';
  color: #D4AF37;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
}

/* Strong text */
.info-card strong {
  color: #2C5F2D;
  font-weight: 600;
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1023px) {
  #about {
    padding: 60px 0;
  }
  
  #about h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .about-grid {
    gap: 25px;
  }
  
  .info-card {
    padding: 28px;
  }
  
  .info-card h3 {
    font-size: 1.4rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #about {
    padding: 50px 0;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  #about h2 {
    font-size: 1.8rem;
  }
  
  #about h2::before {
    font-size: 1.5rem;
  }
  
  .info-card {
    padding: 24px;
  }
  
  .info-card h3 {
    font-size: 1.3rem;
  }
  
  .info-card p,
  .info-card ul li {
    font-size: 0.9rem;
  }
  
  .service-tag {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
  
  .services-list {
    gap: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  #about h2 {
    font-size: 1.5rem;
  }
  
  .info-card {
    padding: 20px;
    border-radius: 20px;
  }
  
  .service-tag {
    padding: 5px 12px;
    font-size: 0.8rem;
  }
  
  .info-card ul li {
    padding: 8px 0;
  }
}

/* Desktop Large */
@media (min-width: 1200px) {
  .about-grid {
    gap: 40px;
  }
  
  .info-card {
    padding: 40px;
  }
}
.about-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  color: white;
}

.slide-text h2 {
  color: #D4AF37;
  font-size: 40px;
}
.slide-text h2 {
  font-size: 40px;
  color: #D4AF37;
}

.slide-text p {
  font-size: 18px;
  margin-top: 10px;
}
.vision-mission {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  padding: 100px 40px;
}

/* Better desktop container */
.vision-mission .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

/* Cards upgraded */
.vm-box {
  background: #fff;
  padding: 50px 40px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Hover = premium lift */
.vm-box:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Gold accent bar (cleaner) */
.vm-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #D4AF37, #f5d97b);
}

/* Titles */
.vm-box h2 {
  color: #0b1d0b;
  margin-bottom: 20px;
  font-size: 26px;
  letter-spacing: 1px;
}

/* Text */
.vm-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

/* Responsive fix */
@media (max-width: 900px) {
  .vision-mission .container {
    grid-template-columns: 1fr;
  }
}
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #1a8015;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: #25d366; /* change color on hover */
    color: #fff;
}
.map-container {
    width: 100%;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.close-sidebar {
    border-radius: 10px;
    padding: 8px 12px;
    border: none;
    background: #e3030a;
    color: rgb(224, 230, 225);
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
}

.close-sidebar:hover {
    background: #09a204;
    transform: scale(1.1);
}