/* General Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header */
header {
    background-color: #34568B;
    padding: 20px 10%;
    text-align: center;
    position: relative;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 60px;
    filter: brightness(0.8);
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #FFA500;
    padding-left: 90px;
}

/* Navigation */
nav {
    background-color: #34568B;
    padding: 15px 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FFA500;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slide 60s infinite linear;
}

.slide {
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    z-index: 2;
    font-size: 3.5rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}

/* Animation */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Enquiry Form */
.enquiry-form {
    background-color: #FFFFFF;
    padding: 50px;
    width: 70%;
    margin: 60px auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.enquiry-form input, 
.enquiry-form textarea {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #CCC;
    border-radius: 5px;
    font-size: 1.2rem;
}

.enquiry-form button {
    background-color: #34568B;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.3rem;
    transition: background-color 0.3s ease;
}

.enquiry-form button:hover {
    background-color: #FFA500;
}

/* Services Section */
#services {
    background: #E0E0E0;
    padding: 60px 10%;
}

.services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    background: white;
    padding: 40px;
    border: 2px solid #34568B;
    border-radius: 8px;
    width: 30%;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    color: #34568B;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.service-item p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Contact Section */
#contact {
    background: #F9F9F9;
    padding: 80px 10%;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-item {
    background: white;
    padding: 40px;
    border: 2px solid #34568B;
    border-radius: 8px;
    width: 350px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 2.5rem;
    color: #FFA500;
}

.contact-item p {
    margin: 0;
    font-size: 1.2rem;
}

.contact-item a {
    color: #34568B;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    color: #FFA500;
}

/* Footer */
footer {
    background-color: #34568B;
    color: white;
    text-align: center;
    padding: 40px;
    margin-top: 40px;
}

/* Section Titles */
.section-title {
    color: #34568B;
    font-size: 3rem;
    text-align: center;
    margin: 50px 0;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFA500;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    nav a {
        font-size: 1.2rem;
    }

    .hero {
        height: 50vh;
    }

    .logo {
        height: 50px;
        top: 5px;
        left: 5px;
    }

    .enquiry-form {
        width: 90%;
    }

    .service-item {
        width: 100%;
    }

    .contact-item {
        width: 90%;
    }
}
