* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
    }

/* Custom Alert Styling */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #444;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: slideIn 0.5s ease, fadeOut 0.5s ease 2.5s;
}

.custom-alert.success {
    background-color: #28a745; /* Green for success */
}

.custom-alert.error {
    background-color: #dc3545; /* Red for error */
}

.custom-alert.hide {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .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;
  }
    }

    /* hero section */

    .hero {
  position: relative;
  padding: 5rem 3rem;
  font-family: 'Segoe UI', sans-serif;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background-image: url('../images/banerbg.jpg');*/
  background-position: center;
  background-size: 90% auto;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 58, 58, 0.6); /* Black overlay with 50% opacity */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}
  
  

  .hero-text {
    flex: 1 1 500px;
    padding: 1rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
  }

  .hero-btn {
    background-color: #4ade80;
    color: #1e3a3a;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }

  .hero-btn:hover {
    background-color: #22c55e;
  }

  @media (max-width: 768px) {
     .hero {
    padding: 2rem 1rem;
    background-size: cover;
    /* background-position: center; */
  }

    .hero-content {
      flex-direction: column;
      text-align: center;
    }

    .hero-text h1 {
      font-size: 2rem;
    }

    .hero-btn {
      margin-top: 1rem;
    }
  }

.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #14532d; /* Deep green for title */
}

.category {
  margin-bottom: 50px;
}

.category-title {
  font-size: 28px;
  color: #166534;
  margin-bottom: 20px;
  border-left: 4px solid #14532d;
  padding-left: 15px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 calc(33.333% - 20px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #1f2937;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.learn-more {
  text-decoration: none;
  color: #ffffff;
  background-color: #15803d;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.learn-more:hover {
  background-color: #166534;
}

@media (max-width: 768px) {
  .service-card {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .category-title {
    font-size: 22px;
  }
}

/* before after section */

.before-after-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .before-after-section h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: #1e3a3a;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeSlideIn 0.6s ease-out forwards;
    }

    .before-after-section p {
      font-size: 1rem;
      max-width: 700px;
      margin: 0 auto 40px;
      color: #444;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeSlideIn 0.6s ease-out forwards;
      animation-delay: 0.2s;
    }

    .card-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeSlideIn 0.8s ease-out forwards;
      animation-delay: 0.4s;
    }

    @keyframes fadeSlideIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 500px;
      height: 300px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      user-select: none;
      background: #000;
    }

    .slider-container img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    .after {
      clip-path: inset(0 50% 0 0);
      transition: clip-path 0.1s ease-out;
      z-index: 1;
    }

    .slider-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: #fff;
      z-index: 5;
      cursor: ew-resize;
    }

    .slider-handle::before {
      content: '';
      position: absolute;
      top: 50%;
      left: -10px;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      background: #1e3a3a;
      border: 2px solid #fff;
      border-radius: 50%;
    }


    @media (max-width: 768px) {
      .card-row {
        flex-direction: column;
        align-items: center;
      }
    }
  
  /* about section */


.about-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  font-family: Arial, sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  text-align: center;
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1 1 500px;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


  /* 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;
    }
  }

  /* reviews section */

  .reviews-section {
  background-color: #f8fafc;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.reviews-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #1e3a3a;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.client-name {
  font-size: 1.2rem;
  color: #1e3a3a;
  margin-bottom: 10px;
}

.stars i {
  color: #fbbf24; /* Golden yellow */
  font-size: 1.1rem;
  margin-right: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: #333;
  margin-top: 10px;
}


  /* contact us section */

  .contact-section {
  background: #f7fafc;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-container h2 {
  color: #1e3a3a;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-container p {
  color: #555;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #14532d;
}

/* Radio Button Wrapper */
.form-group .radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.form-group .radio-group label {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Optional: style the actual radio */
.form-group input[type="radio"] {
  accent-color: #4ade80; /* Stylish green tick for supported browsers */
  transform: scale(1.2); /* Slightly larger radio buttons */
  cursor: pointer;
}

.btn-submit {
  background: #4ade80;
  color: black;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.btn-submit:hover {
  background: #22c55e;
}


  /* responsive fixes */

  /* ------------------ Responsive Fixes ------------------ */

@media (max-width: 1200px) {
  .container {
    width: 95%;
    padding: 0 15px;
  }

  .service-card {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    padding: 50px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container,
  .areas-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-container .about-image img,
  .areas-container .areas-map iframe {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .areas-container .areas-list ul {
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 20px;
  }

  .footer-container .footer-column {
    margin-bottom: 20px;
  }

  .footer-container .footer-column h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .service-card h4 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  .learn-more {
    font-size: 13px;
    padding: 6px 12px;
  }

  .footer-container {
    gap: 20px;
  }

  .footer-container .footer-column {
    width: 100%;
  }

  .menu-icon {
    font-size: 24px;
  }
}
