/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #FFF7F0;
    margin: 0;
    padding: 0;
}
.altcolor {
	padding :10px;
	background-color: #885C09;
}

.thirdcolor {
	padding :10px;
	background-color: #FFF7F0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header & Navigation */
.header {
    background: #9A690F;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .logo {
    height: 50px;
}
.menu {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}
.menu li {
    margin: 0 15px;
}
.menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.contact-info {
    font-size: 14px;
    color: white;
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.jpg') no-repeat center;
    background-size: cover;
    padding: 280px 20px;
    text-align: center;
    color: white;
}
.hero h1 {
    font-size: 32px;
}
.hero p {
    font-size: 18px;
}
.lead-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.lead-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.lead-form button {
    background: #885C09;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}
.lead-form button:hover {
    background: #774A07;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
	padding-top:20px;
	padding-bottom:20px;
}
.about img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* Services Section */
.services {
    text-align: center;
}
.service {
    padding: 20px;
    background: white;
    border-radius: 5px;
}

/* Expert Section */
.expert {
    text-align: center;
}
.expert-block img {
    width: 150px;
    border-radius: 50%;
}

/* Gallery */
.gallery img {
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
