/* Entire page wallpaper */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
}

/* Entire page wallpaper */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url("background.jpg.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.photo-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.photo-gallery img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.customers {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.customer-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.customer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* Customer Delivery Section */

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

.customer-card {
    background: white;
    width: 280px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.customer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.customer-card h3 {
    margin-top: 15px;
    color: #4d148c;
}

/* Cover Banner */

.cover-section {
    background-image: url("cover-photo.jpg.JPG");
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: 12px;
    margin-bottom: 40px;
}

.cover-overlay {
    background: rgba(0,0,0,0.45);
    padding: 40px;
    border-radius: 10px;
}

.cover-overlay h1 {
    font-size: 45px;
}

.cover-overlay p {
    font-size: 20px;
}


/* Home Delivery Vehicle Section */

.delivery-card {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    background: white;
    padding: 30px;
    border-radius: 12px;
}

.delivery-card img {
    width: 400px;
    max-width: 100%;
    border-radius: 12px;
}

.delivery-text {
    flex: 1;
}

.delivery-text h2 {
    color: #4d148c;
}

/* Cover Photo */

.cover-section {
    background-image: url("cover-photo.jpg.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.cover-overlay {
    background: rgba(0,0,0,0.45);
    padding: 40px;
    border-radius: 12px;
}

.cover-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.cover-overlay p {
    font-size: 22px;
}

.cover-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.cover-button:hover {
    background: #e65c00;
}

/* Tracking Section */

.tracking {
    background: #4d148c;
    color: white;
    padding: 50px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 40px 0;
}

.tracking input {
    width: 320px;
    max-width: 90%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    margin: 10px;
    font-size: 16px;
}

.tracking button {
    padding: 15px 30px;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tracking button:hover {
    background: #e65c00;
}
/* Your existing CSS stays above */


/* NEW IMAGE + PAGE SIZE SETTINGS */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    border-radius: 12px;
}

.delivery-card img,
.customer-card img {
    width: 100%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
}

.section {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

@media (max-width: 600px) {
    .delivery-card img,
    .customer-card img {
        height: 220px;
    }

    body {
        font-size: 16px;
    }
}
