
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}
body{
  overflow-x: hidden;
}

html{
     background-color: #faf0f0;
     
}
.hero{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 85vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}
.hero h1{
    font-size: 3rem;
    color: white;
    margin-left: 20px;
    margin-bottom: 50px;
    text-transform:capitalize;
    letter-spacing:1px;
    font-family: 'Helvetica Neue', sans-serif;
    
}
.background-vid{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
}
@media(min-aspect-ratio:16/9){
    .background-vid{
        width: 100%;
        height: auto;
    }
}
@media(max-aspect-ratio:16/9){
    .background-vid{
        width: auto;
        height: 100%;
    }
}
.services-container #services-container-p{
    font-size: 1rem;
    font-weight: 300;
    text-align: left;
    margin: 20px 0 20px 70px;
    max-width: 600px;
    line-height: 1.6;
}
.services-container #services-heading{
    font-size: 2rem;
    color:white;
    margin-left: 70px;
    margin-bottom: 60px;
    margin-right: 70px;
    text-transform: capitalize;
    background-color: #041427;
    width:90%;
    padding: 10px 30px;
    text-align: center;
    
}
@media screen and (max-width: 768px) {
    .services-container #services-heading {
        font-size: 1.2rem;
        margin-left: 20px;
        margin-right: 20px;
    }
    .services-container #services-container-p {
        font-size: 0.9rem;
        margin-left: 20px;
        margin-right: 20px;
    }
  
}
.services-container{
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.carousel {
      max-width: 100%;
      height: 90vh;
      overflow: hidden;
      position: relative;
      margin:auto;
      
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s ease-in-out;
      height: 100%;
    }

    .slide {
      position: relative;
      min-width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .slide video {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .slide-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2;
    }

    .slide-text {
      position: relative;
      z-index: 3;
      color: white;
      padding: 2rem;
      max-width: 700px;
      margin: auto;
      top: 50%;
      transform: translateY(-50%);
      text-align: left;
    }
    @media (max-width: 768px) {
      .slide-text {
        padding: 1rem;
        text-align: center;
        width: 70%;
      }
    }

    .slide-text h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .slide-text p {
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }

    .slide-text a {
      padding: 0.75rem 1.5rem;
      background: #041627;
      color: white;
      text-decoration: none;
      border-radius: 0.375rem;
      font-weight: bold;
      font-size: 1rem;
    }

    .btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.3);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      cursor: pointer;
      border-radius: 50%;
      font-size: 1.5rem;
      z-index: 10;
    }

    .btn.prev {
      left: 1rem;
    }

    .btn.next {
      right: 1rem;
    }

    .dots {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
      z-index: 10;
    }

    .dots span {
      display: block;
      width: 12px;
      height: 12px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
    }

    .dots span.active {
      background: #2b6cb0;
    }

    @media (max-width: 768px) {
      .slide-text {
        padding: 1rem;
      }

      .slide-text h2 {
        font-size: 1.5rem;
      }

      .slide-text p {
        font-size: 0.95rem;
      }

      .slide-text a {
        font-size: 0.9rem;
      }
    }
    .description-container{
      font-weight: 300;
      font-size: 1.1rem;
      margin: 100px auto;
      padding:0 20px;
      width:90%;
      background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://archive.org/download/engine-detailing/lagos2.png');
      background-size: cover;
      background-position: center;
      height: 110vh;
      width: 100%;
      color: white;
    }
    .description-container p{
      padding: 200px 0;
      line-height: 1.6;
    }
    .additional-services h2{
      text-align: center;

    }
    .add-services-container{
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-around;
      margin: 50px auto;
      width: 90%;
    }
    .add-services-container .add-card{
      width: 250px;
      height: 400px;
      background-color: #3182ce;
      color: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      
    }
    .add-services-container .add-card h3{
      margin-bottom: 30px;
      font-size: 1.5rem;
      text-align: center;
    }
    .add-services-container .add-card li{
      font-size: 1rem;
      text-align: center;
      margin-bottom: 20px;
      list-style: none;
    }
    .add-services-container .add-card .card-image{
      width:100%;
      height:100%;
    }  
    .add-services-container .add-card .card-image img{
      width: 100%;
      height: 100px;
      
      box-shadow: 0px 0px 10px #0000001e;
      object-fit: cover;
      
    }


    .card {
      position: relative;
    width: 250px;
    height: 400px;
    background-color: #f5e6f5;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    }

    .card-image {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
      background-size: cover;
      background-position: center;
      transition: all 0.4s ease;
      z-index: 0;
    }
    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      box-shadow: 0px 0px 10px #0000001e;
      
    }

    .card-text {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: color 0.4s ease;
      padding: 20px;
      text-align: center;
      font-size: 1.2rem;
      font-weight: 400;
    }

    .card:hover .card-image {
     
      transform: scale(1.1);
      backdrop-filter: blur(5px);
    }

    .card:hover .card-text {
      color: white;
    }
  .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  pointer-events: none;
  transition: opacity 0.4s ease;
}

@media (max-width: 768px) {
  .add-services-container {
    flex-direction: column;
    align-items: center;
    gap: 100px;
  }
  .add-services-container .add-card {
    width: 80%;
    margin-bottom: 70px;
  }
}
/* footer{
  margin-top: 10rem;
  background-color: #010b18;
}
.footer-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  list-style: none;
  
}
.footer-container .footer-links li {
  list-style:none;
  padding: 10px;
  color: white;
}
.footer-container .footer-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}
.footer-container .footer-socials li {
  list-style:none;
  padding: 10px;
  color: white;
}
.footer-container .footer-socials a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}
.footer-container .footer-socials p{
  color: white;
  font-weight: 500;
}
 */

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

    .boast-card {
      background-color: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      width: 250px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .boast-card:hover {
      transform: translateY(-5px);
    }

    .boast-number {
      font-size: 2rem;
      color: #1e88e5;
      margin-bottom: 10px;
    }

    .boast-text {
      font-size: 1rem;
      color: #444;
    }

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