/* HERO SECTION */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #f8f9fa;
    overflow: hidden;
    /* margin-top:100px ; */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 78%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #000;
    max-width: 400px;
    width: 90%;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.btn-contact {
    margin-top: 20px;
    float: right;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-contact {
        padding: 8px 24px;
        float: left !important;
    }

    .hero-content {
        left: 50% !important;
        bottom: 20%;
        /* transform: translate(-50%, -50%); */
    }
    .hero-content {
        text-align: center !important;
    }
}

/* HEADING SECTION */
.highlight-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: #333;
}

.highlight-line {
    display: inline;
    background: linear-gradient(to top, red 40%, transparent 40%);
}

@media (max-width: 768px) {
    .highlight-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }
}

/* MAP SECTION */
.contact-map-section {
    position: relative;
    height: auto;
}

.map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-box {
    position: absolute;
    top: 20%;
    left: 20%;
    transform: translateY(-50%);
    background-color: #d5102d;
    color: white;
    padding: 30px;
    max-width: 300px;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-box h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-box p {
    margin: 0 0 10px;
    line-height: 1.4;
}

.contact-box strong {
    display: block;
    margin-bottom: 5px;
}

/* CONTACT FORM SECTION */
.contact-form-section {
    padding: 60px 0;
    background-color: #fff;
    font-family: "Segoe UI", sans-serif;
}

.contact-left h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

.divider-line {
    width: 1px;
    height: 50px;
    background-color: #ccc;
    margin: 30px auto;
}

.company-logo {
    font-size: 1rem;
    text-align: center;
}

.form-control {
    background-color: #ffeaea;
    border: none;
    border-radius: 0;
    padding: 12px;
    font-size: 14px;
}

.form-control::placeholder {
    color: #666;
}

.submit-btn {
    background-color: #d5102d;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #b00e26;
}

@media (max-width: 767.98px) {
    .contact-left {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-box {
        position: static;
        transform: none;
        max-width: 100%;
        margin-top: 20px;
    }

    .contact-map-section {
        height: auto;
    }
    .submitBtnMobile {
        display: flex;
        justify-content: center;
    }
    .brdr-bottom::after{
        width: 150px;
    }

}
