* {
    margin: 0;
    padding: 0;
    font-family: Poppins;
}

.btnDiv a {
    text-decoration: none;
    cursor: pointer;
}

.btnDiv {
    display: flex;
    align-items: center;
    column-gap: 15px;
    z-index: 1;
    position: relative;
}

.btnDiv button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    background: #2A96E3;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    border: none;
    outline: none;
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
}

.btnDiv button:hover {
    background: transparent;
    color: #111D15;
    border: 1px solid #666666;
}

.btnDiv button.secondary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    border: 1px solid #666666;
    background-color: transparent;
    color: #111D15;
}

.btnDiv button.secondary:hover {
    background: #2A96E3;
    color: #FFFFFF;
    border: 1px solid transparent;
}

.heading h6 {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #111D15;
}

.heading h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 115%;
    color: #111D15;
}

.heading h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 120%;
    text-transform: capitalize;
    color: #111D15;
}

.heading h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #111D15;
}

.textDiv p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 20px 0px;
}

header.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0px 0px;
}

header .logoDiv {
    width: 200px;
    height: 200px;
    transition: width 0.3s ease, height 0.3s ease;
}

header.scrolled .logoDiv {
    width: 100px !important;
    height: 100px !important;
}

header .navLinks {
    transition: 0.2s;
}

header .logoDiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .logoDiv img {
    object-fit: contain;
    object-position: top;
}

header.scrolled .logoDiv img {
    object-position: center;
}

header.scrolled .navLinks {
    display: flex;
    align-items: center;
}

.bannerSection {
    height: calc(100vh);
    background: url(./images/House\ BG\ Image.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    /* Necessary for the pseudo-element to work */
}

.bannerSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5), hsla(195, 52%, 40%, 0.5));
    /* Adjust the opacity as needed */
    z-index: 1;
}

.bannerSection>* {
    position: relative;
    /* Ensure content is above the overlay */
    z-index: 2;
}

.bannerSection .heading h6 {
    margin-bottom: 10px;
}

.bannerSection .heading h1 {
    margin-top: 20px;
}

.bannerSection .textDiv {
    margin-top: 10px;
    margin-bottom: 20px;
}

.bannerSection .textDiv p {
    font-size: 18px;
}

.section1 {
    padding: 75px 0;
}

.section1 .heading h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

.section1 .heading {
    /* text-align: center; */
}

.section1 hr {
    margin: 30px 0;
}

.serviceMain .row {
    row-gap: 50px;
}

.serviceMain .serviceCard .imgDiv img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}

.serviceMain .serviceCard .heading {
    margin-bottom: 15px;
}

.serviceMain .serviceCard .btnDiv button {
    padding: 8px 20px;
    column-gap: 10px;
}

.section2 {
    padding: 75px 0px;
}

.section2 .row {
    align-items: center;
}

.section2 .heading h6 {
    margin-bottom: 10px;
}

.section2 .textDiv {
    margin: 20px 0;
}

.section2 .imgDiv {
    text-align: center;
}

.section2 .imgDiv img {
    width: 80%;
}

.section3 {
    padding: 96px 0px;
}

.section3 .contactDetails .contactDiv {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
    border: 1px solid #F3F3F3;
    background-color: #FBFBFB;
    border-radius: 12px;
    padding: 20px;
}

.section3 .contactDetails .contactDiv .svgDiv {
    background-color: #2A96E3;
    height: 54px;
    aspect-ratio: 1;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.section3 .contactDetails .contactDiv .contactText .contactName {
    font-size: 20px;
    font-weight: 600;
    line-height: 25.3px;
    letter-spacing: 0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 0px;
    margin-bottom: 8px;
}

.section3 .contactDetails .contactDiv .contactText .contactValue {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 0px;
    margin-bottom: 8px;
    color: #666666;
}

.section3 .heading h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 43.2px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 16px;
}

.section3 .form {
    margin-top: 30px;
}

.section3 .form .inputForm {
    font-size: 16px;
    font-weight: 400;
    line-height: 20.24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 18px 20px;
    width: calc(100% - 40px);
    border: 1px solid #F3F3F3;
    border-radius: 4px;
    box-shadow: 0px 4px 5px 0px #00000008;
    margin-bottom: 30px;
}

footer {
    background-color: #111D15;
}

footer .container {
    padding: 100px 0px 20px;
}

footer .logoImage {
    width: 250px;
}

footer .container .footerContent h3 {
    color: #2A96E3;
    font-size: 25px;
    font-weight: 700;
    line-height: 36.53px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

footer .container .footerContent .slogan {
    font-size: 12px;
    font-weight: 700;
    line-height: 17.53px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
}

footer .container .footerContent .footerDesc {
    font-size: 16px;
    font-weight: 300;
    line-height: 25.6px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    margin-top: 24px;
}

footer .knowMoreDiv {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 29.22px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

footer .knowMore {
    display: flex;
    flex-direction: column;
    margin-top: 36px;

}

footer .knowMore a {
    font-size: 16px;
    font-weight: 500;
    line-height: 23.38px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    margin-bottom: 24px;
}

footer .copyWrite {
    border-top: 1px solid #D9D9D9;
    margin-top: 40px;
}

footer .copyWrite p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    margin-top: 24px;
}

@media screen and (max-width: 600px) {

    section,
    footer,
    header {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    header .logoDiv {
        width: 100px !important;
        height: auto !important;
    }

    .container,
    .row,
    .col-md-6 {
        padding: 0 !important;
        margin: 0 !important;
    }

    .heading h1 {
        font-size: 38px;
    }

    .heading h2 {
        font-size: 32px;
    }

    .textDiv p {
        font-size: 16px !important;
    }

    .btnDiv {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .btnDiv button {
        width: 100%;
    }

    .section2 {
        padding: 0px 0;
        padding-bottom: 30px;
    }

    .section2 .row {
        row-gap: 40px;
    }

    footer .copyWrite p {
        margin: 0;
        padding: 10px 0;
    }

    footer {
        padding-top: 20px;
    }

    footer .logoImage {
        width: 150px;
        margin: auto;
    }

    header .container {
        width: calc(100% - 20px);
    }

    .termsandcond {
        margin-top: 150px !important;
        padding: 0 20px !important;
        width: calc(100% - 40px) !important;
    }

    h2.term-and{
        font-size: 24px !important;
    }
}