:root {
  --primary-green: #7FBF3F;
  --dark-green: #4E7C28;
  --leaf-green: #9AD14B;
  --sky-blue: #2FB7E3;
  --deep-blue: #1A6FA3;
  --dark: #111;
  --light: #ffffff;
  --soft-bg: #f6f9f4;
}


/* ================= HEADER ================= */
.nmg-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  z-index: 999;
}

/* ================= LOGO ================= */
.nmg-logo {
  height: 80px;
}

/* ================= TAG NEAR LOGO ================= */
.nav-tag-logo {
  height: 80px;
  object-fit: contain;
  animation: tagFloat 3s ease-in-out infinite;
}


/* MOBILE ADJUST */
@media (max-width: 575px) {
  .nav-tag-logo {
    height: 70px;
    
  }

  .nmg-logo{
    height: 60px;
  }
}

/* ================= NAVBAR ================= */
.nmg-navbar {
  padding: 14px 0;
}

/* ================= NAV LINKS ================= */
.nmg-nav-links .nav-link {
  position: relative;
  font-weight: 500;
  margin-left: 28px;
  color: var(--dark-green);
  transition: 0.3s ease;
}

/* UNDERLINE EFFECT */
.nmg-nav-links .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  border-radius: 30px;
  transition: 0.4s ease;
}

.nmg-nav-links .nav-link:hover::before,
.nmg-nav-links .nav-link.active::before {
  width: 100%;
}

.nmg-nav-links .nav-link:hover {
  color: var(--primary-green);
}

/* ================= CONTACT BUTTON ================= */
.contact-btn {
  padding: 8px 18px;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  color: #fff !important;
  margin-left: 35px;
}

.contact-btn::before {
  display: none;
}

/* ================= MOBILE TOGGLER ================= */
.nmg-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nmg-toggler span {
  width: 28px;
  height: 3px;
  background: var(--dark-green);
  border-radius: 30px;
}

/* ================= MOBILE DESIGN ================= */
@media (max-width: 991px) {

  .nmg-nav-links {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  }

  .nmg-nav-links .nav-link {
    margin: 15px 0;
    font-size: 1.05rem;
  }

  .contact-btn {
    margin-left: 0;
    display: inline-block;
    text-align: center;
  }
}

/* BODY OFFSET */
body {
  padding-top: 85px;
}



/* ================= HERO SECTION ================= */
.nmg-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* SLIDE BACKGROUND */
.hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #e9f6e4, #e3f3ff);
}

/* CONTENT */
.hero-content h1 {
  font-size: 3.3rem;
  font-family: 'Playfair Display', serif;
  color: var(--dark-green);
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

/* BUTTON */
.hero-btn {
  padding: 14px 36px;
  border-radius: 40px;
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.4s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-btn.outline {
  background: transparent;
  border: 2px solid var(--primary-green);
  color: var(--dark-green);
}

/* IMAGE */
.hero-img img {
  max-width: 70%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* CONTROLS */
.hero-control {
  width: 55px;
  height: 55px;
  background: #fff;
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* INDICATORS */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;

  background: var(--primary-green);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-img img {
    max-width: 60%;
  }
}

@media (max-width: 575px) {

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-btn {
    padding: 12px 28px;
  }
}


/* ================= ABOUT SECTION ================= */
.nmg-about-section {
  padding: 100px 0;
  background: linear-gradient(120deg, #ffffff, #f4f9f4);
}

/* TAG */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(127, 191, 63, 0.15);
  color: var(--dark-green);
  border-radius: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* TITLE */
.section-title {
  font-size: 2.6rem;
  font-family: 'Playfair Display', serif;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--primary-green);
}

/* TEXT */
.section-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 25px;
}

/* POINTS */
.about-points .point {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}

.about-points i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 40px;
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* ================= CARDS ================= */
.about-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.about-card:hover {
  transform: translateY(-8px);
}

.about-card i {
  font-size: 2.2rem;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.about-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 575px) {
  .nmg-about-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }
}


/* ================= PRICE SECTION ================= */
.nmg-price-section {
  padding: 100px 0;
  background: linear-gradient(120deg, #f4fbf2, #eef7ff);
}

/* SUB TEXT */
.section-subtext {
  color: #555;
  font-size: 1.05rem;
}

/* ================= PRICE CARD ================= */
.price-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 22px;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.45s ease;
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* TITLE */
.price-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-green);
}

/* PRICE */
.price {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
}

/* TAG */
.price-tag {
  font-size: 0.95rem;
  color: #777;
}

/* POPULAR CARD */
.price-card.popular {
  border: 2px solid var(--primary-green);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .price-card.popular {
    transform: none;
  }
}

@media (max-width: 575px) {
  .nmg-price-section {
    padding: 70px 0;
  }

  .price {
    font-size: 2.2rem;
  }
}


/* ================= TRUST SECTION ================= */
.nmg-trust-section {
  padding: 100px 0;
  background: #ffffff;
}

/* ================= TRUST CARD ================= */
.trust-card {
  background: #f9fbf8;
  padding: 40px 30px;
  border-radius: 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: 0.45s ease;
}

.trust-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.15);
}

/* ICON */
.trust-card i {
  font-size: 2.6rem;
  color: var(--primary-green);
  margin-bottom: 15px;
}

/* TITLE */
.trust-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-green);
}

/* TEXT */
.trust-card p {
  color: #555;
}

/* HIGHLIGHT CARD */
.trust-card.highlight {
  background: linear-gradient(120deg, #eaf7e6, #e8f5ff);
  border: 2px solid var(--primary-green);
}

/* ================= CTA ================= */
.trust-cta {
  margin-top: 70px;
  padding: 40px;
  border-radius: 25px;
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  color: #fff;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.trust-cta h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--dark-green);
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.4s;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 575px) {
  .nmg-trust-section {
    padding: 70px 0;
  }

  .trust-cta {
    padding: 30px 20px;
  }
}

/* ================= PARALLAX SECTION ================= */
.nmg-parallax {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url("../img/bg.jpg"); /* add your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* PARALLAX */
  overflow: hidden;
}

/* DARK OVERLAY */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
  z-index: 1;
}

/* CONTENT */
.nmg-parallax .container {
  position: relative;
  z-index: 2;
}

.nmg-parallax h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 15px;
}

.nmg-parallax p {
  font-size: 1.1rem;
  color: #eee;
  margin-bottom: 35px;
}

/* BUTTONS */
.parallax-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.parallax-btn {
  padding: 14px 36px;
  border-radius: 40px;
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
}

.parallax-btn.outline {
  background: transparent;
  border: 2px solid #fff;
}

.parallax-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

/* ================= MOBILE FIX ================= */
@media (max-width: 991px) {


  .nmg-parallax h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 575px) {
  .nmg-parallax {
    min-height: 65vh;
  }
}


.gallery-section {
  padding: 80px 0;
}

/* IMAGE CARD */
.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* HOVER EFFECT */
.gallery-item::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* REMOVE LIGHTBOX TEXT */
.glightbox-container .gslide-title,
.glightbox-container .gslide-desc {
  display: none !important;
}

/* RESPONSIVE */
@media (max-width: 575px) {
  .gallery-item img {
    height: 170px;
  }
}


/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(120deg, #f4fbf2, #eef7ff);
}

/* CARD */
.testimonial-card {
  max-width: 720px;
  margin: auto;
  background: #fff;
  padding: 45px 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* QUOTE ICON */
.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

/* TEXT */
.testimonial-card p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 25px;
}

/* NAME */
.testimonial-card h5 {
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--dark-green);
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #777;
}

/* CONTROLS */
.control-icon {
  width: 45px;
  height: 45px;
  background: #fff;
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}



/* RESPONSIVE */
@media (max-width: 575px) {
  .testimonial-section {
    padding: 70px 0;
  }

  .testimonial-card {
    padding: 35px 25px;
  }
}



/* ================= FOOTER ================= */
.super-footer {
  background: linear-gradient(120deg, #0f2e1d, #163f2a);
  color: #fff;
  padding: 70px 0 30px;
}

/* LOGO */
.footer-logo {
  height: 100px;
  margin-bottom: 15px;
  background-color: #ffffff;
}

/* ABOUT */
.footer-about p {
  font-size: 0.95rem;
  color: #d6e7dc;
  line-height: 1.7;
}

/* TITLE */
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #7fbf3f, #2fb7e3);
  display: block;
  margin-top: 8px;
  border-radius: 10px;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links a,
.footer-contact a {
  color: #d6e7dc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #7fbf3f;
  padding-left: 5px;
}

/* ICONS */
.footer-contact i {
  margin-right: 8px;
  color: #7fbf3f;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #cfe3d7;
}

.footer-bottom a {
  color: #7fbf3f;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 575px) {
  .super-footer {
    text-align: center;
  }

  .footer-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}



/* ================= ABOUT PARALLAX ================= */
.about-parallax {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  background-image: url("../img/bg2.jpg"); /* change image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* PARALLAX */
  overflow: hidden;
}

/* OVERLAY */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
}

/* CONTENT */
.about-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.about-header-content h1 {
  font-size: 3.2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.about-header-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 991px) {
  .about-parallax {
    background-attachment: scroll; /* iOS fix */
    height: 55vh;
  }

  .about-header-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 575px) {
  .about-header-content h1 {
    font-size: 2rem;
  }
}


/* ================= ABOUT CONTENT ================= */
.about-content-section {
  padding: 100px 0;
  background: #ffffff;
}

/* IMAGE */
.about-img-box {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.about-img-box:hover img {
  transform: scale(1.08);
}

/* TEXT */
.about-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 18px;
}

/* HIGHLIGHTS */
.about-highlights {
  margin-top: 30px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.highlight i {
  font-size: 1.8rem;
  color: var(--primary-green);
}

.highlight h6 {
  margin: 0;
  font-weight: 600;
  color: var(--dark-green);
}

.highlight p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-content-section {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .about-content-section {
    padding: 70px 0;
  }
}


/* ================= VISION & MISSION ================= */
.vision-mission-section {
  padding: 100px 0;
  background: linear-gradient(120deg, #f4fbf2, #eef7ff);
}

/* CARD */
.vm-card {
  height: 100%;
  padding: 45px 40px;
  border-radius: 28px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
  text-align: center;
  transition: 0.45s ease;
}

.vm-card:hover {
  transform: translateY(-10px);
}

/* ICON */
.vm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* TITLE */
.vm-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-green);
}

/* TEXT */
.vm-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 575px) {
  .vision-mission-section {
    padding: 70px 0;
  }

  .vm-card {
    padding: 35px 25px;
  }
}


/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 100px 0;
  background: #ffffff;
}

/* CARD */
.service-card {
  height: 100%;
  padding: 45px 35px;
  border-radius: 26px;
  background: #fff;
  text-align: center;
  box-shadow: 0 20px 55px rgba(0,0,0,0.1);
  transition: 0.45s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.18);
}

/* ICON */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* TITLE */
.service-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-green);
}

/* TEXT */
.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .services-section {
    padding: 70px 0;
  }

  .service-card {
    padding: 35px 25px;
  }
}


/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(120deg, #f4fbf2, #eef7ff);
}

/* CARD */
.contact-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 26px;
  height: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.contact-card h4 {
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--dark-green);
}

/* CONTACT ITEM */
.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-green);
}

.contact-item a {
  color: #444;
  text-decoration: none;
}

/* FORM */
.contact-card form input,
.contact-card form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
}

.contact-card form button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  color: #fff;
  font-weight: 500;
}

/* MAP */
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 575px) {
  .contact-section {
    padding: 70px 0;
  }
}


/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  animation: floatUpDown 2.5s ease-in-out infinite;
}

/* ICON */
.whatsapp-float i {
  line-height: 1;
}

/* TOOLTIP */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #111;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* FLOAT ANIMATION */
@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 575px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}


/* ================= SCROLL TO TOP ================= */
.scroll-top {
  position: fixed;
  bottom: 95px; /* above WhatsApp */
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(90deg, var(--primary-green), var(--sky-blue));
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.4s ease;
}

/* SHOW */
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */
.scroll-top:hover {
  transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 575px) {
  .scroll-top {
    width: 44px;
    height: 44px;
    bottom: 85px;
    right: 20px;
  }
}


/* ================= GPAY SECTION ================= */
.gpay-section {
  padding: 100px 0;
  background: linear-gradient(120deg, #f6fbff, #f4fbf2);
}

/* TEXT */
.gpay-text {
  font-size: 1.05rem;
  color: #444;
  margin: 18px 0 22px;
}

/* POINTS */
.gpay-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gpay-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #333;
}

.gpay-points i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

/* QR CARD */
.gpay-card {
  position: relative;
  display: inline-block;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  animation: gpayFloat 3s ease-in-out infinite;
}

.gpay-card img {
  max-width: 260px;
  width: 100%;
  border-radius: 18px;
}

/* SCAN TEXT */
.scan-text {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #1a73e8, #34a853);
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* FLOAT EFFECT */
@keyframes gpayFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 575px) {
  .gpay-section {
    padding: 70px 0;
  }

  .gpay-card img {
    max-width: 220px;
  }
}


/* ================= PRODUCT NAME OVERLAY ================= */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

/* NAME BOX */
.product-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.25)
  );
  color: #fff;
  text-align: center;
}

/* TAMIL NAME */
.product-name span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ENGLISH NAME */
.product-name small {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* HOVER EFFECT */
.gallery-item:hover .product-name {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.35)
  );
}

/* MOBILE */
@media (max-width: 575px) {
  .product-name span {
    font-size: 0.85rem;
  }

  .product-name small {
    font-size: 0.7rem;
  }
}

