html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Google Font */
.barlow-semi-condensed-regular {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
	 text-align :justify
}

.barlow-semi-condensed-medium {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.barlow-semi-condensed-semibold {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.barlow-semi-condensed-bold {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.barlow-semi-condensed-extrabold {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.barlow-semi-condensed-black {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-24 {
    font-size: 24px;
}

.fs-30 {
    font-size: 30px;
}

.fs-34 {
    font-size: 34px;
}

.fs-40 {
    font-size: 40px;
}

.fs-44 {
    font-size: 44px;
}

.fs-48 {
    font-size: 48px;
}

.fs-52 {
    font-size: 52px;
}

.fs-55 {
    font-size: 55px;
}

/* ====Color Section Started==== */
.primary-green {
    color: #83A12F;
}

/* ===About Us Page==== */

.image-container {
    background-position: center;
    height: 275px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.image-container * {
    position: relative;
    z-index: 2;
}

.about-info-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.querry-card {
    background: #fafafa;
    border-radius: 10px;
    padding: 20px;
}

.modal-content.sticky {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    /* Ensures it stays above other elements */
    width: 90%;
    /* Adjust width as per your design */
    max-width: 500px;
    /* Prevents modal from being too wide */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* ===Detail Page Style=== */

.service-card {
    background: #fafafa;
    padding: 15px;
}

.service-btn {
    background: transparent;
    border: 1px solid #83A12F;
    min-width: 100%;
    padding: 10px;
    color: #83A12F !important;

    a {
        color: #83A12F;
    }

    &:hover {
        background-color: #83A12F;
        color: #fff;
        transition: .5s;

        a {
            color: #fff;
        }
    }
}




/* ===Contact Us Style CSS=== */
.contact-querry-form {
    background: #fafafa;
    border: 1px solid #dfdfdf;
    border-radius: 10px;

    .form-container {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
    }

    .dark-bg-style {
        background: #222;
        padding: 15px;
        border-radius: 0 10px 10px 0;
    }

    .quote-points {
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        line-height: 35px;
    }


    form {
        label {
            font-size: 18px;
            font-weight: 500;
            color: #222;
        }

        button {
            background: transparent;
            border: 1px solid #83A12F;
            min-width: 100%;
            padding: 10px;
            color: #83A12F ;

            &:hover{
                border: 1px solid #83A12F;
                background: #83A12F;
                color: #fff !important;
            }
           
        }
    }
}