
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #000;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: #2A2A2A;
}
p{
    font-size: 15px;
}

#navbar.scrolled{
    position: fixed;
    background: #144e8c;
    top: 0 !important;
    padding: 15px 0px;
    transition: 0.2s;
}

#navbar.scrolled .container {
    background-color: inherit;
    backdrop-filter: inherit;
    box-shadow: inherit;
    -webkit-box-shadow: inherit;
    -moz-box-shadow: inherit;
}

/* Target the entire scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  background: #ffffff;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
  background-color: #144e8c;
  border-radius: 2px;
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
 
   background: #555;
}

#scrollBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #DBD8C3;
    width: 0%;
    z-index: 999999;
    transition: width 0.1s ease-out;
}

.hamburger div {
    width: 25px;
    height: 4px;
    background: #f2f5f7;
    margin: 4px;
    transition: all 0.3s ease;
    border-radius: 20px;
}
.hamburger{
    display: none;
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}
.fade:not(.show) {
    opacity: 1 !important;
}
/* =================================HEADER================================= */
header {
    position: absolute;
    width: 100%;
    top: 25px;
    z-index: 9999;
}
header .container {
    background-color: #144e8cc2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    box-shadow: 0px 10px 13px -7px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 10px 13px -7px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 10px 13px -7px rgba(0,0,0,0.2);
}
header .navbar {
    padding: 10px 33px;
}
header nav ul{
    display: flex;
    gap: 35px;
    justify-content: end;
    height: 42px;
    align-items: center;
    padding: 0;
    margin: 0;
}
header nav ul li a{
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}
header nav ul li .hover-animation{
    position: relative;
}
header nav ul li .hover-animation::after {
    position: absolute;
    top: -5px;
    left: -8px;
    height: 25px;
    width: 0%;
    content: '';
    display: block;
    background-color: #ffffff30;
    margin-top: 2px;
    transition: width .3s;
    border-radius: 20px;
    /* transform: translateX(-8px); */
}
header nav ul li .hover-animation:hover::after {
    width: 140%;
}
header nav ul li a i{
    margin-left: 5px;
    font-size: 11px;
}


#navbar.scrolled .dropdown_menu {
    background-color: #144e8c;
    top: 58px;
}
header nav ul .drop_down{
    position: relative;
}
.dropdown_menu {
    display: none;
    position: absolute;
    background-color: #144e8c7d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 260px;
    top: 43px;
    right: -175px;
    z-index: 1;
    flex-direction: column;
    height: 330px;
    border-radius: 0 0 10px 10px;
}
.dropdown_menu a {
    padding: 12px 16px;
    display: block;
    color: white;
}

.dropdown_menu a:hover {
    background-color: #063262;
}

.show {
    display: block;
}
/* ================================herosection============================== */
.herosection{
    position: relative;
}
.herosection .banner-slider-a{
    display: flex;
    align-items: end;
    background-image: url(../images/civil-banner.webp);
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.herosection .banner-slider-b{
    display: flex;
    align-items: end;
    background-image: url(../images/structural-banner.webp);
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.herosection .banner-slider-c{
    display: flex;
    align-items: end;
    background-image: url(../images/wooden-boxes-banner.webp);
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.herosection .banner-slider-d{
    display: flex;
    align-items: end;
    background-image: url(../images/steel-fabrication-banner.webp);
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.herosection .slick-slider {
    padding: 0;
}
.herosection .slick-dots {
    position: absolute;
    left: 50%;
    bottom: 2px;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
}
.herosection button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #7e7e7e;
    text-indent: -9999px;
    transition: 0.3s all ease-in;
    margin: 0px 5px;
}
.herosection .slick-prev,.herosection .slick-next{
    display: none !important;
}
.herosection li.slick-active button {
    background-color: #ffffff;
    width: 1.6rem;
    border-radius: 50px;
}
.herosection .hero-cnt {
    margin-left: 115px;
    margin-bottom: 140px;
}
.herosection h2 {
    color: #fff;
    font-size: 40px;
}
.herosection h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}
.herosection h2 span .tagname{
    color: #DBD8C3;
}
.herosection p {
    color: #fff;
    font-size: 15px;
    font-weight: 200;
}
.herosection .getinbttns {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    align-items: center;
}
.herosection .getinbttns .learnmore a {
    color: #FFF;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
}
.herosection .getinbttns .letscnnct a {
    color: #FFF;
    background: #144e8c;
    border: 1px solid #144e8c;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: 0.2s;
}
.herosection .getinbttns .letscnnct a:hover {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
}
.herosection .getinbttns .letscnnct a:hover i{
    background-color: #000000;
    color: #ffffff;
    rotate: 360deg;
}
.herosection .getinbttns .letscnnct a i {
    rotate: -45deg;
    background-color: #ffffff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #144e8c;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.herosection .trustedcount {
    display: flex;
    gap: 25px;
}
.herosection .trustedcount h5 {
    font-size: 25px;
    font-weight: 600;
    line-height: 22px;
    color: #fff;
}
.herosection .trustedcount p span{
    font-size: 12px;
    font-weight: 200;
}
/* .herosection .col-md-5 {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    margin-right: 115px;
} */
.social-icons {
    position: fixed;
    top: 50%;
    right: -100px;
    background-color: #144e8cb8;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    width: 50px;
    height: 100px;
    margin-right: 115px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 99999;
}
.social-icons .whtspp i {
    color: #fff;
    font-size: 25px;
}
.social-icons .call i {
    color: #fff;
    font-size: 20px;
}
.social-icons i {
    padding: 10px;
    border-radius: 50%;
    
}
.social-icons i:hover {
    background-color: #144e8c;
    animation: rotate 0.2s linear;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.herosection .slick-active .hero-cnt h2 {
    height: 100%;
    overflow: hidden;
}

.herosection .slick-active .hero-cnt p {
    overflow: hidden;
}

.herosection .slick-active .hero-cnt h2 span{
    display: block;
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.herosection .slick-active .hero-cnt p span{
    display: block;
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }

  100% {
    transform: translate(0, 0);
}
}

/* ====================About-section=================== */

.about-section{
    padding: 100px 0px;
    background-color: #1A1A1A;
}
.brand_slide {
    overflow: hidden;
    padding: 20px 0px;
    background-color: #00b9f0;
}
.about-section .about-cntt h3::after{
    content: url(../images/bg-dotss.png);
}
.about-section .abt-slider-cnt-a{
    background-image: url(../images/abt-slider-a.webp);
}
.about-section .abt-slider-cnt-b{
    background-image: url(../images/abt-slider-b.webp);
}
.about-section .abt-slider-cnt-c{
    background-image: url(../images/abt-slider-c.webp);
}
.about-section .abt-slider-cnt-a,.about-section .abt-slider-cnt-b,.about-section .abt-slider-cnt-c{
    display: flex;
    align-items: end;
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.about-section .slider-total-cnt {
    display: flex;
    width: 100%;
    padding: 30px 60px;
    color: #ffff;
    background-color: #00000057;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0px 0 20px 20px;
}
.about-section .slider-cnt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.about-section .slider-cnt ul li {
    font-weight: 200;
}
.about-section .slick-slider{
    position: relative;
}
.about-section .slick-slider i {
    position: absolute;
    bottom: 30px;
    z-index: 999;
    color: #ffff;
    font-size: 20px;
    background-color: #ffffff58;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50%;
}
.about-section .slick-slider .fa-arrow-right {  
    left: 130px;
}
.about-section .slick-slider .fa-arrow-left{
    left: 75px;
}
.animate {
    color: #e7e7e7;
    padding-bottom: 40px;
    font-size: 35px;
    font-weight: 500;
}
.about-section .abt-top-cnt{
    display: flex;
}
.about-section .bg-patterns {
    translate: 80px;
    transform: translateY(-47px);
    opacity: 0.4;
    scale: 0.8;
}
.about-section .bg-patterns .img1{
    animation: bounceRotate 5s infinite;
}

@keyframes bounceRotate {
  0% {
    transform: translateX(30px) ;
  }
  50% {
    transform: translateX(-30px) ;
  }
  100% {
    transform: translateX(30px);
  }
}

/* ==========================service-section=========================== */
.service-section {
    padding: 100px 0px;
    background: #fff;
}
.service-section .service-slider .service-box {
    margin: 30px 10px;
}

.service-section .service-slider .service-box .service-img{
    position: relative;
}
.service-section .service-slider .service-box .service-img::after {
    position: absolute;
    bottom: -8px;
    right: -1px;
    content: url(../images/service-vector.svg);
}
.service-section .service-cntt {
    padding: 0px 10px;
}
.service-section .service-slider .service-box img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(90%);
    transition: 0.2s;
}
.service-section .service-slider .service-box .service-cntt h5 {
    margin-top: 25px;
    font-weight: 500;
    position: relative;
    margin-bottom: 10px;
}
.service-section .service-slider .service-box .service-cntt h5::after {
    content: url(../images/service-arrow.svg);
    background-color: #144e8c;
    padding: 9px 14px;
    border-radius: 50%;
    position: absolute;
    top: -65px;
    right: -10px;
    z-index: 9;
    transition: 0.2s;
}
.service-section .service-slider .service-box:hover h5::after{
   transform: rotate(-45deg);
}
.service-section .service-slider .service-box:hover img{
   filter: grayscale(0%);
}
.service-section .service-slider .service-box .service-cntt p {
    font-weight: 300;
    margin: 0;
    margin-bottom: 35px;
    font-size:  15px;
}
.service-section .service-btns .getquote a::before {
    position: absolute;
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background-color: #cecbb226;
    border-radius: 100px;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
}
.service-section .service-btns .getquote:hover a::before{
    width: 100%;
}
.service-section .service-btns .getquote a{
    background-color: #144e8c;
    color: #ffffff;
    padding: 10px 20px;
    font-weight: 300;
    border-radius: 500px;
    font-size: 13px;
    position: relative;
    
}
.service-section .service-btns .readmore a{
    padding: 10px 20px;
    font-weight: 300;
    color: #144e8c;
    font-size: 15px;
}
.service-section .service-btns .readmore a:hover{
    text-decoration: underline;
}
.service-section .slick-arrow {
    color: #144e8c;
    position: absolute;
    right: 0;
    top: -30px;
    font-size: 30px;
    transform: rotate(90deg);
}
.service-section .fa-angle-down {
    right: 60px;
}
.service-btns {
    display: flex;
    align-items: center;
}

/* ==============================biadzgallery============================================== */

.biadzgallery {
    padding: 50px 0px 100px 0px;
    overflow: hidden;
    background: #fff;
}
.biadzgallery .row{
    justify-content: center;
}
.biadzgallery-top-cnt{
    display: flex;
    padding: 0px 115px;
    margin-bottom: 60px;
}
.biadzgallery-top-cnt .head-cnt h3{
    font-size: 40px;
}
.biadzgallery-top-cnt .head-cnt h3 span{
    color: #144e8c;
}
.biadzgallery-top-cnt .head-cnt-para p{
    margin-bottom: 35px;
}
.biadzgallery-top-cnt .letscnnct a {
    color: #FFF;
    background: #144e8c;
    border: 1px solid #144e8c;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    transition: 0.3s;
}
.biadzgallery-top-cnt .letscnnct a:hover {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    color: #000000;
}
.biadzgallery-top-cnt .letscnnct a:hover i{
    background-color: #000000;
    color: #ffffff;
    rotate: 360deg;
    transition: 0.3s;
}
.biadzgallery-top-cnt .letscnnct a i {
    rotate: -45deg;
    background-color: #ffffff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #144e8c;
    display: flex;
    justify-content: center;
    align-items: center;
}
.biadzgallery .swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: linear;
}

.biadzgallery .swiper-slide {
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    margin: 5px;
}

.biadzgallery .swiper-slide img {
    width: 100%;
    aspect-ratio: 2 / 2;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}

/* Image Popup Modal Styles */
.biadzgallery #imageModal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.biadzgallery #imageModal img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgb(0 0 0 / 37%);
    border-radius: 10px;
}


/* =================================certificates==================================== */
.certificates{
    background-color: #1A1A1A;
}
.certificates .stack-area {
    width: 100%;
    height: 300vh;
    position: relative;
    display: flex;
}
.certificates .stack-area .left {
    height: 110vh;
    flex-basis: 50%;
    position: sticky;
    top: 0;
}
.certificates .stack-area .right {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0;
}
/*Styling for the left elements content starts here...*/
.certificates .stack-area .left {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    flex-direction: column;
}
.certificates .stack-area .title {
    font-size: 45px;
    font-weight: 600;
    color: #fff;
}
.certificates .stack-area .sub-title {
    font-size: 15px;
    margin-top: 15px;
    color: #fff;
    font-weight: 200;
    margin-bottom: 50px;
}
.certificates .stack-area .letscnnct a {
    color: #FFF;
    background: #144e8c;
    border: 1px solid #144e8c;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    transition: 0.3s;
}
.certificates .stack-area .letscnnct a i {
    rotate: -45deg;
    background-color: #ffffff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #144e8c;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.certificates .stack-area .letscnnct a:hover {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    color: #000000;
}
.certificates .stack-area .letscnnct a:hover i{
    background-color: #000000;
    color: #ffffff;
    rotate: 360deg;
    transition: 0.3s;
}
/*Styling for the left elements content ends here...*/
.certificates .stack-area .card {
    width: 450px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    position: absolute;
    top: calc(50% - 125px);
    left: calc(50% - 175px);
    transition: 0.5s ease-in-out;
    border: none;
}
.certificates .stack-area .card a img {
    border-radius: 10px;
    width: 100%;
}
/*Styling for the card content ends here...*/
.certificates .stack-area .away {
    transform-origin: bottom left;
}


/* ====================================valuedclients===================================== */

.valuedclients {
    padding: 100px 0px;
    overflow: hidden;
    background: #fff;
}
.valuedclients .title {
    margin-left: 120px;
}
.valuedclients .title h4{
   font-size: 30px;
}
.valuedclients .title h4 span{
   color: #144e8c;
}
.valuedclients .brand-logos {
    display: flex;
    margin: 35px 0px;
    align-items: center;
    animation: scrollLeft 50s linear infinite;
}
.valuedclients .brand-logos:hover {
    animation-play-state: paused;
}
.valuedclients .slide-right {
    animation: scrollLeft 50s linear infinite reverse; 
}
.valuedclients .brand-logos img {
    width: 250px;
    margin: 0px 20px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 5px 15px -15px rgb(0 0 0 / 64%);
    -webkit-box-shadow: 0px 5px 15px -15px rgb(0 0 0 / 64%);
    -moz-box-shadow: 0px 5px 15px -15px rgb(0 0 0 / 64%);
}
/* .valuedclients .brand-logos .tamimi-img{
    width: 80px !important;
}
.valuedclients .brand-logos .afzco-img{
    width: 90px !important;
}
.valuedclients .brand-logos .babtain-img{
    width: 110px !important;
}
.valuedclients .brand-logos .ms-img{
    width: 110px !important;
} */

.valuedclients .brand-logos img:hover {
    transform: scale(1.1);
}
@keyframes scrollLeft {
    0% {
    transform: translateX(0%);
    }
    100% {
    transform: translateX(-100%);
    }
}

@keyframes scrollright {
    0% {
    transform: translateX(-100%);
    }
    100% {
    transform: translateX(100%);
    }
}
.valuedclients .brand-slider{
    margin-top: 50px;
}
/* .valuedclients .brand-slider::before{
    position: absolute;
    content: url(../images/brand-gradient.png);
    left: -15px;
    z-index: 9;
}
.valuedclients .brand-slider::after{
    position: absolute;
    content: url(../images/brand-gradient.png);
    right: -15px;
    z-index: 9;
} */


/* =======================getintouch=========================== */

.getintouch {
    padding: 0px 0px 70px 0px;
    background: #fff;
}
.getintouch .getin-head h4 {
    font-size: 30px;
    color: #144e8c;
    margin-bottom: 25px;
}
.getintouch .addrress img, .getintouch .contact img {
    width: 35px;
    margin-bottom: 25px;
}
.getintouch .addrress h6, .getintouch .contact h6{
    font-weight: 600;
}
.getintouch .addrress p, .getintouch .contact p{
    margin: 0;
    font-size: 14px;
    font-weight: 300;
}
.getintouch .addrress a, .getintouch .contact a{
    margin: 0;
    font-size: 14px;
    font-weight: 300;
}
.getintouch .g-map {
    margin-top: 50px;
    background-image: url(../images/gmap.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 415px;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
}
.getintouch .g-map .largemap {
    margin: 30px 50px;
}
.getintouch .g-map a {
    color: #FFF;
    background: #144e8c;
    border: 1px solid #144e8c;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    transition: 0.3s;
}
.getintouch .g-map i {
    rotate: -45deg;
    background-color: #ffffff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #144e8c;
    display: flex;
    justify-content: center;
    align-items: center;
}
.getintouch .g-map a:hover {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    color: #000000;
    
}
.getintouch .g-map a:hover i{
    background-color: #000000;
    color: #ffffff;
    rotate: 360deg;
    transition: 0.3s;
}

/* ==============================footer======================================== */

footer {
    background-color: #1A1A1A;
    padding: 90px 0px 30px 0;
    color: #fff;
}
footer a{
    color: #fff;
    font-size:14px ;
    font-weight: 200;
}
footer h5 {
    color: #144e8c;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
footer li {
    padding: 5px 0px;
}
footer .post-code img, footer .call img {
    width: 35px;
    height: fit-content;
}
footer .logo img {
    margin-bottom: 40px;
}
footer  p {
    font-weight: 200;
    font-size: 14px;
    margin: 0;
}
footer .post-code {
    display: flex;
    font-size: 14px;
    font-weight: 200;
    align-items: center;
    gap: 15px;
    margin: 20px 0px;
}
footer .call {
    display: flex;
    align-items: center;
    gap: 15px;
}
footer .biadz-rights{
    margin-top: 30px;
}
footer .biadz-rights p {
    margin: 0;
    margin-top: 30px;
    font-size: 12px;
}
footer .biadz-rights p a:hover{
    color: #fab73c;
}
footer .biadz-rights:before{
    content: '';
    width: 90%;
    height: 0.5px;
    background-color: #858585;
    display: block;
    margin: auto;
}
footer .our-links a:hover,footer .servicess a:hover,footer .social a:hover{
    text-decoration: underline;
    color: #DBD8C3;
    font-weight: 400;
}





/* ABOUT-US================================================================================================================================================
===========================================================================================================================================================
===========================================================================================================================================================
===========================================================================================================================================================
=========================================================================================================================================================== */


.abt-banner {
    background-image: url(../images/abt-banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #fff;
}
.abt-banner .abt-banner-cnt {
    margin-top: 70px;
}
.abt-banner .abt-banner-cnt h1 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 50px;
}
.abt-banner .abt-banner-cnt h5 {
    font-size: 16px;
    font-weight: 400;
}



/* .=======================about_biadz============================ */

.about_biadz{
    background-image: url(../images/certificates-bgimg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0px;
    color: #fff;
}
.about_biadz .abt-biadz-cnt {
    display: flex;
    padding: 0px 25px;
}
.about_biadz .abt-biadz-cnt .abt-biadz-img {
    background-image: url(../images/abt-image.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 490px;
    width: 490px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
}
/* .about_biadz .abt-biadz-cnt .abt-biadz-img .abt-biadz-img-cnt {
    display: flex;
    width: 100%;
    background-color: #00000057;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    align-content: center;
    justify-content: space-around;
    border-radius: 0 0 10px 10px;
}
.about_biadz .abt-biadz-cnt .abt-biadz-img .abt-biadz-img-cnt p {
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
    margin: 0;
}
.about_biadz .abt-biadz-cnt .abt-biadz-img .abt-biadz-img-cnt p span{
    font-size: 13px;
    font-weight: 200;
} */
.about_biadz .abt-biadz-cnt .abt-biadz-para {
    height: 490px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about_biadz .abt-biadz-cnt .abt-biadz-para h3{
    margin-bottom: 20px;
}
.about_biadz .abt-biadz-cnt .abt-biadz-para p{
    font-weight: 200;
    margin-bottom: 50px;
}
.about_biadz .abt-biadz-cnt .abt-biadz-para .letscnnct a {
    color: #FFF;
    background: #144e8c;
    border: 1px solid #144e8c;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    transition: 0.3s;
}
.about_biadz .abt-biadz-cnt .abt-biadz-para .letscnnct a i {
    rotate: -45deg;
    background-color: #ffffff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #144e8c;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_biadz .abt-biadz-cnt .abt-biadz-para .letscnnct a:hover {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    color: #000000;
    
}
.about_biadz .abt-biadz-cnt .abt-biadz-para .letscnnct a:hover i{
    background-color: #000000;
    color: #ffffff;
    rotate: 360deg;
    transition: 0.3s;
}


/* ===============================================whybiadz============================================= */

.whybiadz{
    background-color: #fff;
    padding: 100px 0px;
}
.whybiadz .whybiadz-all-cnt{
    display: flex;
}
.whybiadz .whybiadz-main-cnt{
    padding: 30px;
}
.whybiadz .whybiadz-main-cnt h5{
    font-size: 25px;
    font-weight: 600 ;
    color: #144e8c;
}
.whybiadz .whybiadz-main-cnt p{
    padding-bottom: 15px;
    
}
.whybiadz .whybiadz-main-cnt .letscnnct a {
    color: #FFF;
    background: #144e8c;
    border: 1px solid #144e8c;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    width: fit-content;
    align-items: center;
}
.whybiadz .whybiadz-main-cnt .letscnnct a i {
    rotate: -45deg;
    background-color: #ffffff;
    font-size: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    color: #144e8c;
    display: flex;
    justify-content: center;
    align-items: center;
}
.whybiadz .whybiadz-all-cnt .whybiadz-cnt {
    background-color: #DAECFF;
    margin: 10px;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    transition: 0.2s ;
}
.whybiadz .whybiadz-all-cnt .whybiadz-cnt:hover {
    background-color: #144e8c;
    color: #fff;
    rotate: -2deg;
}
.whybiadz .whybiadz-all-cnt .whybiadz-cnt:hover h6{
    color: #fff;
}
.whybiadz .whybiadz-all-cnt .whybiadz-cnt:hover a{
    color: #fff;
}
.whybiadz .whybiadz-all-cnt .whybiadz-cnt::before {
    content: url(../images/service-vector.svg);
    position: absolute;
    top: -6px;
    left: 2px;
    rotate: 180deg;
    scale: 1.1;
}
.whybiadz .whybiadz-all-cnt .whybiadz-cnt h6 {
    font-size: 20px;
    font-weight: 600;
    color: #144e8c;
    padding-left: 40px;
    margin-bottom: 15px;
    position: relative;
}
.whybiadz .whybiadz-all-cnt .whybiadz-cnt h6:before {
    content: url(../images/abt-why-choose-icon.svg);
    position: absolute;
    top: -33px;
    left: -35px;
    background: #144e8c;
    scale: 0.7;
    padding: 11px;
    border-radius: 50%;
}
.whybiadz .whybiadz-all-cnt .whybiadz-cnt p{
    font-size:15px;
    font-weight: 300;
}
.whybiadz .whybiadz-all-cnt .whybiadz-cnt a{
    font-size:14px;
}


/* ===============================================ourteam============================================= */

.ourteam{
    padding: 50px  0px;
    background-color: #fff;
}
.ourteam .top-all-cnt {
    display: flex;
    padding: 0px 110px;
    margin-bottom: 65px;
}
.ourteam .top-cnt p {
    background-color: #144e8c;
    color: #fff;
    padding: 5px 15px;
    width: fit-content;
    border-radius: 100px;
}
.ourteam .top-cnt h5{
    font-size: 35px;
    font-weight: 500 ;
}
.ourteam .top-cnt-para {
    height: 132px;
    display: flex;
    align-items: flex-end;
}
.ourteam .top-cnt-para p{
    margin: 0;
}
.ourteam .team-div .team-members .member-img {
    background-image: url(../images/outeammember-a.png);
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0px 8px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    justify-content: flex-end;
    color: #fff;
    border-radius: 10px;
}
.ourteam .team-div .team-members .slick-arrow {
    display: none !important;
}


.abtt-uss{
    border-radius: 0px 0px 30px 30px;
}


/*CIVIL_CONSTRCTION================================================================================================================================================
===========================================================================================================================================================
===========================================================================================================================================================
===========================================================================================================================================================
=========================================================================================================================================================== */


.civil-banner {
    background-image: url(../images/civil-banner.webp);
}



/* ========================================service-scnd-sec================================================= */

.service-scnd-sec{
    background-image: url(../images/certificates-bgimg.png);
    color: #fff;
    padding: 100px 0px;
}
.service-scnd-sec .scnd-sec-cnt h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
}
.service-scnd-sec .scnd-sec-cnt p {
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 150px;
}
.project-arrow i {
    background: #fff;
    color: #000000;
    padding: 5px;
    border-radius: 50%;
    font-size: 12px;
    transition: 0.2s;
}
.service-scnd-sec .letscnnct a {
    color: #000000;
    background: #DBD8C3;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
    transition: 0.3s;
}
.service-scnd-sec .letscnnct a i {
    rotate: -45deg;
    background-color: #000000;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #DBD8C3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-scnd-sec .letscnnct a:hover {
    background-color: #ffffff;
    color: #000000;
    
}
.service-scnd-sec .letscnnct a:hover i{
    background-color: #000000;
    color: #ffffff;
    rotate: 360deg;
    transition: 0.3s;
}
.service-scnd-sec .projects-done {
    padding: 30px;
    display: flex;
    margin-top: 100px;
    border-radius: 15px;
    background: #144e8c24;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.service-scnd-sec .projects-done:hover .project-arrow i{
    rotate: -45deg;
}
.service-scnd-sec .projects-done .projects-done-cnt p {
    font-size: 13px;
    padding-right: 100px;
    margin: 0;
}
.service-scnd-sec .projects-done .projects-done-cnt h6 {
    font-size: 23px;
    margin-bottom: 10px;
}


.service-scnd-sec .col-md-5 {
    display: flex;
    justify-content: flex-end;
}
 .civil-biadz-img {
    background-image: url(../images/abt-biadz-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 90%;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
}

.structural-biadz-img{
    background-image: url(../images/structural-cnt-img.png);
}
.steel-biadz-img{
    background-image: url(../images/steel-cnt-img.png);
}
.wooden-biadz-img{
    background-image: url(../images/wooden-cnt-img.png);   
}
.plumbing-biadz-img{
    background-image: url(../images/plumbing-cnt-img.png);   
}
.electrical-biadz-img{
    background-image: url(../images/electrical-cnt-img.png);   
}
.piping-biadz-img{
    background-image: url(../images/piping-cnt-img.png);   
}
/* .service-scnd-sec .civil-biadz-img .abt-biadz-img-cnt {
    display: flex;
    width: 100%;
    background-color: #00000057;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    align-content: center;
    justify-content: space-around;
    border-radius: 0 0 10px 10px;
}
.service-scnd-sec .civil-biadz-img .abt-biadz-img-cnt p {
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
    margin: 0;
}
.service-scnd-sec .civil-biadz-img .abt-biadz-img-cnt p span{
    font-size: 13px;
    font-weight: 200;
} */


/*  ==============================featured-products==================================== */

.featured-products {
    padding: 140px 0px 40px 0;
    background-color: #fff;
}
.featured-products .frst-slide-cnt {
    margin-left: 50px;
    padding: 25px 0px;
}
.featured-products .frst-slide-cnt p {
    font-size: 14px;
    margin-bottom: 80px;
}
.featured-products .frst-slide-cnt h3{
    font-size: 23px; 
}
.featured-products .frst-slide-cnt .letscnnct a {
    color: #ffffff;
    background: #0e427c;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
}
.featured-products .frst-slide-cnt .letscnnct a i {
    rotate: -45deg;
    background-color: #ffffff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #0e427c;
    display: flex;
    justify-content: center;
    align-items: center;
}
.featured-products  .frst-slide-cnt .letscnnct a:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1.5px solid #000000;
    
}
.featured-products .frst-slide-cnt .letscnnct a:hover i{
    background-color: #000000;
    color: #ffffff;
    rotate: 360deg;
    transition: 0.3s;
}
.featured-products .featured-product-slide .featured-img {
    display: flex;
    justify-content: flex-end;
    height: 300px;
}

.featured-products .slick-slide img {
    display: block;
    border-radius: 10px;
    width: 95%;
    object-fit: cover;
    object-position: left;
}
.featured-products .slick-arrow {
    color: #144e8c;
    position: absolute;
    right: 80px;
    top: -60px;
    font-size: 30px;
    transform: rotate(90deg);
}
.featured-products .fa-angle-down {
    right: 140px;
}
/* .featured-products .slick-arrow{
    display: none !important;
} */


/*CAREER===================================================================================================================================================
===========================================================================================================================================================
===========================================================================================================================================================
===========================================================================================================================================================
=========================================================================================================================================================== */


.career-banner {
    background-image: url(../images/career-banner.webp);
}
.steel-banner {
    background-image: url(../images/steel-banner.webp);
}
.structural-banner {
    background-image: url(../images/structuralengineering-bgimg.webp);
}
.wooden-banner{
    background-image: url(../images/wooden-banner.webp);
}
.plumbing-banner{
    background-image: url(../images/plumbing-banner.webp);
}
.electrical-banner{
    background-image: url(../images/electical-banner.webp);
}
.piping-banner{
    background-image: url(../images/piping-fab-banner.webp);
}
/* ================================career-form========================================== */

.career-form {
    padding: 100px 0px;
    background-image: url(../images/career-form-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.career-form .form-container {
    background: rgb(21 78 140 / 18%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 55px 40px 100px 40px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.career-form .form-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: left;
}
.career-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.career-form .form-group {
    flex: 1;
}

.career-form .form-group.full-width {
    flex: none;
    width: 100%;
}

.career-form .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: transparent;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.career-form .form-input::placeholder, .form-select::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.career-form .form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.career-form .form-textarea {
    height: 120px;
    resize: vertical;
}

.career-form .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><polyline points="6,9 12,15 18,9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.career-form .form-select option {
    background: #667eea;
    color: white;
    padding: 10px;
}

.career-form .file-upload-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.career-form .file-upload-input {
    display: none;
}

.career-form .file-upload-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    flex: 1;
}

.career-form .file-upload-button {
    /* background: rgba(255, 255, 255, 0.2); */
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
    color: white;
    /* padding: 10px 20px; */
    /* border-radius: 8px; */
    cursor: pointer;
    /* font-size: 14px; */
    transition: all 0.3s ease;
}

.career-form .file-upload-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.career-form .file-upload-wrapper {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career-form .file-upload-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.career-form .submit-btn {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.career-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.career-form .submit-btn::after {
    content: '→';
    font-size: 18px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-container {
        padding: 30px 15px;
    }

}

.career-form .letscnnct a {
    color: #FFF;
    background: #144e8c;
    border: 1px solid #144e8c;
    padding: 10px 15px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    transition: 0.3s; ;
}
.career-form  .letscnnct a i {
    rotate: -45deg;
    background-color: #ffffff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #144e8c;
    display: flex;
    justify-content: center;
    align-items: center;
}
.career-form  .letscnnct a:hover {
    background-color: #ffffff;
    border: 1.5px solid #ffffff;
    color: #000000;
}
.career-form  .letscnnct a:hover i{
    background-color: #000000;
    color: #ffffff;
    rotate: 360deg;
    transition: 0.3s;
}
/*CONTACT US===================================================================================================================================================
===========================================================================================================================================================
===========================================================================================================================================================
===========================================================================================================================================================
=========================================================================================================================================================== */

.contact-banner{
    background-image: url(../images/contact-banner.webp);
}


/* ===========================contact-form=============================== */

.contact-form {
    background-color: #ffffffff;
    padding: 70px 0px;
}
.contact-form .form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.contact-form .image-section {
    background-image: url(../images/contact-form-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.contact-form .image-section h2 {
    margin: 40px;
    font-size: 30px;
}
.contact-form .customer-service-rep {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1);
}
.contact-form .form-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-form .form-title {
    font-size: 30px;
    font-weight: 600;
    color: #134d8c;
    margin-bottom: 10px;
}
.contact-form .form-subtitle {
    color: #898989;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 300;
}
.contact-form .form-group {
    margin-bottom: 15px;
}
.contact-form .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}
.contact-form .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    font-size: 13px;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
    color: #000000;
}
.contact-form .form-input:focus {
    outline: none;
    border-color: #6366f1;
    background-color: white;
}
.contact-form .form-textarea {
    height: 100px;
    resize: vertical;
    font-family: inherit;
}
.contact-form .contact-info {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    border-radius: 15px;
}

.contact-form .contact-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
    color: white;
}

.contact-form .contact-icon i {
    background: #134d8c;
    /* padding: 10px; */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-form .contact-title{
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-form .contact-details {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.contact-form .contact-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-form .contact-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-form .form-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form .image-section {
        height: 200px;
    }
    
    .contact-form .form-section {
        padding: 30px 0px;
    }
    
    .contact-form .contact-info {
        padding: 0px;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 15px;
    }
    .contact-form .image-section h2 {
        margin: 25px;
        font-size: 20px;
    }
    .contact-form .form-title {
        font-size: 22px;
    }

    .contact-form .contact-icon i {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .contact-form .contact-icon {
        margin-bottom: 0px;
    }
}

/* Placeholder styling */
.contact-form .form-input::placeholder {
    color: #d6d6d6;
}
.contact-form .letscnnct a {
    color: #FFF;
    background: #144e8c;
    border: 1px solid #144e8c;
    padding: 10px 15px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    margin-top: 60px;
    transition: 0.3s;
}
.contact-form  .letscnnct a i {
    rotate: -45deg;
    background-color: #ffffff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #144e8c;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-form  .letscnnct a:hover {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    color: #000000;
}
.contact-form  .letscnnct a:hover i{
    background-color: #000000;
    color: #ffffff;
    rotate: 360deg;
    transition: 0.3s;
}
