* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: #0a1a0c;
  color: #eef5e6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* Canvas 3D Background */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}
canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.navbar a {
  text-decoration: none;
}

.hero-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(10, 31, 14, 0.6) 0%,
    rgba(2, 15, 5, 0.85) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* Navbar (unchanged, but spacing improved) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(18, 35, 20, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(150, 200, 120, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #d4fc79, #96e6a1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  background: none;
  color: #b3ffa7;
  height: 90px;
  margin-right: 6px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #f0f7ea;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.25s;
  position: relative;
}
.nav-links a:hover {
  color: #c7ffa2;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 40px;
  left: -20px;
  background: rgba(25, 45, 20, 0.95);
  backdrop-filter: blur(16px);
  min-width: 260px;
  border-radius: 24px;
  padding: 1rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(180, 230, 130, 0.3);
  z-index: 100;
  text-align: start;
  overflow-y: auto;
  max-height: 600px;
}
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: #111;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #ff6b35; /* your theme color */
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #ff8c5a;
}
.dropdown-menu li a {
  padding: 0.7rem 1.8rem;
  display: block;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 48px;
  }
}
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #e6ffdb;
  cursor: pointer;
}
@media (max-width: 991px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 105px;
    left: 0;
    width: 100%;
    background: rgba(12, 28, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-140%);
    transition: 0.4s;
    border-radius: 0 0 32px 32px;
    z-index: 999;
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    background: #1e3a1e;
    margin-top: 0.5rem;
    box-shadow: none;
    max-height: 400px;
  }
  .dropdown-menu.show-mobile {
    display: block;
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 5;
  pointer-events: auto;
  padding-top: 5rem;
}
.hero-content {
  max-width: 900px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 60px;
  margin: 0 1rem;
  margin-top: 50px;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #c6ff9e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}
.hero-content .tagline {
  font-size: 1.4rem;
  font-weight: 500;
  color: #e2ffcd;
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin: 1rem 0 1.8rem;
  font-weight: 400;
  opacity: 0.95;
}
.cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary,
.btn-secondary {
  padding: 0.9rem 2rem;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}
.btn-primary {
  background: #7cb342;
  color: #0f2a0c;
  border: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
  background: #9ccc65;
  transform: translateY(-3px);
}
.btn-secondary {
  background: rgba(255, 255, 210, 0.15);
  border: 1px solid #b6f081;
  color: #f0ffe6;
}
.btn-secondary:hover {
  background: rgba(150, 210, 100, 0.3);
  transform: translateY(-3px);
}

/* Banner Slider (Images Only) */
.banner-slider {
  width: 100%;
  height: 95vh;
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
  border-radius: 48px;
  box-shadow: 0 25px 45px -12px black;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: opacity;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 10;
}
.slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 210, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}
.slider-dot.active-dot {
  background: #caff96;
  transform: scale(1.4);
  box-shadow: 0 0 8px #b3ffa0;
}

/* Common Containers */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
section {
  padding: 5rem 0;
  position: relative;
}
.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.gradient-text {
  background: linear-gradient(120deg, #d4fc79, #b2e684);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

/* Products Grid - Image Focused (static HTML) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.product-card {
  background: rgba(30, 45, 28, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(150, 210, 110, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  background: rgba(45, 70, 38, 0.8);
  border-color: #a8e6a0;
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  transition: 0.4s;
}

.product-info {
  padding: 1.5rem;
}
.product-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.product-info p {
  opacity: 0.85;
  line-height: 1.4;
}

/* Features / Why Choose */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.feature-card {
  flex: 1 1 280px;
  background: white;
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 2rem 1.2rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(180, 230, 120, 0.3);
}
.feature-card i {
  font-size: 2.8rem;
  color: #377b2f;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.4rem;
  color: #377b2f;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #377b2f;
}
.about-section {
  padding: 80px 0;
}

/* Header */
.about-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.about-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-header p {
  color: #ffffff;
  font-size: 1.05rem;
}

/* Layout */
.about-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-image img {
  width: 600px;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  object-fit: contain;
}

/* Content */
.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Badges */
.about-badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-badges span {
  background: #f1f8f2;
  color: #2e7d32;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* Cards (Right Side Info) */
.about-card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.about-card h4 {
  margin-bottom: 8px;
  color: #2e7d32;
}

.about-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Hover */
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .about-row {
    flex-direction: column;
  }

  .about-row.reverse {
    flex-direction: column;
  }
}
/* Services list */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}
.service-item {
  background: rgba(30, 55, 28, 0.4);
  border-radius: 60px;
  padding: 0.8rem 1.2rem;
  text-align: center;
  font-weight: 500;
}

/* Badge row */
.spaces-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.badge-item {
  background: #2f462a;
  padding: 0.5rem 1.4rem;
  border-radius: 40px;
  font-size: 0.9rem;
}

/* CTA Banner */
.cta-banner {
  background-color: #377b2f;
  border-radius: 56px;
  margin: 3rem 0;
  padding: 3.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(180, 240, 100, 0.4);
}

/* Footer */
footer {
  background: #051007;
  border-radius: 48px 48px 0 0;
  padding: 3rem 2rem 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-col p,
.footer-col li {
  margin: 0.5rem 0;
}
.footer-col ul {
  list-style: none;
  padding-left: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  section {
    padding: 3rem 0;
  }
  .banner-slider {
    width: 100%;
    height: 31vh;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .trust-row {
    display: flex;
    width: 90%;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-image img {
    width: 340px;
    height: auto;
  }
}

/* Floating leaves (decorative) */
.floating-leaf {
  position: fixed;
  pointer-events: none;
  opacity: 0.4;
  animation: floatLeaf 12s infinite linear;
  z-index: 999;
}
@keyframes floatLeaf {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Additional spacing utilities */
.mb-2 {
  margin-bottom: 1rem;
}
.mt-3 {
  margin-top: 2rem;
}

.trust-strip {
  margin: 2rem 0;
}

.trust-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: white;
  border-radius: 40px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(150, 210, 110, 0.3);
  padding: 20px !important;
}

.trust-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.trust-item h3 {
  font-size: 2rem;
  color: #377b2f;
}

.trust-item p {
  opacity: 0.8;
  color: #377b2f;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-card {
  background: rgba(255, 255, 255);
  border-radius: 30px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(150, 210, 110, 0.3);
  transition: 0.3s;
}

.process-card:hover {
  transform: translateY(-8px);
}

.process-card h3 {
  font-size: 2rem;
  color: #377b2f;
}
.process-card p {
  color: #377b2f;
}

.gallery-grid {
  display: grid;
  padding: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
  background-color: rgba(255, 255, 255);
}

.gallery-grid img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  border-radius: 20px;
  transition: 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.gallery-card {
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  background: #377b2f;
  text-align: center;
  padding: 20px;
}

.gallery-info h3 {
  font-size: 28px;
  margin-bottom: 5px;
  font-weight: 600;
  color: white;
}

.gallery-info p {
  font-size: 14px;
  opacity: 0.85;
}
.footer-col a {
  text-decoration: none;
  color: inherit;
}
.footer-col p > i {
  margin-right: 8px;
}

.light-guide {
  padding: 80px 0;
  background: #f8fdf8;
}

/* Header */
.light-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.light-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #377b2f;
}

.light-header p {
  color: #377b2f;
}

/* Image */
.light-image {
  text-align: center;
  margin-bottom: 50px;
}

.light-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Cards */
.light-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.light-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.light-card h4 {
  color: #2e7d32;
  margin-bottom: 10px;
}

.light-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Hover */
.light-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .light-cards {
    grid-template-columns: 1fr;
  }
}

/* ==================================================================product pages css===================== */

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0c;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    sans-serif;
  color: #f0f0f0;
  line-height: 1.5;
  overflow-x: hidden;
}

/* smooth scroll & focus */
html {
  scroll-behavior: smooth;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #ffb3b3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

p {
  font-size: 1.05rem;
  color: #d1d5db;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* ---------- CONTAINERS ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 900px;
}

/* sections spacing */
.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(105deg, #e11d1d, #b91c1c);
  color: white;
  font-weight: 600;
  padding: 14px 38px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
  border: none;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(220, 38, 38, 0.5);
  background: linear-gradient(105deg, #f03e3e, #c53030);
}

/* ---------- HERO SECTION (BOLD, MODERN) ---------- */
.hero {
  height: 90vh;
  min-height: 620px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(202, 137, 40, 0.85), rgba(0, 0, 0, 0.7)),
    url("./img/indoor1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
}

.hero-content {
  max-width: 850px;
  padding: 30px 20px;
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.hero-content h1 {
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.3rem;
  color: #e2e8f0;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* ---------- GALLERY GRID (MODERN) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: 28px;
  transition: all 0.5s ease;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
  filter: brightness(0.95);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
  box-shadow: 0 25px 40px -12px rgba(220, 38, 38, 0.3);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 240px;
  }
}

/* ---------- SPLIT LAYOUT (TEXT + IMAGE) ---------- */
.split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.split-layout .text-side {
  flex: 1.2;
}

.split-layout .image-side {
  flex: 1;
}

.split-layout.reverse {
  flex-direction: row-reverse;
}

.split-layout img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 20px 35px -12px black;
  transition: transform 0.4s;
}

.split-layout img:hover {
  transform: scale(1.02);
}

@media (max-width: 992px) {
  .split-layout,
  .split-layout.reverse {
    flex-direction: column;
  }

  .split-layout .text-side,
  .split-layout .image-side {
    width: 100%;
  }
}

/* ---------- MODERN CARD LIST (range & use-cases) ---------- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin: 40px 0 20px;
}

.icon-card {
  background: rgba(20, 20, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 65, 65, 0.2);
  border-radius: 32px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.icon-card i {
  font-size: 2.2rem;
  color: #ff4d4d;
  margin-bottom: 18px;
  display: inline-block;
}

.icon-card p {
  margin: 0;
  font-weight: 500;
  font-size: 1.05rem;
  color: #f1f5f9;
}

.icon-card:hover {
  transform: translateY(-8px);
  background: rgba(30, 30, 45, 0.9);
  border-color: #ff4d4d;
  box-shadow: 0 28px 40px -12px rgba(220, 38, 38, 0.4);
}

/* two-column for why-choose */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 35px 0 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 20px;
  border-radius: 60px;
  backdrop-filter: blur(4px);
  transition: 0.2s;
}

.check-item i {
  color: #ff4d4d;
  font-size: 1.3rem;
  width: 28px;
}

.check-item span {
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 640px) {
  .check-grid {
    grid-template-columns: 1fr;
  }

  .icon-grid {
    grid-template-columns: 1fr;
  }
}

/* full width image */
.full-img {
  width: 100%;
  border-radius: 36px;
  overflow: hidden;
}

.full-img img {
  width: auto;
  height: 400px;
  margin: auto;
  display: block;
  border-radius: 36px;
  transition: transform 0.5s;
}

.full-img img:hover {
  transform: scale(1.01);
}

/* CTA Section (center) */
.cta-section {
  text-align: center;
  background: linear-gradient(145deg, #0c0c12, #08080c);
  border-radius: 48px;
  margin: 40px auto;
  padding: 70px 40px;
}

.cta-section .btn-primary {
  margin-top: 20px;
}

/* fade up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal animation (simple JS) */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* extra spacing & adjustments */
.mt-2 {
  margin-top: 16px;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff, #ffa3a3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

hr {
  border-color: rgba(255, 65, 65, 0.2);
  margin: 30px 0;
}


.visit-nursery {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: 'Inter', sans-serif;
}

.visit-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* CONTENT */
.visit-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

.visit-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 25px;
}

.visit-info div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #1e293b;
}

.visit-info i {
  color: #16a34a;
  margin-top: 3px;
}

/* BUTTON */
.visit-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background: #16a34a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.visit-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE */
.visit-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.visit-image img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  transition: 0.4s;
}

.visit-image:hover img {
  transform: scale(1.05);
}

.products-grid a{
  text-decoration: none;
  color: inherit;
}

/* MAP */
.visit-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.visit-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* OVERLAY */
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  opacity: 0;
  transition: 0.3s;
}

.visit-map:hover .map-overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .visit-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .visit-content h2 {
    font-size: 28px;
  }

  .visit-image img,
  .visit-map iframe {
    height: 280px;
  }
}