:root {
      --primary-color: #ff5e3a;
      --secondary-color: #ffa31a;
      --accent-color: #ffd700;
      --neutral-bg: #fefefe;
      --text-color: #333;
    }
    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      background: var(--neutral-bg);
      color: var(--text-color);
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0 1rem 1rem;
      background-color: white;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    .logo img {
      height: 60px;
      width: auto;
      display: block;
    }
    .logo a {
      display: inline-block;
    }
    .cta-button {
      background-color: var(--primary-color);
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s;
    }
    .cta-button:hover {
      background-color: var(--secondary-color);
    }
    .hero {
      background: url('../Images/AdobeStock_227074608\ compress600kb.jpeg') center/cover no-repeat;
      color: #ffffff;
      text-shadow: 0 1px 3px rgba(0,0,0,0.7);
      padding: 6rem 2rem;
      font-weight: bold;
      text-align: center;
    }
    .hero h1 {
      font-size: 2.75rem;
      margin-bottom: 1rem;
      font-weight: 700;
      

    }
    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 600;
    }
    .section {
      padding: 3rem 2rem;
      text-align: center;
    }
    .section h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .services ul {
      list-style: none;
      padding: 0;
      max-width: 600px;
      margin: 0 auto;
    }
    .services li {
      padding: 0.5rem 0;
    }
    .carousel {
      position: relative;
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
      overflow: hidden;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .carousel-slide {
      min-width: 100%;
      box-sizing: border-box;
    }
    .carousel-slide img {
      width: 100%;
      border-radius: 8px;
    }
    .carousel-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }
    .carousel-buttons button {
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      cursor: pointer;
    }
    .testimonials blockquote {
      font-style: italic;
      margin: 1rem auto;
      max-width: 600px;
    }
    .form-section form {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .form-section input,
    .form-section textarea,
    .form-section select {
      padding: 0.75rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }
    .form-section button {
      background-color: var(--primary-color);
      color: white;
      border: none;
      padding: 0.75rem;
      font-size: 1rem;
      border-radius: 6px;
      cursor: pointer;
    }
    .honeypot {
      display: none;
    }
    .consent {
      font-size: 0.9rem;
      color: #555;
    }
    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 2rem 1rem;
      font-size: 0.95rem;
    }
    @media (max-width: 600px) {
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
      .section h2 {
        font-size: 1.5rem;
      }
    }
/* NAVBAR HAmburger */

    .navbar {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.nav-toggle {
  font-size: 28px;
  cursor: pointer;
  color: #ff5e3a;
  background: white;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-menu {
  list-style: none;
  background: white;
  padding: 15px;
  border-radius: 10px;
  position: absolute;
  top: 50px;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #ff5e3a;
}

@media (max-width: 768px) {
  .nav-toggle {
    font-size: 26px;
  }

  .nav-menu {
    width: 160px;
  }
}

.nav-menu.show-menu {
  display: flex;
  flex-direction: column;
}


/* on mobile the phone number font was blue on safair */
a[href^="tel"] {
  color: #ffffff;        /* Change to your desired color */
  text-decoration: none; /* Optional: removes underline */
  font-family: inherit;  /* Optional: keeps font consistent */
  font-size: 18px;
}



/* Services Section Styles */
.services-grid {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1e293b;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
  border-left: 4px solid #f97316; /* Add a subtle hover accent by placing this inside .service-card:hover {}: */
}


