/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff; /* Pastel blue background */
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header Styles */
header {
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff; /* White header */
    border-bottom: 2px solid #87ceeb;
}
/* Background Image for the entire website */
body {
    font-family: 'Arial', sans-serif;
    background-image: url('gandola.jpg'); /* Add your image URL here */
    background-size: cover; /* Ensures the image covers the entire screen */
    background-position: center center; /* Centers the image */
    background-attachment: fixed; /* Keeps the image fixed while scrolling */
    margin: 0;
    padding: 0;
    color: #333;
}
/* Background Image for the header */
header {
    /* background-image: url('header.jpg');  */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 50px 0; /* Adjust padding to fit the header content */
}


header h1 {
    margin: 0;
    color: #4682b4; /* Stronger pastel blue */
}

header p {
    color: #6a93af;
    margin: 5px 0;
}

/* Main Container */
.container {
    width: 90%;
    max-width: 900px; /* Slightly wider container */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Get In Touch Section */
.get-in-touch {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Service Container */
.service-container {
    display: flex;
    justify-content: center; /* Center align each service box */
    margin-bottom: 20px;
}

/* Service Box */
.service-box {
    background-color: #f8fcff; /* Light blue background */
    padding: 20px;
    border-radius: 10px;
    max-width: 1100px; /* Broader width for desktop view */
    width: 90%;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for elevation */
    border: 1px solid #dce5ed; /* Light border for separation */
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-box h3 {
    color: #4682b4;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Inquiry Buttons */
.inquiry-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.inquiry-buttons a {
    background-color: #4682b4; /* Button pastel blue */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inquiry-buttons a:hover {
    background-color: #5a9bd4;
}

.inquiry-buttons img {
    width: 20px;
    height: 20px;
}

/* Contact Icons */
.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-icons a img {
    width: 50px;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    font-size: 16px;
}

footer .contact-info {
    margin-top: 10px;
    font-size: 14px;
}

footer .contact-info p {
    margin: 5px 0;
}

footer a {
    color: #87ceeb;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-box {
        max-width: 900px;
        width: 95%;
    }
}

@media (max-width: 768px) {
    .service-box {
        max-width: 95%;
        width: 100%;
    }
}

