* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background-color: #cf985d;
    color: #0f0e0e;
    padding: 30px;
    text-align: center;
}

.logo {
    padding: 10px;
    float: left;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #0e0e0e;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    text-align: center;
}

.hero h2 {
    font-size: 3em;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Sections */
section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

/* Services */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-item {
    flex: 1 1 300px;
    margin: 20px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    text-align: center;
}

.service-item h3 {
    margin-bottom: 15px;
}

/* Portfolio Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
}

/* About */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
}

.about img {
    max-width: 300px;
    border-radius: 50%;
    margin-bottom: 20px;
}



.location-section {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 10px;
    background-color: black;
}

.address-box {
    flex: 1;
    min-width: 200px;
    align-items: center;
    text-align: center;
}

.address-box h2 {
    color: white;
    margin-bottom: 15px;
}

.address-box p {
    margin: 6px 0;
    color: white;
    line-height: 1.6;
}

.map-box {
    flex: 1;
    min-width: 280px;
}

.map-box iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
}



/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 20px;
    transition: transform 0.3s;
}

.social-icons a img {
    width: 40px;
    height: 40px;
}

/* Hover effect */
.social-icons a:hover {
    transform: scale(1.2);
}

/* Footer */
footer {
    background-color: #cf985d;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Responsive adjustments */
@media(max-width:800px) {
    nav a {
        display: block;
        margin: 10px 0;
        width: 100%;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }
}