/* Talk to us Section Styles */
.talk-to-us-sec {
    position: relative;
    background-color: #f8fbff;
    padding: 100px 0px;
}

.form-wrapper {
    position: relative;
    z-index: 2;
}

.form-bg-img {
    position: absolute;
    top: 0;
    left: -150px;
    /* Pull it outside the container slightly to match the offset look */
    width: 120%;
    height: 100%;
    z-index: -1;
}

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

.talk-to-us-form {
    background-color: #2b56f5;
    /* Primary blue */
    padding: 50px 40px;
    margin-left: 60px;
    /* Overlaps the left image */
}

.talk-to-us-form .form-label {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.talk-to-us-form .form-control {
    border: none;
    border-radius: 0px;
    padding: 15px 20px;
    font-size: 14px;
    background-color: #ffffff;
    color: #1a1a1a;
}

.talk-to-us-form .form-control::placeholder {
    color: #9ca3af;
}

.talk-to-us-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    outline: none;
}

.submit-btn {
    background-color: #0f172a;
    /* Dark button */
    color: #ffffff;
    border-radius: 0;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #ffffff;
    color: #0f172a;
}

/* Review Card Styles */
.review-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 0px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    /* Soft shadow */
}

.reviewer-img img {
    object-fit: cover;
}

.review-text {
    line-height: 1.8;
    font-size: 16px;
}

/* Slider Navigation Styles */
.review-nav-wrapper {
    position: relative;
    width: 80%;
}

.nav-line {
    height: 1px;
    background-color: #b9c6f9;
    /* Light blue line */
}

.review-prev,
.review-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
}

.review-prev {
    border: 1px solid #2b56f5;
    color: #2b56f5;
    background-color: transparent;
}

.review-next {
    background-color: #2b56f5;
    color: #ffffff;
    border: 1px solid #2b56f5;
}

.review-prev:hover {
    background-color: #2b56f5;
    color: #ffffff;
}

.review-next:hover {
    background-color: transparent;
    color: #2b56f5;
}


@media (max-width: 991px) {
    .talk-to-us-sec {
        padding: 80px 0px;
    }

    .talk-to-us-form {
        margin-left: 0;
        padding: 40px 25px;
    }
    .talk-to-us-sec .section-title{
        font-size: 26.40px !important;
    }
    .form-bg-img {
        display: none;
        /* Hide placeholder image on mobile */
    }
}

@media (max-width: 576px) {
    .talk-to-us-sec {
        padding: 50px 0px;
    }
    .talk-to-us-sec .section-title{
        font-size: 24.8px !important;
    }
    .review-card {
        padding: 20px !important;
    }
}