body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f1f1f1; 
}

.v20-wash-container {
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
    padding: 20px;
}

.intro-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(135deg, #e53935, #d32f2f); 
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: white;
    flex-wrap: wrap;
    padding: 20px;
    box-sizing: border-box;
}

.intro-text {
    max-width: 50%;
    flex: 1 1 300px;
}

.intro-text h1 {
    font-size: 48px; 
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.intro-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.book-now-btn {
    background: white;
    color: black;
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.book-now-btn:hover {
    background: #f86161;
    transform: scale(1.05);
}

.intro-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.services-section {
    background: #f8f8f8;
    padding: 40px;
    max-width: 1200px !important;

    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.services-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1000px;

    margin: auto;
}

.services-title {
    font-size: 28px;
    font-weight: bold;
    color: #d32f2f;
    text-align: left;
    flex: 1;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 2;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.service-box {
    background: white;
    display: flex;
    padding: 12px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 450px;
    box-sizing: border-box;
}
.service-box1 {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 450px;
    box-sizing: border-box;
}

.service-box i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 20px;
}

.service-box:hover {
    background: #fa2b2b;
    transform: scale(1.1);
}


.pricing-section {
    margin-top: 40px;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.pricing-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-section h2{
    font-size: 36px;
}
.pricing-section p{
    font-size: 20px;
    font-weight: bold;
}
.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    color: #444;
    font-size: 24px;
}

.pricing-card p {
    color: #222;
    font-size: 22px;
    font-weight: bold;
}

.pricing-img {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.details-section {
    position: relative;
    background: url('../images/banner-2.jpg') center center/cover no-repeat;
    padding: 80px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 40px auto;
    min-height: 500px;
    text-align: center;
    overflow: hidden;
}

.details-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
}

.details-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.details-section h2 {
    font-size: 32px;
    font-weight: bold;
        color: #c50707;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.details-section p {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.details-section ul {
    list-style: none;
    padding: 0;
}

.details-section ul li {
    font-size: 18px;
    padding: 10px 0;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-section ul li::before {
    content: '\2713';
    color: #ffd700;
    font-weight: bold;
    margin-right: 10px;
}


/* .details-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
} */

@media (max-width: 768px) {
    .details-section {
        flex-direction: column;
        text-align: center;
    }

    .details-image img {
        max-width: 100%;
    }

    .details-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .intro-section {
        flex-direction: column;
        text-align: center;
    }

    .intro-text {
        max-width: 100%;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        flex-direction: column;
    }

    .pricing-card {
        width: 80%;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .intro-section,
    .details-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .intro-text,
    .details-content {
        max-width: 100%;
    }

    .intro-text h1 {
        font-size: 32px;
    }

    .intro-text p,
    .details-section p {
        font-size: 16px;
    }

    .book-now-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .intro-image img,
    .details-image img {
        max-width: 100%;
        height: auto;
    }

    .services-box {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .services-title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
    }

    .services-list {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .pricing-section h2 {
        font-size: 28px;
    }

    .pricing-section p {
        font-size: 16px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
        margin: 10px 0;
    }

    .v20-wash-container {
        padding: 15px;
        margin-top: 60px;
    }

    .service-box {
        font-size: 16px;
        padding: 10px;
    }
    .service-box1 {
        font-size: 16px;
        padding: 10px;
    }

    .service-box i {
        font-size: 18px;
    }

    .details-section ul li {
        font-size: 16px;
        justify-content: center;
    }
    .intro-section {
        flex-direction: column;
        padding-top: 40px; 
    /* prevents cutting off */
      }
  
      .service-box {
        width: 100%; /* full width of container */
        max-width: 300px; /* cap size to avoid too wide on tablets */
      }
      .service-box1 {
        width: 100%; /* full width of container */
        max-width: 300px; /* cap size to avoid too wide on tablets */
      }

}

@media (max-width: 480px) {
  .services-list {
    display: flex;
    flex-direction: column;
    align-items: center; /* center the children */
  }

  .service-box1 {
    width: 90% !important;  /* shrink to screen size */
    text-align: center;
    border-radius: 6px;
  }
}

