* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #fefefe;
  color: #003322;
  overflow-x: hidden;
}
.nav-premium {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 1.2rem 2rem;
  z-index: 10;
}
.nav-wrap {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #00703c; /* darker green */
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #004d26; /* darker green */
  text-decoration: none;
  position: relative;
  font-weight: 500;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00703c;
  transition: 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
/* Smaller Hamburger */
.hamburger {
  width: 30px;
  height: 22px;
  display: none; /* show on mobile only */
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3.5px;
  background: #004d26;
  border-radius: 2px;
  transition: all 0.35s ease;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50vw;
    max-width: 320px;
    background: #f6fff9cc;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -4px 0 30px rgba(0, 77, 38, 0.2);
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
  }

  .nav-links.active {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
  }

  .nav-links a {
    font-size: 1.3rem;
    color: #004d26;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    user-select: none;
    padding-bottom: 4px;
    transition: color 0.3s ease;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #00703c;
    border-radius: 2px;
    transition: width 0.3s ease;
  }

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

  .nav-links a:hover::after {
    width: 100%;
  }
}

/* Morph hamburger to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.hero-content p{
  transform: translateY(-60px);
}
.hero-premium {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background: radial-gradient(circle at center, #ffffff, #e9fff5);
  overflow: hidden;
}
.halo-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(0,112,60,0.1), transparent 70%);
  backdrop-filter: blur(40px);
  z-index: 0;
}
.rune-ring {
  position: absolute;
  width: 900px;
  height: 900px;
  background: conic-gradient(from 0deg, #00703c, #004d26, #00703c);
  border-radius: 50%;
  opacity: 0.05;
  animation: spin 40s linear infinite;
  z-index: 0;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.celestial-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  background: linear-gradient(to right, #00703c, #339966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  position: relative;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  user-select: none;
}

/* summon button */
.summon {
  background: #00703c;
  color: #e0f0e9;
  box-shadow: 0 0 20px #005822aa;
  border: none;
}

.summon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, rgba(255 255 255 / 0.25) 0%, rgba(255 255 255 / 0) 80%);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
  filter: blur(8px);
  border-radius: inherit;
  z-index: 1;
}

.summon:hover {
  background: #004d26;
  box-shadow: 0 0 30px #004d26cc;
}

.summon:hover::before {
  transform: rotate(25deg) translateX(100%);
}

.summon:active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255 255 255 / 0.35) 0%, transparent 80%);
  border-radius: 100%;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleGlow 0.6s ease forwards;
  pointer-events: none;
  z-index: 2;
}

/* ghost button */
.ghost {
  background: transparent;
  color: #00703c;
  border: 2px solid #00703c;
  position: relative;
  overflow: hidden;
}

.ghost:hover {
  background: #e3f0e6;
}

/* Ripple animation keyframes */
@keyframes rippleGlow {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  font-size: 2rem;
  color: #00703c;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #00703c;
  border-radius: 50%;
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(0) scale(1); opacity: 0.4; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}
.wolf-project-gallery {
  padding: 80px 20px;
  background: #fff;
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  animation: floatZoomGrid 6s ease-in-out infinite alternate;
}

/* Optional zoom/float effect */
@keyframes floatZoomGrid {
  0%   { transform: scale(1) translateY(0px); }
  50%  { transform: scale(1.03) translateY(-6px); }
  100% { transform: scale(1) translateY(0px); }
}

.gallery-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,128,0,0.2);
}


.about-us {
  max-width: 1200px;
  margin: 7rem auto 10rem auto;
  padding: 3rem 2rem;
  user-select: none;
  background: radial-gradient(circle at center, #f0fff6 0%, #daf5df 80%);
  border-radius: 32px;
  box-shadow:
    0 20px 40px rgba(0, 112, 60, 0.15),
    inset 0 0 80px rgba(0, 112, 60, 0.1);
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  color: #004d26;
}

.about-container {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 360px;
}

.about-text {
  flex: 1 1 400px;
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.6;
  max-width: 600px;
}

.about-text h2 {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #00703c;
  user-select: none;
  font-family: 'Montserrat', sans-serif;
}

.about-text h2 span {
  color: #004d26;
  font-weight: 900;
}

.about-text p {
  margin-bottom: 1.4rem;
}
  
.about-text .btn.summon {
  margin-top: 1rem;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  box-shadow: 0 0 30px #00703caa;
  transition: box-shadow 0.5s ease;
}

.about-text .btn.summon:hover {
  box-shadow: 0 0 50px #004d26cc;
}

.about-image {
  position: relative;
  flex: 1 1 360px;
  max-width: 360px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(0, 112, 60, 0.4),
    inset 0 0 20px rgba(0, 112, 60, 0.2);
}

.about-image img {
  display: block;
  width: 100%;
  border-radius: 32px;
  filter: drop-shadow(0 0 8px #00703caa);
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.07) rotate(1deg);
}

.rune-border {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 3px solid transparent;
  border-radius: 32px;
  background:
    linear-gradient(180deg, #00703c, #004d26) border-box,
    radial-gradient(circle at top left, #00ff88, #004d26) padding-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-text, .about-image {
    max-width: 100%;
    flex: none;
  }
  .about-text {
    margin-bottom: 3rem;
  }
}
.machines-section {
  max-width: 1200px;
  margin: 7rem auto 8rem auto;
  padding: 0 2rem;
  text-align: center;
  user-select: none;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: #00703c;
  margin-bottom: 3rem;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.machines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.machine-card {
  background: #f0fff6;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  box-shadow:
    0 10px 30px rgba(0, 112, 60, 0.1),
    inset 0 0 20px rgba(0, 112, 60, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.machine-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 50px rgba(0, 112, 60, 0.3),
    inset 0 0 35px rgba(0, 112, 60, 0.15);
  z-index: 1;
}

.machine-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 1.25rem;
}

.machine-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #004d26;
  margin-bottom: 0.75rem;
}

.machine-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #006635;
  line-height: 1.4;
}
.testimonials-section {
  max-width: 900px;
  margin: 7rem auto 8rem auto;
  padding: 0 1rem;
  text-align: center;
  user-select: none;
  font-family: 'Montserrat', sans-serif;
}

.section-title {
  font-weight: 800;
  font-size: 2.8rem;
  color: #00703c;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  user-select: none;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 3rem; /* space for buttons */
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0;
  margin: 0;
  list-style: none;
}

.testimonial-card {
  min-width: 100%;
  background: #f0fff6;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  box-shadow:
    0 10px 30px rgba(0, 112, 60, 0.1),
    inset 0 0 20px rgba(0, 112, 60, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: default;
  user-select: text;
}

.quote {
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: #004d26;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.client-name {
  font-weight: 700;
  font-size: 1rem;
  color: #00703c;
  user-select: none;
  text-align: right;
}

/* Navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00703c;
  border: none;
  color: #e0f0e9;
  font-size: 1.8rem;
  font-weight: 900;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px #00703caa;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.carousel-btn:hover {
  background: #004d26;
  box-shadow: 0 0 22px #004d26cc;
}

.prev-btn {
  left: 6px;
}

.next-btn {
  right: 6px;
}

/* Responsive */
@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .carousel-btn {
    font-size: 1.4rem;
    width: 32px;
    height: 32px;
  }
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  .quote {
    font-size: 1rem;
  }
  .client-name {
    font-size: 0.9rem;
  }
}
.faq-section {
  max-width: 900px;
  margin: 7rem auto 8rem auto;
  padding: 0 1rem;
  font-family: 'Montserrat', sans-serif;
  user-select: none;
  color: #004d26;
}

.faq-section .section-title {
  font-weight: 800;
  font-size: 2.8rem;
  color: #00703c;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.faq-container {
  border-radius: 24px;
  background: #f0fff6;
  box-shadow:
    0 10px 30px rgba(0, 112, 60, 0.1),
    inset 0 0 20px rgba(0, 112, 60, 0.05);
  padding: 2rem;
}

.faq-item + .faq-item {
  margin-top: 1.5rem;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 1.15rem;
  color: #00703c;
  text-align: left;
  cursor: pointer;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  position: relative;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #daf5df;
}

.faq-icon {
  font-size: 1.5rem;
  color: #004d26;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: #00703c;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: #004d26;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  max-height: 300px; /* large enough for content */
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 600px) {
  .faq-section .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
  .faq-answer {
    font-size: 0.95rem;
  }
}
.process-section {
  max-width: 900px;
  margin: 7rem auto 8rem auto;
  padding: 0 1rem;
  font-family: 'Montserrat', sans-serif;
  color: #004d26;
  user-select: none;
}

.process-section .section-title {
  font-weight: 800;
  font-size: 2.8rem;
  color: #00703c;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  user-select: none;
}

/* Timeline with gradient line and glow */
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-left: 3rem;
}

/* The vertical line with subtle green gradient glow */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 6px;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(180deg, #00703c, #004d26);
  box-shadow:
    0 0 20px 4px #00703c66,
    inset 0 0 15px 2px #00b55b88;
  z-index: 1;
}

/* Each step container */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
  cursor: default;
  padding: 1rem 1.5rem;
  border-radius: 18px;
  box-shadow:
    0 4px 12px rgba(0,112,60,0.1),
    inset 0 0 12px rgba(0,176,91,0.1);
  background: #e9f7ee;
}

/* Circle icon with glow */
.process-step::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00703c;
  box-shadow:
    0 0 12px #00b55b,
    inset 0 0 8px #004d26;
  z-index: 3;
}

/* Emoji icon styling with scale and subtle shadow */
.process-icon {
  font-size: 2.8rem;
  color: #004d26;
  user-select: none;
  margin-top: 2px;
  filter: drop-shadow(0 0 2px #00703c88);
  transition: transform 0.3s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 5px #00b55bcc);
}

/* Headings */
.process-content h3 {
  margin: 0 0 0.3rem 0;
  font-weight: 700;
  font-size: 1.5rem;
  color: #00703c;
}

/* Paragraph */
.process-content p {
  margin: 0;
  font-weight: 400;
  font-size: 1.1rem;
  color: #004d26cc;
  max-width: 520px;
  line-height: 1.5;
}

/* Animate visible */
.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 600px) {
  .process-timeline {
    padding-left: 2rem;
    gap: 3rem;
  }
  .process-step::before {
    left: -28px;
    width: 22px;
    height: 22px;
  }
  .process-icon {
    font-size: 2.2rem;
  }
  .process-content h3 {
    font-size: 1.25rem;
  }
  .process-content p {
    font-size: 1rem;
    max-width: 100%;
  }
}

.proof-of-magic-v2 {
  background: #ffffff;
  padding: 6rem 2rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #1e3d2f;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  font-weight: 600;
  color: #1e3d2f;
  letter-spacing: 1px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.stat-card {
  background: #f9fbf9;
  border-radius: 16px;
  padding: 3rem 2rem;
  width: 300px;
  box-shadow: 0 10px 40px rgba(30, 61, 47, 0.08);
  border: 1px solid #e3eee5;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(30, 61, 47, 0.15);
}

.icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.08), transparent 70%);
  border: 1px solid #cfe8d5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(30, 61, 47, 0.06);
  animation: pulseGlow 3s infinite ease-in-out;
 margin-left: -27px;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e3d2f;
}

.stat-card p {
  font-size: 1rem;
  letter-spacing: 0.6px;
  color: #2f4f3e;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
}


.projects-gallery {
  max-width: 1100px;
  margin: 6rem auto 8rem auto;
  padding: 0 1.5rem;
  font-family: 'Montserrat', sans-serif;
  color: #004d26;
  user-select: none;
  text-align: center;
}

.projects-gallery .section-title {
  font-weight: 800;
  font-size: 2.6rem;
  color: #00703c;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(0, 112, 60, 0.15),
    inset 0 0 25px rgba(0, 176, 91, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow:
    0 10px 40px rgba(0, 112, 60, 0.3),
    inset 0 0 35px rgba(0, 176, 91, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: filter 0.3s ease;
}

.gallery-item:hover img {
  filter: brightness(0.85);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.6rem 1rem;
  background: rgba(0, 112, 60, 0.8);
  color: #e0f0e9;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  user-select: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 650px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .gallery-item img {
    height: 140px;
  }
}
@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #004d26 0%, #00703c 100%);
  padding: 5rem 2rem;
  color: #e0f0e9;
  text-align: center;
  box-shadow: 0 0 60px #00b55b88 inset;
  user-select: none;
}

.cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 12px #00b55bcc;
}

.cta-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #b8decd;
}

.cta-btn {
  background: #00b55b;
  color: #004d26;
  font-weight: 700;
  padding: 1.2rem 3rem;
  font-size: 1.15rem;
  border: none;
  border-radius: 60px;
  box-shadow:
    0 0 20px #00b55bcc,
    0 0 40px #00b55bcc inset;
  cursor: pointer;
  transition: all 0.4s ease;
  user-select: none;
  animation: pulseGlow 3.5s infinite alternate;
}

.cta-btn:hover {
  background: #00703c;
  box-shadow:
    0 0 30px #00703ccc,
    0 0 60px #00703ccc inset;
  color: #e0f0e9;
}

@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 20px #00b55bcc,
      0 0 40px #00b55bcc inset;
  }
  100% {
    box-shadow:
      0 0 40px #00b55bff,
      0 0 80px #00b55bff inset;
  }
}

/* WHY CHOOSE US */
.why-choose-us {
  max-width: 900px;
  margin: 6rem auto 8rem auto;
  padding: 0 1.5rem;
  font-family: 'Montserrat', sans-serif;
  color: #004d26;
  user-select: none;
  text-align: center;
}

.why-choose-us .section-title {
  font-weight: 900;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  color: #00703c;
  text-transform: uppercase;
}

.reasons-grid {
  display: grid !important;
  grid-template-columns: 1fr !important; /* Force single column */
  gap: 2.4rem;
  max-width: 400px; /* optional: limit width for nice look */
  margin: 0 auto; /* center the column */
}


.reason-item {
  background: #e8f4e9;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow:
    0 0 20px #00b55b22,
    inset 0 0 25px #004d2677;
  transition: box-shadow 0.3s ease;
  cursor: default;
  user-select: none;
}

.reason-item:hover {
  box-shadow:
    0 0 40px #00b55b88,
    inset 0 0 35px #00703caa;
}

.reason-item .icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #00703c;
  user-select: none;
}

.reason-item h3 {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #004d26;
  user-select: none;
}

.reason-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #004d2666;
  user-select: text;
}

/* Responsive */
@media (max-width: 650px) {
  .cta-content h2 {
    font-size: 2.2rem;
  }
  .cta-content p {
    font-size: 1.1rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 1rem 2.5rem;
  }
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 400px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}
.magic-footer {
  background: #e9f6ee;
  color: #004d26;
  font-family: 'Montserrat', sans-serif;
  padding: 5rem 2rem 2rem;
  box-shadow: inset 0 10px 30px #c4e8d5;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #00703c;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #00b55b55;
}

.footer-column p {
  color: #004d26aa;
  font-size: 1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00703c;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.6rem;
}

.footer-column a {
  text-decoration: none;
  color: #004d26;
  transition: all 0.3s ease;
  position: relative;
}

.footer-column a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00b55b;
  bottom: -3px;
  left: 0;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #00703c;
}

.footer-column a:hover::after {
  width: 100%;
}

/* Divider Line */
.footer-divider {
  height: 1px;
  background: #c1dfcd;
  margin: 3rem auto 2rem;
  max-width: 90%;
}

/* Bottom Copyright */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #004d2666;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding: 0 1rem;
  }

  .footer-column {
    flex: unset;
    width: 100%;
    max-width: 400px;
  }

  .footer-logo {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .footer-column p,
  .footer-column li,
  .footer-column a {
    font-size: 0.95rem;
  }

  .footer-divider {
    margin: 2rem auto;
  }

  .footer-bottom {
    font-size: 0.85rem;
    padding: 1.2rem 1rem 0;
  }
}
.wild-gallery {
  position: relative;
  padding: 6rem 2rem;
  background: #f3fbf6;
  overflow: hidden;
  text-align: center;
}

.wild-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  color: #00703c;
  margin-bottom: 4rem;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.wild-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.wild-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: transform 0.4s ease;
}

.wild-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.wild-item:hover img {
  transform: scale(1.08);
}

.wild-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 112, 60, 0.9);
  color: #e0f0e9;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: center;
}

.wild-item:hover .wild-info {
  transform: translateY(0%);
}

.wild-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.wild-info p {
  font-size: 0.9rem;
  color: #ccf2e0;
}

/* Subtle background particles */
.particle-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.magic-video-section {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

.magic-video-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.2) contrast(1.05);
  z-index: 1;
  transition: all 0.5s ease;
}

/* Optional Zoom effect on scroll reveal */
.magic-video-bg video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #00000000, #000000aa);
  z-index: 2;
}

.magic-video-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #e0f0e9;
  padding: 2rem;
  animation: fadeUp 1.2s ease-out both;
}

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

.magic-video-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 20px #00703c66;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.magic-subtitle {
  font-size: 1.2rem;
  color: #bbffdd;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* Magical Glow Button */
.glow-play {
  font-size: 2.4rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #00703c, #004d26);
  color: #e3f9f0;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px #00703c, 0 0 40px #004d26 inset;
  transition: all 0.4s ease;
  animation: pulsePlay 2.5s infinite ease-in-out;
}

.glow-play:hover {
  box-shadow: 0 0 30px #00b55b, 0 0 50px #004d26 inset;
  transform: scale(1.05);
}

@keyframes pulsePlay {
  0%, 100% {
    box-shadow: 0 0 20px #00703c66, 0 0 40px #004d26aa inset;
  }
  50% {
    box-shadow: 0 0 30px #00ff88cc, 0 0 60px #004d26ee inset;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .magic-video-title {
    font-size: 2.2rem;
  }

  .magic-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .glow-play {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}

.spellbook-modern {
  background: #f8fdf9;
  padding: 6rem 2rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.section-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #00331a;
  margin-bottom: 0.75rem;
}

.spell-intro {
  font-size: 1.1rem;
  color: #004422cc;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-inline: auto;
}

.spell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.spellbox {
  background: #ffffff;
  border: 1px solid #d4f5de;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0, 112, 60, 0.06);
  transition: all 0.3s ease;
  text-align: left;
}

.spellbox h3 {
  color: #00703c;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.spellbox p {
  color: #00331a;
  font-size: 1rem;
  line-height: 1.5;
}

.spellbox:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(0, 112, 60, 0.12);
  border-color: #00b968;
}

/* Responsive */
@media (max-width: 768px) {
  .section-heading {
    font-size: 2.2rem;
  }
  .spellbox {
    padding: 1.5rem;
  }
}
.echoes-mist {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: #0b1e0f; /* very dark green base */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
  color: #e6f1e8; /* crisp white-green */
  font-family: 'Montserrat', sans-serif;
  z-index: 0;
}

.mist-background {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.07), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(0, 255, 136, 0.04), transparent 60%);
  animation: slowDrift 60s linear infinite;
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
}

@keyframes slowDrift {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.echoes-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.echoes-content h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 6px rgba(0, 255, 136, 0.5);
}

.echoes-content p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 520px;
  margin: auto;
  text-shadow: 0 0 4px rgba(0, 255, 136, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .echoes-mist {
    height: auto;
    padding: 4rem 1.5rem;
  }
  .echoes-content h2 {
    font-size: 2rem;
  }
  .echoes-content p {
    font-size: 1rem;
  }
}
.magic-words-banner {
  width: 100%;
  background: #004d26;
  height: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  margin: 4rem 0;
  box-shadow: 0 0 30px #00ff88aa;
}

.words-container {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: slideWords 20s linear infinite;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #00ff88;
  padding-left: 100%;
}

.words-container span {
  flex-shrink: 0;
  padding-right: 4rem;
}

@keyframes slideWords {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .magic-words-banner {
    height: 60px;
  }
  .words-container {
    font-size: 1.2rem;
  }
  .words-container span {
    padding-right: 2rem;
  }
}
.wolf-gallery {
  background: #fff;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wolf-slider {
  position: relative;
  width: 320px;
  height: 440px;
}

.wolf-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.85) translateY(20px);
  transition: all 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  filter: blur(2px) brightness(0.9);
}

.wolf-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.wolf-slide.active {
  opacity: 1;
  transform: scale(1.08) translateY(0px);
  z-index: 5;
  filter: none;
  box-shadow: 0 20px 50px rgba(0, 128, 0, 0.3);
  border: 2px solid #064e3b;
}

.wolf-slide .caption {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.3s ease;
  color: #064e3b;
}

.wolf-slide.active .caption {
  opacity: 1;
  transform: translateY(0);
}

.caption h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.caption p {
  font-size: 14px;
  color: #444;
}
.gallery-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #00703c; /* Dark green matching your theme */
  text-align: center;
  margin-bottom: 3rem;
 
  user-select: none;
}
.wolf-dna-section {
  padding: 100px 20px;
  background: #ffffff;
  color: #1c1c1c;
  font-family: 'Montserrat', sans-serif;
}

.wolf-dna-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.wolf-dna-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.5;
  color: #1e3d2f;
}

.wolf-dna-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.dna-item {
  background: #f3fdf6;
  border-radius: 16px;
  padding: 40px 30px;
  border: 2px solid #cceede;
  box-shadow: 0 8px 24px rgba(33, 82, 52, 0.08);
  transition: all 0.3s ease;
}

.dna-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(33, 82, 52, 0.12);
}

.dna-icon {
  font-size: 3rem;
  color: #2e7d4f;
  margin-bottom: 20px;
}

.dna-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1c4b32;
}

.dna-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3a3a3a;
}

/* Responsive */
@media (max-width: 600px) {
  .wolf-dna-title {
    font-size: 1.5rem;
  }

  .dna-item {
    padding: 30px 20px;
  }

  .dna-icon {
    font-size: 2.5rem;
  }
}

.wolf-no-bs-section {
  background: #0f1d17;
  padding: 100px 20px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.wolf-no-bs-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.no-bs-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #aef3c7;
}

.no-bs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-bs-list li {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.no-bs-list li:last-child {
  border-bottom: none;
  color: #4caf50;
}

.no-bs-list li:hover {
  color: #81f7b8;
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 600px) {
  .no-bs-title {
    font-size: 1.5rem;
  }

  .no-bs-list li {
    font-size: 1.1rem;
    padding: 14px 0;
  }
}
.floating-call-btn {
  position: fixed;
  bottom: -10px;
  left: 20px;
  background-color: #2e7d4f;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.floating-call-btn:hover {
  background-color: #256d45;
  transform: scale(1.05);
}

/* Mobile: hide text, show icon only */
.call-icon {
  display: none;
}

@media (max-width: 500px) {
  .call-text {
    display: none;
  }

  .call-icon {
    display: inline;
    font-size: 20px;
  }

  .floating-call-btn {
    padding: 20px;
    border-radius: 50%;
    font-size: 20px;
    width: 58px;
    height: 58px;
    justify-content: center;
  }
}





.project-checklist-section {
  background: linear-gradient(135deg, #eaf5f0, #ffffff);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checklist-container {
  max-width: 600px;
  text-align: center;
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid #d1e7dd;
}

.checklist-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e3d2f;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.checklist-items {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  font-size: 1.2rem;
  color: #2b6a4d;
  line-height: 2.2;
  font-weight: 500;
}

.checklist-footer {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e3d2f;
  background: #d1e7dd;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.material-card {
  position: relative;
  background: #f0f3f1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    inset 0 0 10px rgba(255, 255, 255, 0.8);
  padding: 70px 20px 40px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #e6f0e9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow:
    0 4px 8px rgba(30, 61, 47, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  animation: spin 10s linear infinite;
  transition: background 0.3s ease;
}

.material-content h3 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #1e3d2f;
}

.material-content p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  color: #3a5a44;
  margin: 0 auto;
  max-width: 230px;
}

.material-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.15),
    inset 0 0 15px rgba(255, 255, 255, 0.85);
}

.material-card:hover .icon-circle {
  background: #c1d6bc;
  box-shadow:
    0 6px 12px rgba(30, 61, 47, 0.5),
    inset 0 3px 6px rgba(255, 255, 255, 0.9);
}

.icon-circle svg {
  stroke: #1e3d2f;
  width: 28px;
  height: 28px;
}

@keyframes spin {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}
.material-protection {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
  color: #1e3d2f;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.03em;
}

.material-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.card {
  flex: 1 1 180px;
  max-width: 220px;
  background-color: #f7f9f8;
  border: 2px solid #2b6a4d;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 6px 14px rgb(43 106 77 / 0.12);
  text-align: center;
  transition: box-shadow 0.3s ease;
  cursor: default;
}

.card:hover {
  box-shadow: 0 12px 24px rgb(43 106 77 / 0.3);
}

.icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: #2b6a4d;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1e3d2f;
}

.card p {
  font-size: 1rem;
  color: #425d4e;
  line-height: 1.4;
}
/* Loader Styles */
.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #d1e7dd; /* light greenish background */
  border-top: 6px solid #2b6a4d; /* dark green highlight */
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 10px #2b6a4d88;
  margin: 0 auto; /* center horizontally */
  filter: drop-shadow(0 0 8px #2b6a4dcc);
}

/* Spin Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ⚡ Preloader Container */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f6fff8, #e9fdf1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* 🌌 Inner Layout */
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  position: relative;
}

/* 🟢 Glowing Core Orb */
.loader-core {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, #00ff88, #00703c);
  border-radius: 50%;
  animation: pulseOrb 2.4s infinite ease-in-out;
  box-shadow:
    0 0 25px #00ff8899,
    0 0 55px #00703c66 inset,
    0 0 80px #00ff8822;
}

@keyframes pulseOrb {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 25px #00ff8899, 0 0 55px #00703c66 inset;
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 45px #00ff88cc, 0 0 70px #005f3caa inset;
  }
}

/* 🔮 Rune Ring Around Orb */
.rune-ring {
  position: absolute;
  top: -40px;
  font-size: 1.2rem;
  color: #00703caa;
  animation: spinRunes 12s linear infinite;
  text-align: center;
  letter-spacing: 0.4em;
  white-space: nowrap;
  user-select: none;
}

@keyframes spinRunes {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 🪄 Text */
.loader-text {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #145c3d;
  opacity: 0.95;
  text-shadow: 0 0 8px #00ff8844;
}

.map-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c3f1d; /* deep elegant green */
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif; /* or whatever font you're using */
  letter-spacing: -0.5px;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
