/* .hero {
    min-height: 350px;
    background-image: url("../images/page-heading-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 90px;
    padding: 60px 20px;
}

.hero p {
    background: #fff;
    padding: 8px 16px;
    margin-bottom: -15px;
    white-space: nowrap;
    font-weight: normal;
}

.hero h1 {
    color: #fff;
    font-size: 40px;
} */

.heroo {
    height: 350px;
    background: url("../images/page-heading-bg.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 90px;
}

.heroo p {
    background: white;
    padding: 8px 14px;
    margin-bottom: 10px;
}

.heroo h1 {
    color: white;
    font-size: 40px;
}

/* CONTACT SECTION */

.contact-section {
    background: white;
    padding: 100px 0;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 20px;
}


/* LEFT SIDE */

.info {
    text-align: left;
    max-width: 500px;
}

.info h6 {
    color: #ff5a3c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.info h3 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.info p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 35px;
}


/* CONTACT CARDS */

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 360px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card img {
    height: 45px;
}

.card h5 {
    /* white-space: nowrap; */
    font-size: 18px;
    /* margin-bottom: 4px; */
    margin: 0;
}

.card p {
    color: #888;
    font-size: 14px;
    margin: 3px 0 0;
}

.card div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card:hover {
    transform: scale(1.05);
}

/* FORM */

.contact-form {
    background: white;
    padding: 40px 40px 10px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: none;
    background: #f3f3f3;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
    border-radius: 15px;
}

.contact-form button {
    margin-top: 10px;
    width: 160px;
    padding: 12px;
    background: black;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
}

.contact-form button:hover {
    background: #ff5a3c;
}

/* MAP */

.map {
    max-width: 1200px;
    margin: 0px auto 80px;
    padding: 0 20px;
}

.map iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    border: none;
}


/* FOOTER */

footer {
    background: black;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 40px;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 30px;
}


/* RESPONSIVE */

@media (max-width:768px) {

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: row;
        gap: 20px;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 8px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info h3 {
        font-size: 28px;
    }

   .heroo {
        height: 250px;
        margin-top: 100px;
    }

    .heroo h1{
        font-size: 28px;
    }

    footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}