* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f4f1ee;
  padding: 15px 0;
  z-index: 999;
  transition: all 0.3s ease;
}

/* SCROLL EFFECT */
.navbar.scrolled {
  background: rgba(244, 241, 238, 0.7);
  backdrop-filter: blur(8px);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* LOGO */
.logo img {
  height: 40px;
}

/* NAV LINKS */
.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #2e5d47;
  font-weight: 500;
}

/* BUTTON */
.btn {
  background: #2e5d47;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== MOBILE MENU (TOP TO DOWN) ===== */
.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 20px;
  transition: top 0.4s ease;
  z-index: 1000;
  border-bottom: 1px solid #e3e0db;
}

/* ACTIVE STATE */
.mobile-menu.active {
  top: 0;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}



.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #1f2d2a;
  text-decoration: none;
  font-size: 16px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: 600;
}
.menu-header img {
  height: 30px;
}

.mobile-menu {
  backdrop-filter: blur(10px);
}

.mobile-btn {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}



.btn i {
  margin-right: 8px;
}




.hamburger i {
  font-size: 22px;
  color: #2e5d47;
}

#closeMenu i {
  font-size: 22px;
  cursor: pointer;
}


.btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links,
  .btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mobile-menu {
  transition: left 0.35s ease;
}
















/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  background: url("main.png") no-repeat center/cover;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
}

/* LIGHT WHITE/GREEN OVERLAY (LIKE YOUR SCREENSHOT) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 93, 71, 0.65); /* green overlay */
  mix-blend-mode: multiply;
}


.hero-overlay {
  background: rgba(46, 93, 71, 0.55);
  backdrop-filter: blur(2px);
}

/* CONTENT */
.hero-content {
  position: relative;
  max-width: 650px;
  z-index: 2;
}

/* SMALL TEXT */
.hero-sub {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* MAIN HEADING (PREMIUM FONT STYLE) */
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.1;
  margin: 20px 0;
  font-weight: 600;
}

/* DESCRIPTION */
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* BUTTON */
.hero-btn {
  background: #d4a64a;
  color: #1e3d2f;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}















/* SECTION */
.features {
  background: #f4f1ee;
  padding: 80px 20px;
}

/* GRID */
.features .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.feature-card {
  background: #f8f6f3;
  border: 1px solid #e5dfd8;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s ease;
}

/* HOVER (subtle premium effect) */
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ICON CIRCLE */
.icon {
  width: 70px;
  height: 70px;
  background: #e6e2dc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon i {
  font-size: 22px;
  color: #2e5d47;
}

/* TITLE (SERIF FONT LIKE SCREENSHOT) */
.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #1f3d2f;
  margin-bottom: 10px;
}

/* TEXT */
.feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #6b7d73;
}


.feature-card {
  backdrop-filter: blur(4px);
}



/* TABLET */
@media (max-width: 992px) {
  .features .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .features {
    padding: 50px 15px;
  }

  .features .container {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 30px 20px;
  }
}












/* SECTION */
.zen-care-area {
  background: #f4f1ee;
  padding: 100px 20px;
  text-align: center;
}

/* CONTAINER */
.zen-wrap {
  max-width: 1200px;
  margin: auto;
}

/* TOP TEXT */
.zen-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #6b7d73;
}

/* HEADING */
.zen-heading {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  color: #1f3d2f;
  margin: 10px 0;
}

/* DESC */
.zen-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #6b7d73;
  max-width: 650px;
  margin: 0 auto 50px;
}

/* GRID */
.zen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.zen-item {
  background: #f7f5f2;
  border: 1px solid #e4ded7;
  border-radius: 14px;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  transition: all 0.25s ease;
}

/* ICON */
.zen-icon {
  width: 48px;
  height: 48px;
  background: #e8e3dc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zen-icon i {
  color: #2e5d47;
  font-size: 18px;
}

/* TEXT */
.zen-item span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #1f3d2f;
}

/* 🔥 HOVER (SUBTLE LIKE SCREENSHOT) */
.zen-item:hover {
  background: #ffffff;
  border-color: #ddd6cf;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

/* BUTTON */
.zen-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  padding: 12px 28px;
  border: 1px solid #2e5d47;
  border-radius: 10px;
  color: #2e5d47;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.zen-btn:hover {
  background: #2e5d47;
  color: #fff;
}



/* TABLET */
@media (max-width: 992px) {
  .zen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .zen-heading {
    font-size: 28px;
  }

  .zen-grid {
    grid-template-columns: 1fr;
  }

  .zen-item {
    padding: 18px;
  }
}











/* SECTION */
.herbal-highlight {
  background: #2f5f45; /* exact dark green */
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

/* CONTAINER */
.herbal-wrap {
  max-width: 800px;
  margin: auto;
}

/* ICON */
.herbal-icon {
  font-size: 28px;
  color: #cfe5d7;
  margin-bottom: 20px;
}

/* TITLE */
.herbal-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* DESCRIPTION */
.herbal-desc {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #d6e5dc;
  line-height: 1.6;
}



/* MOBILE */
@media (max-width: 600px) {
  .herbal-highlight {
    padding: 70px 20px;
  }

  .herbal-title {
    font-size: 26px;
  }

  .herbal-desc {
    font-size: 15px;
  }

  .herbal-icon {
    font-size: 22px;
  }
}
















/* SECTION */
.client-voices {
  background: #f4f1ee;
  padding: 100px 20px;
  text-align: center;
}

/* CONTAINER */
.voices-wrap {
  max-width: 1200px;
  margin: auto;
}

/* TAG */
.voices-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #6b7d73;
}

/* TITLE */
.voices-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  color: #1f3d2f;
  margin: 10px 0 50px;
}

/* GRID */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.voice-card {
  background: #f8f6f3;
  border: 1px solid #e5dfd8;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  transition: 0.3s;
}

/* QUOTE ICON */
.quote-icon {
  font-size: 28px;
  color: #b7c7bd;
  margin-bottom: 15px;
}

/* TEXT */
.voice-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3f5d50;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* RATING */
.voice-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.voice-rating i {
  color: #d4a64a;
  font-size: 14px;
}

.voice-rating span {
  margin-left: 8px;
  color: #1f3d2f;
  font-weight: 500;
}

/* HOVER (SUBTLE LIKE SCREENSHOT) */
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}


@media (max-width: 600px) {
  .voices-title {
    font-size: 28px;
  }

  .voices-grid {
    grid-template-columns: 1fr;
  }

  .voice-card {
    padding: 20px;
  }
}













/* SECTION */
.heal-cta {
  background: #f4f1ee;
  padding: 100px 20px;
  text-align: center;
}

/* CONTAINER */
.heal-wrap {
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.heal-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  color: #1f3d2f;
  margin-bottom: 15px;
}

/* TEXT */
.heal-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #6b7d73;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* BUTTON */
.heal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2e5d47;
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

/* HOVER */
.heal-btn:hover {
  background: #244b38;
  transform: translateY(-2px);
}


/* MOBILE */
@media (max-width: 600px) {
  .heal-cta {
    padding: 70px 20px;
  }

  .heal-title {
    font-size: 26px;
  }

  .heal-text {
    font-size: 15px;
  }

  .heal-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}









/* FOOTER */
.green-footer {
  background: #2f5f45;
  color: #d6e5dc;
  padding: 70px 20px 20px;
}

/* CONTAINER */
.footer-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
}

/* BRAND */
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

/* TEXT */
.footer-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

/* TITLES */
.footer-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #d6e5dc;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* CONTACT */
.footer-contact p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #cfe5d7;
}

.footer-contact a{
  text-decoration: none;
  color: #cfe5d7;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
}


/* MOBILE */
@media (max-width: 600px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}






  .ayurveda-section {
      padding: 30px 20px;
    }

    .ayurveda-wrapper {
      max-width: 900px;
      margin: auto;
      text-align: center;
    }

    .ayurveda-tag {
      letter-spacing: 3px;
      font-size: 12px;
      color: #6b7c75;
      margin-bottom: 10px;
    }

    .ayurveda-heading {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      color: #1f2d2a;
      margin-bottom: 20px;
    }

    .ayurveda-subtext {
      color: #5f6f6a;
      max-width: 600px;
      margin: auto;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .treatment-box {
      text-align: left;
    }

    .treatment-item {
      background: #ffffff;
      border-radius: 14px;
      margin-bottom: 16px;
      border: 1px solid #e3e0db;
      overflow: hidden;
      background-color: #D8D6D1;

    }

    .treatment-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

    .toggle-icon {
      width: 42px;
      height: 42px;
      background: #ebe7e2;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .toggle-icon i {
      font-size: 14px;
      color: #2f3e3a;
      transition: transform 0.3s ease;
    }

    .active-item .toggle-icon i {
      transform: rotate(180deg);
    }

    .treatment-body {
      display: none;
      padding: 0 20px 20px;
      color: #4f5f5a;
    }

    .active-item .treatment-body {
      display: block;
    }

    .treatment-grid {
      display: flex;
      gap: 40px;
      margin-top: 15px;
    }

    .treatment-grid ul {
      padding-left: 20px;
    }

    .treatment-grid li {
      margin-bottom: 8px;
    }

    .treatment-grid li::marker {
  color: #206a23; 
  font-size: 20px;
}




    .treatment-controls {
  text-align: right;
  margin-bottom: 15px;
}

.treatment-controls button {
  padding: 8px 14px;
  margin-left: 10px;
  border: none;
  border-radius: 6px;
  background: #98b298;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
}

.treatment-controls button:hover {
  background: #39c024;
}

    /* Responsive */
    @media (max-width: 768px) {
      .ayurveda-heading {
        font-size: 28px;
      }

      .treatment-grid {
        flex-direction: column;
        gap: 10px;
      }
    }


















    .about-section {
  padding: 40px 20px;
}

/* Wrapper */
.about-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Tag */
.about-tag {
  letter-spacing: 3px;
  font-size: 12px;
  color: #6b7c75;
  margin-bottom: 10px;
}

/* Heading */
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #1f2d2a;
  margin-bottom: 15px;
}

/* Subtext */
.about-subtext {
  color: #5f6f6a;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* Card */
.about-card {
  background: #ffffff;
  border: 1px solid #e3e0db;
  border-radius: 16px;
  padding: 30px 35px;
  text-align: left;
}

/* Card title */
.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #1f2d2a;
}

/* Card text */
.about-card p {
  color: #4f5f5a;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {

  .about-heading {
    font-size: 28px;
  }

  .about-card {
    padding: 20px;
  }

}














/* Wrapper */
.why-wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

/* Small Cards */
.why-card {
  background: #ffffff;
  border: 1px solid #e3e0db;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
}

/* Icon circle */
.why-icon {
  width: 60px;
  height: 60px;
  background: #e9e5df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
}

.why-icon i {
  font-size: 20px;
  color: #2e5e4e;
}

/* Card Title */
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f2d2a;
}

/* Card Text */
.why-card p {
  color: #5f6f6a;
  line-height: 1.6;
  font-size: 14px;
}

/* BIG CARD */
.why-big-card {
  background: #ffffff;
  border: 1px solid #e3e0db;
  border-radius: 16px;
  padding: 35px 40px;
}

.why-big-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 15px;
  color: #1f2d2a;
}

.why-big-card p {
  color: #5f6f6a;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-big-card {
    padding: 25px;
  }

  .why-big-card h2 {
    font-size: 22px;
  }

}













/* Section */
.contact-section {
  padding: 40px 20px;
}

/* Wrapper */
.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Tag */
.contact-tag {
  letter-spacing: 3px;
  font-size: 12px;
  color: #6b7c75;
  margin-bottom: 10px;
}

/* Heading */
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #1f2d2a;
  margin-bottom: 15px;
}

/* Subtext */
.contact-subtext {
  color: #5f6f6a;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: stretch;
}

/* Card */
.contact-card {
  background: #ffffff;
  border: 1px solid #e3e0db;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
}

/* Title */
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 20px;
  color: #1f2d2a;
}

/* Contact Item */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

/* Icon */
.icon-box {
  width: 50px;
  height: 50px;
  background: #e9e5df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.icon-box i {
  color: #2e5e4e;
  font-size: 18px;
}

/* Text */
.contact-item p {
  color: #4f5f5a;
  margin: 0;
}

.contact-item a{
  text-decoration: none;
}

/* Map */
.map-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e3e0db;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {

  .contact-heading {
    font-size: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    min-height: 250px;
  }
}














.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}














.gallery-section {
  padding: 80px 20px;
  background: #f5f3ef;
}

.gallery-wrapper {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Tag */
.gallery-tag {
  letter-spacing: 3px;
  font-size: 12px;
  color: #6b7c75;
  margin-bottom: 10px;
}

/* Heading */
.gallery-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #1f2d2a;
  margin-bottom: 10px;
}

/* Subtext */
.gallery-subtext {
  color: #5f6f6a;
  margin-bottom: 40px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Image Card */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}

/* Hover Zoom */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {

  .gallery-heading {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}