/* ================= GLOBAL RESET ================= */
/* Removes default browser margin & padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BODY ================= */
body {
    font-family: Arial, sans-serif;
    background-color: #6ef2b63c;
    line-height: 1.6;
}

/* ================= HEADER ================= */

#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: transparent;
  transition: 0.4s ease;
  z-index: 999;
}

.header-wrap {
  max-width: auto;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Scroll Effect */
#header.header-scrolled {
  background: #040b4e9d;
  height: 70px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

#header.header-scrolled .brand-name a,
#header.header-scrolled .main-nav ul li a {
  color: #ffffff;
}

#header.header-scrolled .brand-name span {
  color: #1abc9c;
}

#header.header-scrolled .contact-btn {
  background: #01ac56;
  color: #fff !important;
}

/* ================= BRAND ================= */

.brand-name a {
  color: #02fafe;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
}

.brand-name span {
  color: #15ff00;
}

/* ================= NAVBAR ================= */

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
}

.main-nav ul li a {
  color: #00ffee;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  position: relative;
  transition: 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #01ac56;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #03ff20;
  transition: 0.3s;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 100%;
}

/* ================= AUTH BUTTONS ================= */

.auth-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

/* Login */
.login-btn {
  background: transparent;
  color: #01ac56;
  border: 2px solid #1abc9c;
}

.login-btn:hover {
  background: #fff;
}

/* Register */
.register-btn {
  background: transparent;
  color: #01ac56;
  border: 2px solid #1abc9c;
}

.register-btn:hover {
  background: #fff;
  color: #000;
}

/* Contact */
.contact-btn {
  background: #1abc9c;
  color: #000 !important;
  padding: 6px 16px;
  border-radius: 20px;
}

.contact-btn:hover {
  background: #fff;
}

/* ================= LOGOUT BUTTON ================= */

.logout-btn {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.logout-btn:hover {
  background: linear-gradient(135deg, #b71c1c, #7f0000);
  transform: scale(1.05);
}

.hide {
  display: none;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

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

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #16302b;
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    text-align: center;
    padding: 15px 0;
  }

  .main-nav ul li {
    padding: 10px 0;
  }

  .auth-btns {
    justify-content: center;
    margin-top: 10px;
  }
}

/* ================= ADMIN LOGIN BUTTON ================= */

.admin-login-btn {
  background: linear-gradient(135deg, #2f9fd3, #1cb7b2);
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.admin-login-btn:hover {
  background: linear-gradient(135deg, #00c853, #1b5e20);
  transform: scale(1.05);
  color: #000;
}

/* ================= ADMIN MODAL ================= */

.admin-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.admin-modal-box {
  background: #fff;
  width: 340px;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  animation: zoom .25s ease;
}

@keyframes zoom {
  from { transform: scale(.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.admin-modal-box h2 {
  margin-bottom: 15px;
}

.admin-modal-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.admin-modal-box button {
  width: 100%;
  background: #01ac56;
  border: none;
  padding: 10px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.admin-modal-box button:hover {
  background: #017d3e;
}


/* ================= HERO / HOME ================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh; /* almost full screen */
    background: url('../images/4.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* semi-dark overlay */
    backdrop-filter: blur(5px); /* adds blur effect to background */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-content .btn-cta {
    background-color: #013426;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hero-content .btn-cta:hover {
    background-color: #218838;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-content .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .hero-content .btn-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* ================= PRODUCTS SECTION ================= */

/* .products {
  padding: 60px 20px;
  background: #6a7975;
}

.products h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 35px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.product {
  background: #fff;
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #2e7d32;
}

.product button {
  margin-top: 10px;
  padding: 10px 18px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.product button:hover {
  background: #2e7d32;
} */

/* ===== Products Section ===== */
/* PRODUCTS SECTION */
/* =========================================================
   PRODUCTS SECTION
========================================================= */

.products-section {
  padding: 90px 8%;
  text-align: center;
  background: #f9fbff;
}

.products-section h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  font-weight: 800;
  color: #1f2937;
}

/* Product Grid */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* Individual Product Card */

.product {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

/* Hover Gradient Overlay */

.product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #013426, #6fe7a7);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

.product:hover::before {
  opacity: 0.08;
}


.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
/* Product Title */

.product h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #000000;
  position: relative;
  z-index: 1;
}

/* Product Price */

.product .price {
  font-size: 1.05rem;
  color: #047cf5;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* Add to Cart Button */

.product button {
  background: #01f8b6;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.product button:hover {
  background: #1e7e34;
  transform: translateY(-2px) scale(1.02);
}

/* Product Hover Effect */

.product:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

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

@media (max-width: 1024px) {
  .products-section {
    padding: 70px 6%;
  }
}

@media (max-width: 768px) {
  .products-section h2 {
    font-size: 2.3rem;
  }

  .product {
    padding: 28px 18px;
  }
}

@media (max-width: 480px) {
  .products-section h2 {
    font-size: 2rem;
  }

  .product-grid {
    gap: 20px;
  }

  .product h3 {
    font-size: 1.15rem;
  }

  .product .price {
    font-size: 1rem;
  }

  .product button {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}




/* =========================================================
   SERVICES SECTION
========================================================= */
.service-hero {
  min-height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  background: none;   /* BACKGROUND REMOVED */
}

/* Overlay Not Needed — Disable */

.service-overlay {
  display: none;
}

/* Glass Content Box */

.service-hero-content {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  padding: 25px 40px;
  border-radius: 16px;
  text-align: center;
  color: #1f2937;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  animation: fadeZoom 0.9s ease;
}

/* Text Styling */

.service-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-hero-content p {
  font-size: 1.05rem;
  color: #555;
}

/* Entry Animation */

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 768px) {
  .service-hero {
    min-height: 22vh;
  }

  .service-hero-content {
    padding: 22px 25px;
  }

  .service-hero-content h1 {
    font-size: 2.1rem;
  }

  .service-hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-hero-content h1 {
    font-size: 1.9rem;
  }
}


.services-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #f9fbff, #f2f6ff);
  text-align: center;
}

.services-section h2 {
  font-size: 2.8rem;
  margin-bottom: 60px;
  font-weight: 800;
  color: #1f2937;
}

/* Services Grid Layout */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}

/* Service Card */

.service-card {
  background: #ffffff;
  padding: 38px 26px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.45s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Hover Gradient Overlay */

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #28a745, #6fe7a7);
  opacity: 0;
  transition: 0.45s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.12;
}

/* Service Icon */

.service-card i {
  font-size: 44px;
  color: #013426;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* Service Title */

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1f2937;
  position: relative;
  z-index: 1;
}

/* Service Description */

.service-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Service Hover Effect */

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* =========================================================
   WHY CHOOSE US SECTION
========================================================= */

.why-us {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

.why-us h2 {
  font-size: 2.8rem;
  margin-bottom: 55px;
  font-weight: 800;
  color: #1f2937;
}

/* Why Grid */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
}

/* Why Card */

.why-card {
  background: #f8f9fc;
  padding: 35px 22px;
  border-radius: 18px;
  transition: all 0.45s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Why Icon */

.why-card i {
  font-size: 40px;
  color: #013426;
  margin-bottom: 14px;
}

/* Why Title */

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1f2937;
}

/* Why Text */

.why-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Why Hover Effect */

.why-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: linear-gradient(135deg, #28a745, #6fe7a7);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.why-card:hover i,
.why-card:hover h3,
.why-card:hover p {
  color: #ffffff;
}

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

@media (max-width: 1024px) {
  .services-section,
  .why-us {
    padding: 80px 6%;
  }
}

@media (max-width: 768px) {
  .services-section h2,
  .why-us h2 {
    font-size: 2.3rem;
  }

  .service-card,
  .why-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .services-section h2,
  .why-us h2 {
    font-size: 2rem;
  }

  .services-grid,
  .why-grid {
    gap: 22px;
  }
}


/* ================= ABOUT ================= */

.about-section {
  padding: 90px 8%;
  background: #f8f9fc;
  color: #1f2937;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Image Styling */
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Text Content Styling */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

/* Primary Button */
.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #013426;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1e7e34;
  transform: translateY(-2px) scale(1.02);
}

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

@media (max-width: 1024px) {
  .about-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 90%;
    margin-bottom: 20px;
  }
}


/* ================= FOOTER SECTION ================= */
.footer-section {
  width: 100%; /* full screen width */
  background: rgb(238, 243, 242); /* transparent frosted glass */
  backdrop-filter: blur(10px); /* frosted effect */
  color: #000; /* body text black */
  padding: 80px 20px 40px;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1400px;
  margin: auto;
}

/* ================= GRID LAYOUT ================= */
.footer-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr; /* left | middle | right */
  gap: 40px;
}


/* ================= LEFT COLUMN ================= */
.footer-left h3 span,
.footer-left h3 ,
.footer-left h4 {
  color: #013426; /* teal for brand name */
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  margin-bottom: 18px;
  text-transform: uppercase;
  position: relative;
  font-size: 20px;
}

.footer-left p {
  margin-bottom: 20px;
  color: #555; /* black body text */
  font-size: 15px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
}

/* Newsletter input/button */
.footer-newsletter input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.2);
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #000;
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter input:focus {
  border: 1px solid #1abc9c;
  background: rgba(255,255,255,0.1);
}

.footer-newsletter button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #000;
  color: #f0f1f1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  background: #ac1abc; /* accent color */
  color: #03ffc8;
  transform: translateY(-3px);
}

/* ================= MIDDLE COLUMN ================= */
.footer-middle h4 {
  color: #013426; /* teal for brand name */
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  margin-bottom: 18px;
  text-transform: uppercase;
  position: relative;
  font-size: 20px;
}

/* Useful Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #555; /* black body text */
  font-size: 15px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #00fff7; /* teal hover */
  padding-left: 6px;
  font-weight: 300;
  border-radius: 30px;
  background-color: #000000;
  border:hsl(from color h s l)
}

/* Contact Info */
.footer-contact-box .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #555;
}

.footer-contact-box .info-item i {
  margin-right: 10px;
  color: #000000; /* teal icons */
}

/* Social icons */
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #000000; /* accent color */
  color: #1abc9c;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(26,188,156,0.4);
}

.social-icons a:hover {
  background: #bc1ab9;
  color: white;
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 6px 15px rgba(26,188,156,0.5);
}

/* ================= RIGHT COLUMN ================= */
.footer-right {
  padding-left: 1px; /* add space on left */
}
.footer-right h3 {
  color: #013426; /* teal for brand name */
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  margin-bottom: 18px;
  text-transform: uppercase;
  position: relative;
  font-size: 20px;
}

.footer-right input,
.footer-right textarea {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.2);
  margin-bottom: 12px;
  background: rgba(255,255,255,0.05);
  color: #000;
  outline: none;
  transition: all 0.3s ease;
}

.footer-right input:focus,
.footer-right textarea:focus {
  border: 1px solid #1abc9c;
  background: rgba(255,255,255,0.1);
}

.footer-right button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 20px;
  background: #000000;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-right button:hover {
  background: #ac1abc;
  color: #00ffcc;
  transform: translateY(-3px);
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  background: transparent;
  box-sizing: border-box;
  text-align: center;
  padding-top: 30px;
  color: #535074;
  font-size: 15px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-item {
    justify-content: center;
  }

  .social-icons a {
    margin-right: 10px;
    margin-top: 10px;
  }
}


.social-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-float a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.social-float a:hover img {
  transform: scale(1.1);
}


.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 50px 5%;
  /* background: linear-gradient(135deg,#1cb50170,#0134266a); */
  text-align: center;
}

.stat {
  background: rgba(179, 219, 206, 0.179);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  padding: 25px 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.stat h2 {
  font-size: 2.8rem;
  margin-bottom: 5px;
  color: #034915;
}

.stat p {
  font-size: 1.1rem;
  color: #073707;
  letter-spacing: 0.5px;
}



/* .dark-btn {
  position: fixed;
  bottom: 90px;
  left: 20px;
  padding: 10px 14px;
  border-radius: 50%;
  border: none;
  background: #222;
  color: #fff;
  cursor: pointer;
  z-index: 999;
}

.dark-mode {
  background: #121212;
  color: #fff;
}

.dark-mode .service-card,
.dark-mode .why-card {
  background: #1e1e1e;
  color: #fff;
} */

/* =========================================================
   ANIMATIONS ONLY
========================================================= */

/* ===== Scroll Fade / Slide Up Animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Zoom-In Animation ===== */
.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease-out;
}

.zoom-in.show {
  opacity: 1;
  transform: scale(1);
}

/* ===== Hover Lift + Shadow (Cards) ===== */
.hover-lift {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ===== Floating Icons / Elements ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* ===== Button Ripple Effect ===== */
button {
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

button::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.3);
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: all 0.6s ease;
}

button:active::after {
  width: 200%;
  height: 200%;
  opacity: 1;
  transform: scale(1);
}

/* ===== Modal / Quick View Animation ===== */
.modal {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.4s ease;
}

.modal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Animated Counters ===== */
.counter {
  display: inline-block;
  font-weight: 700;
  transition: all 0.4s ease;
  color: #820496;
}

/* Optional: Fade-In Left / Right */
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}
