/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f8f8;
}

h1, h2 {
    text-align: center;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background: url('banner.png') center/cover;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
	color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #d4a373;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #c78b4b;
}

/* Services Section */
#services {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: auto;
}

.service-card {
    background: #ececec;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Areas Served */
#areas {
    padding: 40px 20px;
    text-align: center;
    background: #2c3e50;
    color: #fff;
}

.areas-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.areas-list li {
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
}

/* Contact Section */
#contact {
    padding: 50px 20px;
    text-align: center;
}

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    text-align: left;
    font-weight: bold;
}

input, textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 20px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 30px;
}
