/* product thumbnail section  */
.slide {
    position: relative;
    overflow: hidden;
    display: flex;
    height: 80vh;
    justify-content: center;
    align-items: center;
}


.slide img {
    height: 100%;
    width: calc(100% - 20px);
    object-position: center;
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 00;
}

.slide-text {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    z-index: 2;
    align-items: center;
    padding: 0 20%;
    text-align: center;
}

.slide-text h1 {
    font-weight: 600;
    font-size: 60px;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--white-text-Color);
}

.slide-text p {
    font-weight: 500;
    font-size: 35px;
    line-height: 110%;
    color: var(--white-text-Color);

}


@media (max-width: 790px) {
    .slide {
        height: 50vh;
    }

    .slide-text p {
        font-size: 18px;
    }

    .slide-text h1 {
        font-weight: 600;
        font-size: 24px;
        line-height: 125%;
        white-space: normal;

    }


    .slide img {
        width: calc(100% - 10px);
        left: 5px;
    }
}


/* product thumbnail section  */

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px;
    gap: 30px;
}

.contact-form {
    flex: 1 1 600px;
    max-width: 800px;
}

.contact-form h2 {
    margin-bottom: 25px;
    font-size: 28px;
    color: #333;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.field label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #000000;
}

.field input,
.field textarea {
    padding: 16px 12px;
    border: 1px solid #000000;
    font-size: 16px;
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    background-color: #1d3b8b;
    color: white;
    font-size: 18px;
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    margin-top: 10px;
}

.contact-info {
    flex: 1 1 250px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 65px 0 65px 65px;
    gap: 30px;
}

.contact-info span {
    font-size: 25.09px;
    color: var(--primary-Color);
}

.info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--primary-Color);
}

@media (max-width: 1200px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-form,
    .contact-info {
        max-width: 100%;
    }

    .contact-form {
        flex: 0;
    }


    .submit-btn {
        width: 100%;
        text-align: center;
    }

    .contact-info {
        padding: 0;
        gap: 20px;
    }

    .info-box {
        font-size: 16px;
    }
}

.success-message,
.error-message {
    padding: 15px 20px;
    margin: 20px auto;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    max-width: 700px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.success-message {
    background-color: #e6f7e6; /* light green */
    color: #267a2c; /* green text */
    border: 1px solid #267a2c;
}

.error-message {
    background-color: #ffe6e6; /* light red */
    color: #c72c2c; /* red text */
    border: 1px solid #c72c2c;
}
iframe{
    border: 0;
    width: 100%;
    height: 100%;
}