/* Reset some default styles */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header .logo img {
    max-width: 150px;
}

.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    margin-top: 1rem;
}

nav ul {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: #fff;
    font-weight: bold;
}

.contact-info {
    text-align: center;
    padding: 1rem 0;
    background: #f4f4f4;
    border-top: 1px solid #ddd;
}

.contact-info p {
    margin: 0.5rem 0;
}

.social-media a {
    margin: 0 0.5rem;
    display: inline-block;
}

.social-media img {
    width: 24px;
    height: 24px;
}

.hero {
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero .slide {
    min-width: 100%;
    transition: opacity 1s ease-in-out;
}

.hero .slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    margin: 1rem 0;
    font-size: 1.25rem;
}

.btn {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #555;
}

.services, .projects, .contact {
    padding: 2rem 1rem;
    text-align: center;
}

.services h2, .projects h2, .contact h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-cards, .project-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card, .project-card {
    background: #f4f4f4;
    border: 1px solid #ddd;
    margin: 1rem;
    padding: 1rem;
    border-radius: 5px;
    max-width: 300px;
    flex: 1;
    text-align: left;
}

.project-card img {
    max-width: 100%;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

textarea {
    height: 100px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .footer-content p {
    margin-bottom: 0.5rem;
}

footer .developer {
    display: flex;
    align-items: center;
}

footer .developer p {
    margin-right: 0.5rem;
}

footer .developer a img {
    max-width: 100px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #333;
    }

    nav ul.show {
        display: flex;
    }

    nav li {
        margin: 1rem 0;
        text-align: center;
    }
}
