@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
}

html {
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

i {
    margin-right: 5px;
}

:root {
    --black: #000;
    --light-black: #323746;
    --white: #fff;
    --light-blue: #a9e3ff;
    --dark-blue: #014a6d;
    --yellow: #ffd803;
}

h1,
h2,
h3 {
    color: var(--dark-blue)
}

.underline {
    width: 7%;
    height: 4px;
    margin: 0 auto;
    margin-bottom: 2rem;
    background-color: var(--dark-blue);
}

/* Header Start */

.topNavStrip {
    width: 100%;
    background: var(--dark-blue);
    color: var(--white);
    padding-top: 1rem;
    display: none;
}

.topNavStrip span {
    font-size: 17px;
    margin-right: 1rem;
    padding: 0 14px;
}

.topNavStrip span a {
    color: var(--white);
    font-weight: 500;
}

.topNavStrip span a:hover {
    text-decoration: underline;
}

.accordion-button {
    background-color: var(--dark-blue) !important;
    color: var(--white) !important;
    font-weight: 600;
}

.accordion-collapse,
.accordion-collapse span a {
    background-color: var(--dark-blue) !important;
    color: var(--white) !important;
}

.accordion-collapse span a {
    font-weight: 600;
}

.accordion-item,
.accordion-header button,
.accordion-header button:focus,
.accordion-header button:active,
.accordion-header button:visited,
.accordion-collapse {
    border: none;
    box-shadow: none;
}

.accordion-button:after {
    background: url(../images/down-arrow.png);
}

.accordion-button:not(.collapsed)::after {
    background: url(../images/down-arrow.png);
}

.topNavStrip .social-media {
    margin-top: -5px;
}

.topNavStrip .social-media i {
    font-size: 1rem;
    width: 30px;
    height: 30px;
    margin-right: -2.5rem;
}



.topNavStrip .social-media i {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    text-align: center;
    color: #000;
    margin-left: 6px;
    background-color: #ffd803;
    padding-block: 10px;
    border-radius: 50%;
    transition: all 0.2s ease-in;
}

.topNavStrip .social-media i:hover {
    transform: scale(1.02);
    box-shadow: 1px 1px 5px #000;
    background: var(--black);
    color: var(--light-blue);
}



/* NavBar Start */

.navBar {
    padding-block: 1rem;
}

.navBar li a {
    text-transform: uppercase;
    color: var(--black);
    margin-right: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navBar li a:hover {
    color: var(--dark-blue);
    border-bottom: 4px solid var(--yellow);
}

.nav-link.active {
    color: var(--dark-blue) !important;
    border-bottom: 4px solid var(--yellow);
}

.dropdown>a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.dropdown-menu {
    background-color: var(--dark-blue);

}

.dropdown-menu li {
    padding: 0.3rem;
}

.dropdown-menu li a {
    color: var(--white);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-radius: 0.5rem;
}

.dropdown-menu li a:hover {
    background-color: var(--light-blue);
    border-bottom: none;
}

.slogan span {
    font-size: 0.8rem;
    color: var(--dark-blue);
}

/* NavBar End */

/* Carousel */

.carousel-item img {
    max-height: 530px;
    object-fit: cover;
}

/* Header End */

/* Our Services Start */

.our-services {
    background: #eeeeee;
    padding-block: 3rem;
}

.comman-headings h5 {
    font-size: 1rem;
    color: var(--light-black);
    font-weight: 600;
}

.comman-headings h3 {
    font-size: 32px;
    font-weight: 700;
}


.our-services .card {
    width: 95%;
    margin: 0 auto;
    height: 585px;
    overflow: hidden;
    padding-bottom: 0.3rem;
    border-radius: 1rem;
    position: relative;
    cursor: pointer;
}

.our-services .card h5 {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-blue);
}

.card-img {
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.card-img img {
    margin-bottom: 1rem;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.7s ease-in-out;
}




.our-services .card:hover img {
    transform: scale(1.1);

}

.services-btn,
.comman-btn {
    font-size: 1rem;
    background: var(--dark-blue);
    color: var(--white);
    padding: 8px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 0.5rem;
    font-weight: 500;
}


.services-btn:hover,
.comman-btn:hover {
    background: var(--yellow);
    color: var(--black);
}

.our-services .card-body {
    position: relative;
}

.card-numbers {
    position: absolute;
    right: 0;
    top: -60px;
    width: 60px;
    height: 60px;
    background-color: var(--dark-blue);
    color: var(--white);
    display: grid;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}


.card-text {
    height: 96px;
    overflow-y: hidden;
}

.services-btn {
    margin-top: 0.1rem;
    display: inline-block;
}

/* Our Services End */

/* Project Start */

.our-projects {
    padding-block: 3rem;
    background-color: #eee;
    margin-bottom: 3rem;
}





.about-vision-contact {
    margin-top: 2.1rem;
    background-color: var(--light-blue);
    padding: 1.3rem 1.5rem;
    padding-left: 4rem;
}

.about-vision-contact span {
    margin-right: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
}

.project-about {
    position: relative;
    margin-top: 1rem;
}

.project-about-btn {
    margin-top: 2rem;
}

.project-about i {
    font-size: 0.7rem;
    padding: 0.3rem;
    border-radius: 50%;
    color: var(--black);
    background-color: var(--light-blue);
}

.project-about ul {
    margin-bottom: 2rem;
    margin-left: -2rem;
}

.project-about ul li {
    margin-bottom: 0.5rem;
}

.our-projects img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    /* border: 1px solid #ccc; */
}



/* Project End */

/* Recent Projects Start*/

.recent-work {
    padding-block: 3rem;
    margin-block: 3rem;
    background-color: #eee;
}

.section3-btn {
    height: 50px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 2rem;
}


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 0.7rem;


}

.swiper-img {
    position: relative;
    width: 99%;
    height: 300px;
    overflow: hidden;

}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;

}

.swiper-slide:hover img {
    transform: scale(1.1) rotate(5deg);
}

.swiper-slide::before {
    content: '';
    background-color: rgba(255, 216, 3, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 0.7rem;
    transition: all 0.5s ease;
    transform: scale(0);

}

.swiper-slide:hover::before {

    transform: scale(1) rotate(360deg);

}

.swiper-img h4 {
    width: 90%;
    position: absolute;
    z-index: 2;
    bottom: 60px;
    left: 5%;
    padding: 0.6rem;
    background: rgba(255, 216, 3, 0.7);
    display: none;
}

.recent-work .swiper-slide a {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: max-content;
    margin: 0;
    height: auto;
    opacity: 0;

}

.swiper-slide:hover a {
    opacity: 1;
}

.project-btn {
    padding: 8px 20px;
}

.project-btn:hover {
    background-color: #023f5b;
    color: #fff;
}



/* Recent Projects End */

/* Gallery Section Start */

.gallery-images {
    width: 99%;
    height: 300px;
    overflow: hidden;
    border-radius: 1rem;
}

.gallery-section img {
    width: 100%;
    height: 100%;
    margin: 0.3rem;
    border-radius: 1rem;

    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    cursor: pointer;

}

.gallery-section img:hover {
    border-radius: 1rem;
    transform: scale(1.1);
}

.section4-btn {
    width: 120px;
    height: 45px;
}


/* Gallery Section End */

/* Footer Start */

.footer-top {
    margin-top: 5rem;
}

footer {
    background: var(--dark-blue);
    padding-block: 3rem;
    color: var(--white);
}



footer h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

footer ul {
    margin-left: -2rem;
}

.markets {
    margin-left: 4rem;
}

footer ul li {
    margin-bottom: 0.3rem;
}

footer ul li a {
    color: var(--white);
    font-size: 1rem;
}

footer ul li a:hover {
    text-decoration: underline;
}



.follow-us {
    margin-left: 5rem;
}

.self img {
    width: 110px;
    mix-blend-mode: multiply;
}

.self1 {
    position: absolute;
    right: 150px;
    bottom: -30px;
}

.self1 img {
    mix-blend-mode: multiply;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: unset;
}

.footer-logo {
    margin-left: 4rem;
}

.copywrite p {
    margin-top: 2rem;
    text-align: center;
    font-size: 15p;
}


.back-to-top {
    position: fixed;
    right: 8px;
    bottom: -15px;
}

.back-to-top:hover {
    transform: translateY(-8px);
}

.sub-footer {
    background: var(--yellow);
    padding: 0.6rem;
}

.sub-footer p {
    margin-top: 0.8rem;
}



/* Footer End */

/* Whatsapp */


/*Whatsapp*/
#whatsapp {
    /*display:none;*/
    position: fixed;
    right: 40px;
    bottom: 50px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    opacity: 1;
    z-index: 99990;
}

#whatsapp #whatsappMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgba(255, 255, 255, 0);
    width: 70px;
    height: 70px;
    color: #40c351;
    z-index: 9;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}

#whatsapp #whatsappMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background-image: url('../images/whatsapp.png');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}



@-webkit-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-webkit-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}


/* About Us Page Start */

.marginTop {
    margin-top: 3rem;
}

.ab_img {
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    overflow: hidden;
    border-radius: 1rem;
}

.about-section2 img {
    border-radius: 0.7rem;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: all 0.5s ease;
}

.about-section2 img:hover {
    transform: scale(1.05);
}

.about-para {
    margin-left: -0 !important;
}

.top-banner img {
    width: 100%;
    max-height: 450px;
    height: 60%;
    object-fit: cover;
}

.common-strip {
    width: 100%;
    padding-block: 10px;
    background-color: var(--dark-blue);
    font-size: 16px;
    color: #ffffff;
}

.page-name>a {
    color: #ffffff;
    font-weight: 500;
}

.page-name>a:hover {
    text-decoration: underline;
}

.pages-common-heading {
    width: 100%;
    color: #454545;
    font-size: 1.5rem;
    margin-block: 20px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.vision-img img,
.mission-img img {
    width: 30%;
    border: none;
    margin-bottom: 1rem;
}

.vision-mission {
    border: 1px solid #ccc;
    margin-inline: 2rem;
    padding-block: 2rem;
    padding-inline: 4rem;
}

.NML {
    margin-left: -4.3rem;
}

.about-section2 .marginTop {
    margin-top: 5rem;
}

/* About Us Page End */

/* Gallery Page Start */

.gallery-page-imgs {
    margin-top: -2rem;
}

.gallery-page-imgs>div div {
    padding: 1rem;
}

.gallery-page-imgs img {
    border-radius: 1.3rem;
    width: 300px;
    height: 300px;
    width: 99%;
    height: 100%;
    cursor: pointer;
}





.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80%;
    max-width: 1600px;
    height: 90vh;
    max-height: 800px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    overflow: hidden;
    transition: 1s;
    opacity: 0;
}

.popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.popup.active .close-btn,
.popup.active .image-name,
.popup.active .index,
.popup.active .large-image,
.popup.active .arrow-btn {
    opacity: 1;
    transition: opacity .5s;
    transition-delay: 1s;
}

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-weight: 300;
}

.image-name {
    opacity: 0;
}

.close-btn {
    opacity: 0;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    background: var(--yellow);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-btn i {
    margin: 0 auto;
    color: var(--black);
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-btn {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    border-radius: 50%;
    border: none;
    background: none;
    cursor: pointer;
}

.arrow-btn i {
    font-size: 1rem;
    color: var(--black);
    background-color: var(--light-blue);
    padding: 0.6rem;
    border-radius: 50%;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
    transform: translateY(-50%) rotate(180deg);
}

.arrow-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.index {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 80px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
}

.large-image {
    margin-top: 5%;
    width: 80%;
    height: 80%;
    object-fit: cover;
    opacity: 0;
    margin-bottom: 5%
}




/* Gallery Page End */

/* Contact Us Page Start */


.contact-bg {
    background: #eceaea;
    background-color: var(--light-blue);
    width: 100%;
    margin: 1em auto;
    padding: 20px;
    position: relative;
}

.contact-us-form {
    background: var(--white);
    padding: 4rem 2rem;
    padding-bottom: 3rem;
}

.contact-us-form h3,
.contact-us-information h3 {
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 24px;
    line-height: 20px;
    color: var(--light-black);
}

.contact-us-form input,
.contact-us-form textarea {
    padding: 0.6rem;
    margin-bottom: 0.2rem;
    width: 95%;
    border: 1px solid #ccc;
}

.contact-us-form label {
    font-size: 1.1rem;
}

.contact-us-form label a {
    color: var(--dark-blue);
}

.contact-us-form label a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.contact-us-form span input {
    width: 20px;
}

.contact-us-form .btn {
    margin-top: 0.3rem;
    text-align: center;
    border-radius: 0.3rem;
}

.contact-us-form .submit-btn {
    text-align: center;
    color: var(--white);
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 18px !important;
    line-height: 20px;
    transition: all 0.3s;
}

.contact-us-form .submit-btn:hover {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    color: var(--black);
}

.contact-us-form .reset-btn {
    font-weight: 500;
    margin-right: 0.4rem;
    background: var(--light-blue);
    color: var(--black);
    border: none;
}

.contact-us-form .reset-btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

.contact-us-information {
    background-color: var(--dark-blue);
    color: var(--white);
    height: 100%;
    padding: 4rem 2rem;
    padding-bottom: 3rem;
}

.contact-us-information>p {
    font-size: 1.3rem;
}

.address-phn-gmail i {
    font-size: 1.3rem;
    color: var(--dark-blue);
    background: var(--white);
    width: 1.3rem;
    height: 1.3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.3rem;
    margin-right: 0.6rem;
    border-radius: 50%;
}

.address-phn-gmail a {
    color: var(--white);
}

.address-phn-gmail a:hover {
    text-decoration: underline;
}

.contact-us-add,
.contact-us-phn,
.contact-us-gmail {
    font-size: 1rem;
    margin-top: 1.6rem;
}

.contact-us-add h5,
.contact-us-phn h5,
.contact-us-gmail h5 {
    font-size: 1rem;
}

.contact-footer {
    margin-top: -7px;
}

/* Contact US Page End */

/* Careers Page Start */


.career-section2 {
    margin-bottom: 70px;
}

.content {
    width: 100%;
    justify-content: space-between;
    margin-top: 30px;
}

.left-img {
    width: 95%;
    margin-right: 50px;
}

.para {
    font-weight: 600;
    margin-bottom: 30px;
}

.careers-image img {
    width: 90%;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

.right-form {
    width: 100%;
    overflow: hidden;
}

.right-form>form {
    padding: 15px;
    border: 1px solid #ccc;
    width: 90%;
}

.right-form>form>input,
textarea,
.upload-cv {
    padding: 7px 10px;
    font-family: 'Poppins', sans-serif;
    margin-block: 5px;
    border: 2px solid #ccc;
    border-radius: 3px;
}

.right-form>form>label {
    font-size: 12px;
    font-weight: 700;
}

.input-width {
    width: 100%;
}

textarea {
    max-width: 100%;
}

.submit-btn,
.reset-btn {
    background: #014a6d;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 40px;
    border: 1px solid #014a6d;
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    transition: all 0.3s ease;
}

.submit-btn:hover,
.reset-btn:hover {
    background: rgb(6, 107, 153)
}



/* Contact Us Page */

.contact-section1,
.timber-section1,
.career-section1 {
    margin-top: -7px;
}

.contact-section2 {
    margin-inline: 8%;
    margin-bottom: 70px;
}

.contact-us-information {
    width: 100%;
    justify-content: flex-start;
    gap: 50px;
}


/* Contact Us Left */

.left-form {
    width: 45%;
}

.left-form>form {
    padding: 15px;
    width: 90%;
}

.left-form>form>input,
textarea {
    padding: 7px 10px;
    font-family: 'Poppins', sans-serif;
    margin-block: 5px;
    border: 2px solid #ccc;
    border-radius: 3px;
}

.left-form>form>label {
    font-size: 12px;
    font-weight: 700;
}

.input-width {
    width: 100%;
}

textarea {
    max-width: 100%;
}


/* Contact Us Right */

/* Right Deatils Section */

.right-details {
    width: 50%;
}

.right-heading,
.form-heading {
    font-size: 19px;
    font-weight: 600;
    margin-top: 15px;
    color: #424242;
    margin-bottom: 10px;
}

.right-address {
    background: #a9e3ff;
    border: 1px solid #1374a2;
    padding: 15px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.right-address>p:first-child {
    font-size: 24px;
    font-weight: 600;
}

.right-bottom {
    text-align: center;
    border: 1px solid #ccc;
    box-shadow: inset 0 0px 22px 0 rgba(0, 0, 0, 0.1), 0 0px 18px 0 rgba(0, 0, 0, 0.10);
    padding: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.contact-details {
    padding-block: 10px;
    border: 1px solid #ccc;
}

.dot-border {
    width: 100%;
    border-top: 1.5px dashed #ccc;
    margin-top: -18px;
    margin-bottom: 15px;
}

.mob,
.email {
    color: #8c000d;
    font-weight: 600;
    padding-bottom: 6px;
    margin-bottom: 12px;
    font-size: 17px;
}

.contact-number,
.email-id>a {
    color: #424242;
}

.email-id>a:hover {
    text-decoration: underline;
    color: rgb(0, 145, 255);
}

.project-banner img {
    object-fit: cover;
}

/* Careers Page End */

/* Sitemap Start */
.quick-links h5 {
    font-size: 1.2rem;
    color: var(--light-black);
    margin-bottom: 1.5rem;
}

.quick-links>div>div div {
    background-color: var(--dark-blue);
    margin: 0.5rem;
    padding: 0.4rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-links a {
    width: 100px;
    background-color: var(--dark-blue);
    color: var(--white);

}

.quick-links>div>div div:hover .quick-links a {
    background-color: var(--yellow);
}

/* Sitemap End */

/* Extra Slider */

.slider {
    height: 550px;
    margin: auto;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-bottom: -5rem;
    display: none;
}

.E-btn {
    position: absolute;
    bottom: 30px;
}

.slider::after,
.slider::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}


.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
    right: 0;
    top: 0;
}

.slide-track {
    display: flex;
    width: calc(250px * 30);
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 15));
    }
}

.E-slide {
    height: 400px;
    width: 400px;
    margin-left: 0.6rem;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
}

.E-slide img {
    height: 320px;
    width: 320px;
    transition: all 1s;
    border-radius: 1rem;
    cursor: pointer;
}

.E-slide img:hover {
    transform: translateY(-15px);
}

/* Services Pages Cards */

.other-details {
    margin-top: 3rem;
    padding-inline: 3.5rem;
}


.other-details h5 {
    color: var(--dark-blue);
    font-weight: 600;

}


.services-page-cards .card {
    overflow: hidden;
    margin-bottom: 1rem;
    height: 21rem;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 2px 2px 8px #ccc;
}



.services-page-cards .card:hover {
    background-color: var(--black);
    color: var(--white);
}

.services-page-cards .card:hover h5 {
    color: #fff;
}

.other-details>p {
    margin-top: 3rem;
    border: 1px solid #ccc;
    background-color: #dbd9d9;
}

.other-details .card {
    height: 200px !important;
    overflow: hidden;
}

/* 2nd Link */

.erection-text {
    margin-top: 2rem;
    box-shadow: 0px 0px 25px #ccc;
    border: 1px solid #eee;
    padding-inline: 2rem;
    border-radius: 1rem;
}

.erection-text h4,
.other-details h4 {
    margin-top: 2rem;
    font-weight: 600;
    color: var(--dark-blue);
}


.erection-text strong {
    color: var(--dark-blue);

}

.erection-text p {
    margin-top: 1rem;
    text-align: justify;
}

.self img {
    width: 110px;
    mix-blend-mode: multiply;
    margin-left: -2rem;
}

.follow-us i {
    font-size: 1.2rem;
    margin-top: 1rem;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffd803;
}

/* Our Service */

.our_services h3 {
    font-weight: 700;
    text-align: center;
}

.our_services .col-lg-5>div {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 1rem;
}

.our_services img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 0.7rem;
}

.our_services h4 {
    font-weight: 600;
    font-size: 22px;
    color: var(--dark-blue);
}

.our_services h5 {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-blue);
}

.our_services ul {
    list-style: disc;
    margin-left: -1rem;
}

.our_services .row {
    box-shadow: 0 0 30px #ccc;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 1rem;
}


.our_services .row:hover img {
    transform: scale(1.05);
}