/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    background-color: #f4f4f4;
}

/* Header styles */
.main-header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header .logo {
    font-size: 24px;
    font-weight: bold;
}
.logo-image {
    width: 100px; /* Adjust the width to make the logo smaller */
    height: auto;
}
.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #ff6347;
}

/* Hero Section Styles */
.hero {
    background: url('Back1200x500.webp') no-repeat center center/cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ff6347;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e5533d;
}

/* Services Section Styles */
.services {
    padding: 60px 20px;
    background-color: #fff;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* About Section Styles */
.about {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Contact Section Styles */
.contact {
    padding: 60px 20px;
    background-color: #fff;
}

.contact .container {
    max-width: 600px;
    margin: 0 auto;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact form label {
    margin-bottom: 5px;
}

.contact form input, .contact form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form button {
    background-color: #333;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact form button:hover {
    background-color: #555;
}

/* Footer Section Styles */
.main-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.main-footer p {
    margin: 0;
}
