body {
  background-image: url("https://s3.ap-south-1.amazonaws.com/rahulcarservice.com/background.jpg");
  background-size: cover;        /* Make image fill the screen */
  background-repeat: no-repeat;  /* Prevent tiling */
  background-position: center;   /* Center the image */
}

header {
    background: rgba(128, 128, 128, 0.5); /* grey + transparency */
    color: white;
    padding: 25px;
    text-align: center;
}

nav {
    background: #333;
}
nav ul {
    margin: 0;
    padding: 10px;
    list-style: none;
    text-align: center;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url("carwash.jpg") center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: black;
}
.hero .btn {
    background: #ff9800;
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
}

.section {
    padding: 50px;
    text-align: center;
}

.service-container,
.package-container,
.gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.service-box,
.package {
    background: white;
    padding: 25px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.package.popular {
    border: 3px solid #ff9800;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #1a73e8;
}

.gallery-container img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.contact {
    background: white;
    padding: 40px;
    border-radius: 10px;
    width: 60%;
    margin: auto;
}

footer {
    background: #333;
    color: white;
    padding: 15px;
    text-align: center;
}
