/* Modern Vibrant ZSD Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Fix section scroll cutoff */
section {
  scroll-margin-top: 200px;
}

:root {
  /* ZSD Core Brand Colors - REFINE STEP 1: Defined Core Brand Colors */
  --primary-green: #00b14f; /* Main Green */
  --dark-green: #02461e; /* Darker Green for text/accents */
  --bright-yellow: #ffd60a; /* ZSD Tagline/Accent Color - Increased prominence */

  /* Accent Colors (Used sparingly for visual distinction) */
  --vibrant-orange: #ff6a13; /* For CTA buttons and featured pricing */
  --purple-accent: #7209b7;
  --blue-accent: #0096c7;

  /* Neutral/UI Colors */
  --light-bg: #f8f9fa;
  --card-bg: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* HEADER */
header {
  background: linear-gradient(
    135deg,
    /* Start with a wide light color (near-white) for the logo area */ #f8f9fa
      0%,
    #f8f9fa 15%,
    /* PUSHED: Full white stop extended to 15% */
      /* Transition to a light brand green */ var(--primary-green) 40%,
    /* PUSHED: Start of green transition moved to 40% */
      /* End with the darker brand green for depth across the rest of the bar */
      var(--dark-green) 100%
  );
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block; /* allows div inside */
}

.logo-section {
  cursor: pointer; /* shows it’s clickable */
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: transparent;
}

.logo-text h1 {
  /* REFINE STEP 3: Slightly larger logo text */
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(2, 2, 2);
}

.logo-text p {
  color: var(--vibrant-orange);
  font-style: italic;
  font-size: 1.5rem;
  margin-top: 2px;
}

/* NAVIGATION */
nav {
  display: flex;
  align-items: center;
  position: relative;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.navbar.active {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.navbar li a {
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.3rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600; /* Bolder font weight for menu links */
  font-size: 0.95rem;
  position: relative;
  background: transparent;
}
.flag-icon {
  width: 60px;
  height: auto;
  margin-left: 8px;
  vertical-align: middle;
}

.badge p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* REFINE STEP 4: Menu hover uses BRIGHT YELLOW, linking to the tagline color */
.navbar li a:hover {
  background: var(--bright-yellow);
  color: var(--dark-green); /* Text color changes for contrast */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 214, 10, 0.4); /* Shadow matches yellow */
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  /* REFINE STEP 5: Darker green for toggle background */
  background: rgba(2, 120, 54, 0.5);
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

/* REFINE STEP 5: Toggle hover uses bright yellow border */
.menu-toggle:hover {
  background: rgba(0, 70, 30, 0.7);
  border-color: var(--bright-yellow);
  transform: scale(1.05);
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* MAIN CONTENT */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.card {
  scroll-margin-top: 150px;
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 10px 40px var(--shadow);
  border: 1px solid rgba(0, 177, 79, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* REFINE STEP 6: Card side accent uses Green-Yellow (Core Brand Colors) */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary-green),
    var(--bright-yellow)
  );
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

h2 {
  font-size: 2.5rem;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* REFINE STEP 7: H2 underline uses all three vibrant colors in a controlled element */
h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--vibrant-orange),
    var(--bright-yellow),
    var(--primary-green)
  );
  border-radius: 2px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    var(--blue-accent) 100%
  );
  color: white;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  display: none;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
}

.hero h2 {
  color: var(--vibrant-orange);
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4px;
  /* FIX: Using the multi-color gradient background */
  background: linear-gradient(
    90deg,
    var(--vibrant-orange),
    var(--bright-yellow),
    var(--primary-green)
  );
  border-radius: 2px;

  /* Retaining the original hero positioning */
  left: 50%;
  transform: translateX(-50%);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--vibrant-orange);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 106, 19, 0.4);
}

.cta-button:hover {
  background: #ff8c42;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 106, 19, 0.6);
}

/* BADGES */
.badge-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.badge {
  flex: 1;
  min-width: 250px;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  border-left: 5px solid var(--primary-green);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}
.badge:hover {
  transform: translateX(10px);
}

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

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px var(--shadow);
}

/* REFINE STEP 8: Service card hover border uses Bright Yellow */
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--bright-yellow);
  box-shadow: 0 10px 30px rgba(255, 214, 10, 0.2);
}

/* REFINE STEP 8: Service icon color uses Primary Green */
.service-icon {
  font-size: 3rem;
  color: var(--primary-green);
  display: block;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--dark-green);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.price-item {
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  border: 3px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 5px 20px var(--shadow);
}

/* REFINE STEP 9: Price card hover border uses Primary Green */
.price-item:hover {
  border-color: var(--primary-green);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 177, 79, 0.25);
}

.price-item.featured {
  border-color: var(--vibrant-orange);
  background: linear-gradient(135deg, #fff5f0, #ffffff);
}

.price-item.accent {
  border-color: var(--purple-accent);
  background: linear-gradient(135deg, #f8f0ff, #ffffff);
}

.price-badge,
.premium-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--vibrant-orange);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(255, 106, 19, 0.4);
}

.premium-badge {
  background: var(--purple-accent);
}

.price-item h3 {
  color: var(--dark-green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.sub-title {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vibrant-orange);
  margin: 1rem 0;
}

.price-small {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--vibrant-orange);
  margin: 0.5rem 0;
}

.duration {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0.5rem 0;
}

.details {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* EXTRAS GRID */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.extra-item {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 15px;
  /* REFINE STEP 10: Extra item border uses Bright Yellow */
  border-left: 5px solid var(--bright-yellow);
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.extra-item:hover {
  transform: translateY(-5px);
}

.extra-item.premium {
  border-left-color: var(--purple-accent);
  background: linear-gradient(135deg, #f8f0ff, #ffffff);
  position: relative;
}

.extra-item h3 {
  color: var(--dark-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.charges-list {
  list-style: none;
  margin-top: 1rem;
}

.charges-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.charges-list li:last-child {
  border-bottom: none;
}

/* TERMS BOX */
.terms-box {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff8f0, #ffffff);
  border-radius: 15px;
  border-left: 5px solid var(--vibrant-orange);
  box-shadow: 0 5px 15px var(--shadow);
}

.terms-box h3 {
  color: var(--vibrant-orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.terms-box ul {
  list-style: none;
  margin-left: 0;
}

.terms-box li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid #ffe6d9;
}

.terms-box li:last-child {
  border-bottom: none;
}

.terms-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vibrant-orange);
  font-weight: bold;
  font-size: 1.2rem;
}

/* LOCATIONS GRID */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.location-card {
  padding: 2rem;
  background: linear-gradient(135deg, #f0f9ff, #ffffff);
  border-radius: 15px;
  border-left: 5px solid var(--blue-accent);
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: scale(1.05);
}

/* REFINE STEP 11: Location icon color uses Blue Accent */
.location-icon {
  font-size: 2.5rem;
  color: var(--blue-accent);
  display: block;
  margin-bottom: 1rem;
}

/* REFINE STEP 11: Location header uses Dark Green */
.location-card h3 {
  color: var(--dark-green);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.location-card p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  max-width: 350px;
}

.contact-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 177, 79, 0.2);
}

/* REFINE STEP 12: Contact icon color uses Primary Green */
.contact-icon {
  font-size: 3rem;
  color: var(--primary-green);
  display: block;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--dark-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-card p {
  color: var(--text-dark);
  margin: 0.5rem 0;
  font-weight: 500;
}

/* GALLERY GRID - FIXED VERSION */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 4px solid var(--primary-green);
}

.gallery-item p {
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-green);
  margin: 0;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: white;
  padding: 3rem 2rem;
  margin-top: 4rem;
  text-align: center;
}

.footer-content p {
  margin: 0.5rem 0;
  opacity: 0.9;
}
.footer-content a {
  color: #0066cc;
  text-decoration: none;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

.social-link {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 10px;
}

.social-link:last-child {
  margin-bottom: 0;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.social-link a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 600;
  transition: 0.2s ease;
}

.social-link a:hover {
  color: #004999;
}
.email-link {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 10px;
}

.email-link:last-child {
  margin-bottom: 0;
}

.email-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.email-link a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 600;
  transition: 0.2s ease;
}

.email-link a:hover {
  color: #004999;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  .header-container {
    flex-wrap: wrap;
    position: relative;
    padding: 1.2rem 2rem;
  }

  .logo-section {
    flex: 1;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  nav {
    width: 100%;
    margin-top: 1.2rem;
    order: 3;
  }

  .navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    gap: 0;
    /* REFINE STEP 13: Mobile menu background uses Dark Green */
    background: rgba(2, 70, 30, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar li {
    width: 100%;
  }

  .navbar li a {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    background: transparent;
  }

  .navbar li:last-child a {
    border-bottom: none;
  }

  /* REFINE STEP 13: Mobile menu hover uses Bright Yellow and Dark Green text */
  .navbar li a:hover {
    background: var(--bright-yellow);
    color: var(--dark-green);
    transform: translateX(5px);
    box-shadow: none;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  main {
    padding: 1rem;
  }

  .card {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  h2 {
    font-size: 2rem;
  }

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

  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .logo-text h1 {
    font-size: 1.2rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  main {
    padding: 0.5rem;
  }

  .card {
    padding: 1rem;
    margin: 1rem 0;
  }

  h2 {
    font-size: 1.7rem;
  }

  .badge-container {
    flex-direction: column;
  }

  .pricing-grid,
  .services-grid,
  .extras-grid,
  .locations-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-item img {
    height: 180px;
  }
}
/* APPLICATION FORM MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-box {
  background: white;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-btn {
  float: right;
  font-size: 2rem;
  cursor: pointer;
  color: var(--vibrant-orange);
}

#applicationForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#applicationForm input,
#applicationForm select,
#applicationForm textarea {
  padding: 0.8rem;
  border-radius: 10px;
  border: 2px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.submit-btn {
  background: var(--vibrant-orange);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #ff8c42;
}

.gallery-modal {
  max-width: 90vw;
  max-height: 90vh;
  padding: 20px;
  text-align: center;
}

.gallery-modal img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  margin-bottom: 15px;
}

.gallery-modal p {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

/* Thumbnails Modal */
.gallery-thumbnails-modal {
  max-width: 90vw;
  max-height: 90vh;
  width: 900px;
  overflow-y: auto;
}

.gallery-thumbnails-modal h2 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 10px;
}

.thumbnail-item {
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.thumbnail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.thumbnail-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.thumbnail-item p {
  display: none;
}

/* Full Image Modal */
.gallery-image-modal {
  max-width: 95vw;
  max-height: 95vh;
  padding: 20px;
  text-align: center;
}

.gallery-image-modal img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
}

.gallery-image-modal p {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
  display: none;
  transform: scale(1.05);
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 3rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, opacity 0.3s;
  z-index: 10;
}

.nav-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}
/* Get Started Button in Pricing Section */
.get_started_buttn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.contact-card a {
  color: #0066cc;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}
.address-box {
  text-align: center;
  margin-bottom: 1px;
}
.lookFoward {
  text-align: center;
  margin-top: 1px;
}
.contactUs_buttn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  grid-column: 1 / -1
}
@media (max-width: 968px) {
  /* ADD THESE TWO LINES AT THE TOP */
  section {
    scroll-margin-top: 250px;
  }
  
  .card {
    scroll-margin-top: 250px;
  }
  /* THEN YOUR EXISTING CODE CONTINUES */
  
  .header-container {
    flex-wrap: wrap;
    position: relative;
    padding: 1.2rem 2rem;
  }
  /* ... rest of your mobile styles */
}