body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7fb;
    color: #1f2937;
}

.container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    position: sticky;
    top: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #0b3d91;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    font-weight: bold;
}

.nav-links a:hover {
    color: #c99700;
}

.hero {
    background: linear-gradient(to right, #0b3d91, #163d7a);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    margin: 0;
    font-size: 42px;
}

.tagline {
    font-size: 22px;
    margin-top: 10px;
    color: #f4c542;
    font-weight: bold;
}

.intro {
    font-size: 18px;
    margin: 20px auto;
    max-width: 700px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #f4c542;
    color: #0b3d91;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #ddb12f;
    transform: translateY(-3px);
}

main {
    padding: 50px 0;
}

h2 {
    color: #c99700;
    margin-bottom: 20px;
}

section {
    margin-bottom: 50px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background-color: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-text h2 {
    margin-top: 0;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 16px;
}


.about-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}


.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.contact-box {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.contact-form button {
    background-color: #0b3d91;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #082c68;
    transform: translateY(-2px);
}


footer {
    background-color: #0b3d91;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .tagline {
        font-size: 20px;
    }

    .intro {
        font-size: 16px;
    }

    .container {
        width: 92%;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

   .about-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
}