/* ===========================
   CONTACT HERO SECTION
=========================== */

.contact-hero {
    width: 100%;
    height: 38vh;
    background: url('../images/con.webp') center center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);  /* slight overlay like your image */
}

.contact-content {
    position: relative;
    text-align: center;
    z-index: 10;
}

.contact-content .line {
    display: block;
    width: 70px;
    height: 2px;
    background: #fff;
    margin: 10px auto 20px auto;
    opacity: 0.9;
}

.contact-content h1 {
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-hero {
        height: 45vh;
    }
    .contact-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 35vh;
    }
    .contact-content h1 {
        font-size: 34px;
    }
}
.map-container {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.map-container h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
    text-align: left;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 10px;
}

/* Wrapper to align both maps horizontally */
.map-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .map-container {
        width: 100%;
        padding: 10px 0;
    }

    .map-container iframe {
        height: 300px;
    }
}

.contact-info-row {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 40px 20px;
    background: #f6f6f6;
    border-radius: 14px;
    margin: 30px 0;
}

.contact-box {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.contact-box .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-box h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-box p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.contact-box a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-row {
        flex-direction: column;
    }
}
.zoho-form-section {
    background: #f4f7fa;
}

.zoho-form-container {
    max-width: 1400px;
    margin: auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}

.zoho-form-container h2 {
    text-align: center;
    font-size: 32px;
    color: #222;
}

.contact-subtext {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.zoho-form-container iframe {
    width: 100%;
    min-height: 710px;
    border: none;
    border-radius: 10px;
}
/* Dropdown container */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    top: 100%;
    left: 0;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 999;
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.nav-menu .dropdown-menu li a:hover {
    background: #f0f0f0;
}

/* Show on hover */
.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}
/* Arrow styling */
.nav-menu .dropdown .arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: 0.3s;
}

/* Rotate arrow on hover */
.nav-menu .dropdown:hover .arrow {
    transform: rotate(180deg);
}
