body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;

}

:root {
  --primary-color: #d81c00; /* Primary Color */
  --secondary-color: #0fea6a;/* Secondary Color */
  --accent-color: #ff6f61; /* Accent Color */
  --background-color: #f0f8ff; /* Background Color */
  --text-color: #333333; /* Text Color */
  --border-color: #add8e6; /* Border Color */
}
iframe {
  width: 100%;
}


      

      nav ul {
          list-style-type: none;
          display: flex;
          margin: 0;
          padding: 0
      }

      nav ul li {
          margin-left: 20px
      }

      nav ul li a {
          color: #fff;
          text-decoration: none;
          font-weight: 700
      }

      #menu-icon {
          display: none;
          cursor: pointer
      }

      @media (max-width:768px) {
          nav ul {
              display: none;
              flex-direction: column;
              background-color: white;
              color: white;
              position: absolute;
              top: 50px;
              right: 20px;
              width: 200px;
              border-radius: 5px;
          }
          nav ul li {
              margin-left: 0;
              margin-bottom: 10px
          }
          nav ul li a {
              padding: 10px 20px;
              display: block
          }
          #menu-icon {
              display: block
          }
      }




header {
  background-color: #00264d;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}
#logo {
  font-size: 24px;
  font-weight: bold;
}
nav ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
#menu-icon {
  display: none;
  cursor: pointer;
  color: #00264d;
}


.hero-carousel {
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.carousel-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.carousel-content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.carousel-content .btn {
  background: #d81c00;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
}

.carousel-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.arrow {
  font-size: 3rem;
  color: white;
  cursor: pointer;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .arrow {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  nav ul {
      display: none;
      flex-direction: column;
      background-color: #00264d;
      position: absolute;
      top: 50px;
      right: 20px;
      width: 200px;
      border-radius: 5px;
  }
  nav ul li {
      margin-left: 0;
      margin-bottom: 10px;
  }
  nav ul li a {
      padding: 10px 20px;
      display: block;
  }
  #menu-icon {
      display: block;
  }
  .hero {
      flex-direction: column;
  }
  
}

.why-choose-us {
  padding: 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.feature h3 {
  font-size: 1.5em;
  color: #d81c00;
  margin-top: 0;
}

.feature p {
  font-size: 1em;
  color: #333;
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .features {
      flex-direction: column;
      align-items: center;
  }

  .feature {
      max-width: 100%;
  }
}

  .about-us {
    padding: 2rem;
    background-color: var(--background-color);
  }
  
  .about-us-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .about-us-container h2 {
    width: 100%;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .about-us-content, .about-us-image {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  
  .about-us-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: left;
  }
  
  .about-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  @media (min-width: 768px) {
    .about-us-container {
      flex-direction: row;
    }
    .about-us-content, .about-us-image {
      flex: 1 1 45%;
      margin-bottom: 0;
    }
    .about-us-content {
      text-align: left;
      padding-right: 2rem;
    }
    .about-us-image {
      padding-left: 2rem;
    }
  }



  
  .services-section {
    padding: 40px;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .services-heading {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
  }
  
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .service-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .service-card h3 {
    margin: 15px;
    font-size: 20px;
    color: #333;
  }
  
  .service-card p {
    margin: 15px;
    font-size: 16px;
    color: #666;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  .service-card:hover img {
    transform: scale(1.1);
  }
  
  @media (max-width: 600px) {
    .service-card img {
      height: 150px;
    }
  
    .service-card h3 {
      font-size: 18px;
    }
  
    .service-card p {
      font-size: 14px;
    }
  }


  .testimonial-section {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}

.client {
    font-weight: bold;
    margin-top: 10px;
}

button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 0;
}
 h3 { 
  color: #d81c00;
 }
.next {
    right: 0;
}

@media screen and (max-width: 600px) {
    .testimonial {
        padding: 10px;
    }

    button {
        padding: 5px;
    }
}