* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body {
      font-family: 'Segoe UI', sans-serif;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: black;
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
      height: 80px;
    }

    .navbar .logo {
      display: flex;
      align-items: center;
    }
    
    .navbar .logo img {
      padding: 20px; 
      height: 150px;
      width: auto;
      display: block;
      transition: transform 0.3s;
    }
      
    

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    .navbar ul li a {
      text-decoration: none;
      color: #fff;
      font-size: 1rem;
      transition: color 0.3s;
    }

    .navbar ul li a:hover {
      color: #4ade80;
    }

    .quote-btn {
      background-color: #4ade80;
      color: #1e3a3a;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
      text-decoration: none;
    }

    .quote-btn:hover {
      background-color: #22c55e;
    }

    .menu-icon {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .navbar ul {
        display: none;
        flex-direction: column;
        background-color: #1e3a3a;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 1rem 2rem;
      }

      .navbar ul.active {
        display: flex;
      }

      .menu-icon {
        display: block;
        color: #4ade80;
      }

      .quote-btn {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }
    }

.services-section {
  padding: 40px 20px;
  background: #f7f7f7;
  text-align: center;
}

.services-section h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 32px;
}

.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: slide 20s linear infinite;
}

.service-card {
  min-width: 280px;
  max-width: 280px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  text-align: center;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #555;
}

/* Animation */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    min-width: 240px;
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .carousel-track{
    flex-direction: column;
    animation: none;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* Services areas section */

.service-areas {
  padding: 60px 20px;
  background: #f0fdfa;
  text-align: center;
}

/* Heading */
.service-areas h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2e3a59;
}

/* Grid layout for area list and map */
.area-map-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* List of areas */
.area-list {
  flex: 1 1 300px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.area-list h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #ff6b00;
  display: inline-block;
  padding-bottom: 5px;
}

.area-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-list ul li {
  font-size: 16px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  transition: all 0.3s ease;
}

.area-list ul li:hover {
  color: #ff6b00;
  padding-left: 8px;
}

/* Map Embed Container */
.map-container {
  flex: 1 1 300px;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .area-map-container {
    flex-direction: column;
    align-items: center;
  }

  .area-list, .map-container {
    max-width: 100%;
  }

  .service-areas h2 {
    font-size: 28px;
  }
}

/* Footer */
.footer {
    background-color: black;
    color: #fff;
    padding: 3rem 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }

  .footer-col h3 {
    margin-bottom: 1rem;
    color: #4ade80;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
  }

  .footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover {
    color: #4ade80;
  }

  .footer-col.brand img {
    height: 100px;
  }

  .footer-col.brand p {
    font-size: 0.95rem;
    color: #ccc;
  }

  .social-icons a {
    margin-right: 10px;
    color: #4ade80;
    font-size: 1.2rem;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #22c55e;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #334d4d;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #aaa;
  }

  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .social-icons {
      justify-content: center;
    }
  }
