/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    background-color: #004aad; /* Dark blue */
    color: white;
    padding: 20px;
    text-align: center;
}

/* Navigation Bar */
nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: url('background.jpg') no-repeat center center/cover; /* Background image */
    color: black;
    font-size: 24px;
    font-weight: bold;
}

/* Services Styling */
.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.service-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    color: #002766;
    font-size: 22px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 16px;
    color: #666;
}

/* Checkout Form */
#checkout {
    text-align: center;
    padding: 40px;
}

#checkout form {
    max-width: 400px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#checkout form label {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-weight: bold;
}

#checkout form input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.enquire-btn {
    background-color: #004aad;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    margin-top: 20px;
}

.enquire-btn:hover {
    background-color: #002766;
}

/* Contact Section */
#contact {
    background: #eee;
    padding: 30px;
    text-align: center;
}

#contact a {
    color: #004aad;
    font-weight: bold;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

#contact p {
    font-size: 16px;
    color: #333;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}
