/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
}

/* Header */
.header {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 60px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar a:hover, .navbar a.active {
    color: #e67e22;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* About Us Section */
.about-section, .services-section, .contact-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about-section h2, .services-section h2, .contact-section h2 {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-left img {
    height: 50px;
    margin-bottom: 10px;
}

.social-icon {
    color: #fff;
    margin: 0 5px;
    font-size: 1.5rem;
}

.social-icon:hover {
    color: #e67e22;
}
