body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/* General styles for both headers */
header {
    width: 100%;
    padding: 10px 0;
    
}

.top-header {
    background: #f1c40f;
    color: #333;
    padding: 0.5em 0;
    color: #f8f8f8;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-header .container, .site-header .container {
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: #004b23;
    
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info i, .social-media i {
    margin-right: 5px;
    color: #004b23;
    margin: 15px;
}

.social-media a {
    margin: 0 5px;
    text-decoration: none;
    color: inherit;
}

.site-header .container {
    justify-content: space-between;
}

.site-title a {
    text-decoration: none;
    color: inherit;
    font-size: 24px;

    background: #fff;
    color: #218838;
    padding: 1em 0;
    text-transform: uppercase;
    font-size: 20px;
    text-decoration: none;
}

.site-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
    justify-content: center;
}

.site-nav a {
    text-decoration: none;
    color: inherit;
    font-size: 18px;
}

.btn.free-quote {
    background-color: #218838;
    color: white;
    padding: 5px 5px;
    text-decoration: none;
    border-radius: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .top-header .container, .site-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info, .social-media, .site-nav {
        flex-direction: column;
        width: 100%;
    }

    .contact-info span, .social-media a {
        margin: 5px 0;
    }

    .site-title, .site-nav, .btn.free-quote {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .site-nav li {
        margin: 10px 0;
    }
}





.hero {
    background: url('img/banner_01.jpg') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-content {
    max-width: 600px;
    margin-left: 2em;
}
.hero h2 {
    font-size: 3em;
    margin: 0 0 0.5em;
}
.hero p {
    font-size: 1.2em;
    margin: 0 0 1em;
}
.services {
    background: #fff;
    padding: 2em 0;
    text-align: center;
}

.services h2 {
    font-size: 2em;
    margin: 0 0 1em;
}

.service-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item {
    width: 30%;
    margin: 1em 0;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: auto;
}

.service-info {
    padding: 1em;
}

.service-info h3 {
    font-size: 1.5em;
    margin: 0.5em 0;
}

.service-info p {
    font-size: 1em;
    color: #666;
}

.service-info a {
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float .whatsapp-tooltip {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 10px;
    background-color: #25d366;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
}

.whatsapp-float:hover .whatsapp-tooltip {
    display: block;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 90%;
        flex-direction: column;
        align-items: flex-start;
    }

    .top-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact-info, .social-media {
        margin-bottom: 0.5em;
    }

    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .site-nav {
        flex-direction: column;
        gap: 1em;
    }

    .free-quote {
        margin-top: 1em;
        text-align: center;
    }

    .service-items {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 80%;
    }

}


.container-slider {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.slider-container {
  width: 100%;
}
.slider h2,
.video-section h2,
.form-container h2 {
  color: #218838;
  margin-bottom: 15px;
  font-size: 1.8em;
  text-align: center;
}
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin-left: 50px;
}

.slide {
    min-width: 80%;
    transition: 0.5s ease all;
}

.slide img {
    width: 50%;
    display: block;
    border-radius: 20px;
}
@media (max-width: 768px) {
    .slide img {
      width: 80%;
    }
  }

.form-container {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 90%;
}

form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #28a745;
    color: white;
    cursor: pointer;
    width: 50%;
}

form button:hover {
    background-color: #218838;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1000%); }
}
.testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.testimonials p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial {
    border: 2px solid green;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    position: relative;
}

.testimonial .quote {
    font-size: 3em;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    opacity: 0.3;
}

.testimonial p {
    font-size: 1em;
    margin: 20px 0;
    color: #000;
}

.person {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.person img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.person span {
    font-size: 1em;
}

.accordion {
    width: 90%;
    border-radius: 5px;
    overflow: hidden;
    align-items: center;
    margin-left: 25px;
  }
  
  .accordion-item {
    border-bottom: 1px solid #ddd;
  }
  
  .accordion-header {
    background-color: #218838;
    color: #fff;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s;
    
  }
  
  .accordion-header:hover {
    background-color: #004b23;
  }
  
  .accordion-body {
    padding: 15px;
    display: none;
    background-color: #f8f9fa;
  }
  
  .accordion-header.active + .accordion-body {
    display: block;
  }
  
  @media (max-width: 768px) {
    .accordion-header {
      font-size: 1rem;
    }
  
    .accordion-body {
      font-size: 0.9rem;
    }
  }
  

  /* Popup container */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none; /* Initially hidden */
  }
  
  /* Popup content */
  .popup-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 80%;
    text-align: center;
  }
  
  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
  }
  
  .info-banner {
  background: linear-gradient(to right, #004b23, #218838);
  color: white;
  padding: 50px 20px;
}

.info-banner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.info-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.info-text h2 {
  font-size: 2em;
  margin-bottom: 15px;
  line-height: 1.4;
}

.info-text p {
  font-size: 1.2em;
  font-style: italic;
  color: #dcdcdc;
}

.info-services {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.info-services h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #fff;
}

.info-services ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.info-services ul li {
  margin: 5px 0;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 5px;
}

.cta {
  font-size: 1.2em;
  margin: 10px 0;
}

.cta a {
  color: #ffd700;
  text-decoration: none;
}

.btn-site {
  display: inline-block;
  background: #fff;
  color: #218838;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .info-banner-container {
    flex-direction: column;
    text-align: center;
  }

  .info-text, .info-services {
    width: 100%;
    padding: 10px;
  }
}

/* VIDEO SECTION */
.video-section {
  width: 100%;
}

.video-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.video-wrapper video {
  width: 300px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .video-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .video-wrapper video {
    width: 90%;
  }

  .container-slider {
    padding: 20px 10px;
  }
}

