/* General Reset */
body,
h1,
h2,
h3,
p,
ul,
li,
a,
input,
textarea,
button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}


nav {
    height: 80px;
    width: 100%;
}

label.logo {
    font-size: 32px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
}

nav ul {
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 10px;
    padding: 5px;
}

nav ul li a {
    color: #333;
    font-size: 20px;
    padding: 7px 13px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ff5722;
    transition: width 0.5s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}


.checkbtn {
    font-size: 28px;
    color: #ff5722;
    float: right;
    line-height: 80px;
    margin-right: 30px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

@media (max-width: 1050px) {
    label.logo {
        padding-left: 30px;
    }

    nav ul li a {
        font-size: 16px;
    }
}

/* Responsive media query code for small screen */
@media (max-width: 890px) {
    .checkbtn {
        display: block;
    }

    label.logo {
        font-size: 22px;
    }

    ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    nav ul li a {
        font-size: 22px;
        font-weight: 500;
    }

    a:hover,
    a.active {
        background: none;
    }

    #check:checked~ul {
        left: 0;
    }
}

section {
    background-size: cover;
}


/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

}

.section {
    padding: 4rem 0;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}


.logo span {
    color: #ff5722;
}

/* Hero Section */
.hero {
    background: url('path/to/your/image.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 6rem 1rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #ff5722;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background: #e64a19;
    transform: translateY(-3px);
}


/* Cards */
.service-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 30%;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: #777;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

form input,
form textarea {
    width: 100%;
    max-width: 500px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

form button {
    padding: 0.8rem 2rem;
    background: #008cff;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        flex: 1 1 100%;
    }

    /* Get in Touch Section */
    .get-in-touch {
        background: linear-gradient(135deg, #f9f9f9, #e3f2fd);
        padding: 4rem 0;
        text-align: center;
        border-top: 2px solid #0056b3;
        border-bottom: 2px solid #0056b3;
    }

    .get-in-touch h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #e64a19;
    }

    .get-in-touch p {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 2rem;
    }

    .contact-grid {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .contact-info {
        flex: 1 1 40%;
        background: #fff;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    .contact-info h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .contact-info p {
        margin: 0.5rem 0;
        font-size: 1rem;
        color: #555;
    }

    .contact-form {
        flex: 1 1 55%;
        background: #fff;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .contact-form h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
    }

    .contact-form button {
        width: 100%;
        padding: 1rem;
        background: #e64a19;
        color: #fff;
        border: none;
        border-radius: 50px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }

    /* .contact-form button:hover {
        background: #003f8a;
        transform: translateY(-3px);
    } */

    /* Responsive Design for Contact Section */
    @media (max-width: 768px) {
        .contact-grid {
            flex-direction: column;
            align-items: center;
        }

        .contact-info,
        .contact-form {
            flex: 1 1 100%;
            min-width: 90%;
        }
    }
}