/* ======= Typography style ======= */
:root {
    --primary-blue: #13FFFF;
    --secondary-blue: #153CAF;
    --text-gray: #67696c;
    --bg-color: #FAFAF7;
    --light-gray: #F5F4EE;
    --soft-white: #F9F9F9;
    --black: #000000;
    --white: #FFFFFF;

    /* font */
    --font-body: "Poppins", sans-serif;
    --font-head: "Libre Baskerville", serif;

}

/* BreadCrumb Section */
.breadcrumb-box {
    position: relative;
    background: url('../img/weld-1.webp') center center / cover no-repeat;
    width: 100%;
    padding: clamp(4rem, 10vw, 8rem) 1rem;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.breadcrumb-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-content {
    max-width: 900px;
}


.breadcrumb-content>* {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    text-transform: uppercase;
    font-size: clamp(35px, 6vw, 55px);
    color: var(--white);
}

.breadcrumb-content p {
    text-transform: capitalize;
    font-size: 16px;
    color: var(--white);
}


.breadcrumb-content a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.3s ease;
}

.breadcrumb-content a:hover {
    background-size: 100% 2px;
}



.breadcrumb-content span {
    text-transform: capitalize;
    text-decoration: none;
    color: var(--white);
}







@media (max-width:945px) {
    .breadcrumb-content {
        max-width: 900px;
        margin-top: 40px;
    }
}

/* BreadCrumb Section */

































/* contact Section  */

.add-contact i {
    color: var(--secondary-blue);
    font-size: 18px;
    margin-right: 5px;
}

.contact-section-form {
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
}

.contact-section-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/map.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.contact-section-form>* {
    position: relative;
    z-index: 1;
}





/* ===== FORM CONTAINER ===== */
.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
}

/* ===== INPUTS & SELECT ===== */
.form-control,
.form-select {
    height: 55px;
    border-radius: 12px;
    border: 1px solid var(--secondary-blue);
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: none;
}



/* Textarea */
textarea.form-control {
    height: auto;
    min-height: 140px;
    resize: none;
}

/* Focus Effect */
.form-control:focus,
.form-select:focus {
    border-color: #1e6bff;
    /* primary blue */
    box-shadow: 0 0 0 3px rgba(30, 107, 255, 0.08);
}

/* Placeholder color */
.form-control::placeholder {
    color: #9ca3af;
}

/* Full width button on small screens */
@media (max-width: 576px) {
    .button-2 {
        width: 100%;
        text-align: center;
    }
}


/* Tablets */
@media (max-width: 991px) {
    .form-container {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .form-container {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .form-control,
    .form-select {
        height: 50px;
        font-size: 14px;
    }

    textarea.form-control {
        min-height: 120px;
    }

}

/* Small Mobile */
@media (max-width: 480px) {
    .form-container {
        padding: 20px 15px;
    }
}

/* ===== ROW FIX FOR SMALL SCREENS ===== */
@media (max-width: 767px) {
    .row.mb-3>div {
        margin-bottom: 15px;
    }
}

/* Remove extra bottom margin for last input in row */
@media (min-width: 768px) {
    .row.mb-3>div:last-child {
        margin-bottom: 0;
    }
}



/* contact Section 2 */































/* map section */
.map-section {
    width: 100%;
    padding-bottom: 20px;
    overflow: hidden;
}


.map-section iframe {
    width: 100%;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/* map section */