body {
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    background: #000;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Shared Section Styles */
section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
}

.overlay {
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 40px;
    border-radius: 10px;
    display: inline-block;
}

/* Landing Section */
.landing {
    height: 100vh;
    background: url('background2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

/* Why Choose Us */
.why {
    background: url('choosebg.jpg') center/cover no-repeat;
}

.why-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.why-item {
    width: 250px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}

/* Services Section */
.services {
    background: url('services-bg.jpg') center/cover no-repeat;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-item {
    width: 250px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}

/* Contact Section */
.contact {
    background: url('contact-bg.jpg') center/cover no-repeat;
}

form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
}

button {
    padding: 12px;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Info Section */
.info {
    background: url('info-bg.jpg') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
}

.info-details {
    margin-bottom: 30px;
    line-height: 1.8;
}

.map-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}
