/* Basic reset and layout styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #ffffff;
    color: #112866;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100px;
}

header .logo1 img {
    height: 90px;
    width: 100px;
    float: left;
    padding: 0px 0px;
}

.logonew {
    margin-left: 15px;
    text-align: left;
    float: left;
    font-family: Cambria, serif;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 35px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #372281;
    text-decoration: none;
    font-weight: 700;
}

.hero {
    /* background: url('image/HOME_IMAGE-transformed.jpeg') no-repeat center center/cover; */
    height: 500px;
    color: black;
    text-align: center;
    /* padding-top: 50px; */
    margin-top: 100px;
    padding-top: 150px;
}

.hero h2 {
    font-size: 36px;
}

.hero p {
    font-size: 18px;
}

.btn {
    margin: 10px;
    padding: 3px 20px;
    padding-bottom: 6px;
    background: #00bfae;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #009688;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.service-content {
    flex: 1;
    padding: 20px;
}

.service-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.about-us {
    display: flex;
    align-items: flex-start;
    /* background: url('image/pexels-scottwebb-27406.jpg') no-repeat center center/cover; */
    color: #000000;
    min-height: 500px;
    height: 500px;
}

.about-content {
    width: 45%;
    padding-left: 50px;
}

.about-content p {
    margin: 0;
}

.contact {
    /* padding: 60px 0; */
    text-align: center;
    min-height: 200px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    padding: 10px;
    background: #003366;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.contact button:hover {
    background: #002244;
}

footer {
    background: #1b2835;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer .social-links {
    margin-bottom: 10px;
}

footer .social-links a {
    color: #00bfae;
    text-decoration: none;
    margin: 0 10px;
}

footer .social-links a:hover {
    color: #e21010;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    header .logo1 img {
        height: 70px;
        width: 70px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .about-content {
        width: 50%;
    }

    .service-item {
        flex-direction: column;
    }

    .service-content, .service-image {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
    }

    .nav-toggle {
        display: flex;
        cursor: pointer;
        margin-top: 15px;
    }

    .nav-toggle span {
        background: #000;
        height: 3px;
        width: 25px;
        margin: 5px 0;
        border-radius: 3px;
    }

    .logonew h1 {
        font-size: 18px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .about-content {
        width: 100%;
        padding: 20px;
    }

    .service-item {
        flex-direction: column;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 30px;
        height: 300px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .about-content {
        padding: 10px;
    }

    .about-content h2, .about-content p {
        font-size: 16px;
    }

    .contact {
        padding: 20px;
    }

    .contact form {
        width: 90%;
    }
}
