:root {
    --primary: #ed1111;
    --secondary: #FF6922;
    --light: #EFFDF5;
    /* --dark: #06362A;
    --lightdark:#06362A; */
    /* --lightdark: #01110e; */
    /* --main: #ffd700;
    --lightmain: #ffff95; */
    --main: #ffff;
    --lightmain: #ffff;


     /*  new  */
    --dark:#000;
    --lightdark:#000;
   
}
@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap');

*{
    font-family: 'Blinker', sans-serif;
}
/* ==============================================COMMON IN WEBSITE======================================================== */
/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 12px; 
}
@media screen and (min-width: 300px) and (max-width: 920px) {
    ::-webkit-scrollbar {
        width: 0px; 
    }
}
::-webkit-scrollbar-track {
    /* background: #06362A;  */
    background: #000;
}
::-webkit-scrollbar-thumb {
    /* background-color: #326558; */
    background-color: #686868;
    border-radius: 20px; 
    border: 2px solid #000; 
}
::-webkit-scrollbar-thumb:hover {
    background-color: #3e7164; 
}

.text-main {
    background: -webkit-linear-gradient(var(--main), var(--lightmain));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* p */
.text-lightmain {
    color: var(--light);
}

/* background */
.bg-main {
    background: linear-gradient(var(--main), var(--lightmain));
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-lightdark {
    background: linear-gradient(var(--dark),var(--lightdark));
}

.bg-golden:hover {
    background-color: var(--main);
}
.glowtext{
    text-shadow: 0 0 10px var(--main);
}


/* button transition*/
.btn-outline-warning{
    transition: 1s all;
    border-color:white!important;
}
.btn-outline-warning:hover{
    border-radius: 35px !important;
    transform: scale(1.1);
}
.scale{
    transition: 1s all;
}
.scale:hover{
    transform: scale(1.2)!important;
}
.widthtrans{
    letter-spacing: 2px;
}
.widthtrans:hover{
    letter-spacing: 4px;

}


/* form input */
.form-control {
    background-color:rgb(240, 240, 240)!important; 
    background: #326558;
    /* background: #326558 !important; */
    background: #e7e7e7 !important;
    /* color: white !important; */
    color: #737171  !important;
    border: 1px solid #ffffff !important;
    outline-color: 0.5px solid white !important;
}

.form-control::placeholder{
    color: rgb(136, 131, 131);
}
.form-control:focus {
    outline: 3px solid white; /* Custom outline color */
    background: white!important;
    color:black!important;
    box-shadow: 0 0 5px rgba(255, 254, 253, 0.75); /* Custom shadow effect */
}
.form-select::placeholder{
    color: rgb(185, 183, 183)!important;
}

#bg .shadow-lg,
#bg1 .shadow-lg{
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 60%) !important;
}


/*** back-to-top ***/
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}  
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}





/*** image hover ***/
.imageScale:hover img {
    transform: scale(1.15);
    transition: all 1s;
}




/*** Navbar ***/
.nav-bar {
    position: relative;
    /* margin-top: 45px; */
    /* padding: 0 8rem; */
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
    width: 100%;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

@media screen and (min-width: 300px) and (max-width: 920px) {
    #header {
       background: var(--dark);
    }
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--main) !important;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    transition: all 0.5s;
    color: var(--secondary) !important;
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}
.navbar .ssbuilders{
    color: brown !important;
}


@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: transform 0.5s, opacity 0.5s;
    }

    .navbar .nav-item:hover > .dropdown-menu,
    .navbar .dropdown-submenu:hover > .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }

    /* Adjust for nested dropdowns */
    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: 0;
        border-radius: 0.25rem;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: transform 0.5s, opacity 0.5s;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.navbar-light .dropdown-menu .dropdown-item {
    color: var(--main);
}

.navbar-light .dropdown-menu .dropdown-item:focus,
.navbar-light .dropdown-menu .dropdown-item:hover {
    transition: all 0.5s;
    color: var(--dark);
    background: linear-gradient(var(--main), var(--lightmain));
}
.dropdown-item{
    padding: 0.50rem 1rem!important;
}


.active,
.nav-link :hover {
    color: var(--secondary) !important;
}

.navbar-light .btn-button {
    background: linear-gradient(var(--main), var(--lightmain));
    color: var(--dark);
    border-radius: 20px;
    transition-property: border-radius;
    transition: 0.5s !important;
}

.navbar-light .btn-button:hover {
    border-radius: 5px;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
    top: -8px;
}

/* Positioning the submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.ssbuilderbackspace{
    position: absolute;
    background: beige;
    height: 40px;
    left: 0;
    right: 0;
    top: 16px;
    border-radius: 3px;
    bottom: 0;
    width: 100%;
    z-index: -1;
}
.ssbuilderbackspace:hover .ssbuilders{
    background: rgb(237, 186, 114);
    color: beige!important;
}

@media screen and (min-width: 300px) and (max-width: 920px) {

    .ssbuilderbackspace{
        position: absolute;
        background: beige;
        height: 40px;
        left: 0;
        right: 0;
        top: 3px;
        border-radius: 3px;
        bottom: 0;
        width: 100%;
        z-index: -1;
    }
}

/* ==============================================COMMON IN WEBSITE======================================================== */





/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

#col4 {
    transition: width 0.5s ease, opacity 0.5s ease;
}

#col8.full-width {
    width: 100% !important;
    flex: 0 0 100%;
    max-width: 100%;

}

.owl-carousel-item img{
    width: 100%;
    height: auto;
    transition: all 1s;
}

.owl-carousel-item {
    position: relative;
}

.front-banner {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 900px) and (max-width: 1200px) {

    #col4 {
        display:none;
    }
}

@media screen and (min-width: 300px) and (max-width: 720px) {

    #col4 {
        display:block !important;
    }
}


#content .full-banner-button{
    
    color: var(--main);
    background: linear-gradient(45deg, black, transparent);
    padding: 15px;
    border: unset;
    z-index: 1;
}
#content .animated-bounce{
    position: relative;
    animation: bounceAnimation 1s infinite;
}
@keyframes bounceAnimation {
    0%, 100% {
      transform: translatex(0); /* Initial and final position */
    }
    50% {
      transform: translatex(-10px); /* Bouncing position - adjust as needed */
    }
  }

#content .header-carousel .front-banner{
    height:700px;
}

@media screen and (min-width: 300px) and (max-width: 720px) {

    #content .header-carousel .front-banner {
        height: 350px;
    }
}

@media screen and (min-width: 720px) and (max-width: 900px) {

    #content .header-carousel .front-banner {
        height: 650px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;

}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: black;
    background: linear-gradient(var(--main), var(--lightmain)); */
    color: white;
    background: #000000ab;
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--main);
    color: black;
}

.owl-carousel .owl-dot {
    position: absolute;
    background-color: var(--main);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #DDDDDD;
}

.header-content-carousel .owl-nav{
    display: none;
}






/* ** feature_projects ***/
.feature-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .feature-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
}

.feature-carousel .feature-item{
    height: 250px;
}

.feature-item .feature-card:hover img{
    transform: scale(1.15);
    transition: all 1s;
}

.feature-item .feature-card img{
    transition: all 1s;
}

.feature-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    bottom: -44px;
    left: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
    margin-bottom: 6px;
}

.feature-carousel .owl-nav .owl-prev,
.feature-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #FFFFFF;
    background: var(--lightdark); */
    color: white;
    background: #000000ab;
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
    margin: 10px;
}

.feature-carousel .owl-nav .owl-prev:hover,
.feature-carousel .owl-nav .owl-next:hover {
    box-shadow: 0px 0px 25px 0px var(--main);
    background: var(--main);
    color: black;
}

#Feature_project {
    background: linear-gradient(rgb(2 2 2 / 64%), rgb(2 2 2 / 64%), rgb(2 2 2 / 64%)), url(../img/career_banner/CM20220927-b1a62-8a741.jpg) fixed center center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

#Feature_project .feature-carousel .feature-card {
    position: relative;
    height: 240px;
    overflow: hidden;
    transition: all 1s;
}

#Feature_project .feature-carousel .feature-item-over {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    background: linear-gradient(rgba(2, 2, 2, 0), rgb(2 2 2 / 52%), rgb(2 2 2 / 55%));
    transition: all 1s;
}

/* for feature projects transition now kept hide */
/* #Feature_project .feature-carousel .feature-item {
    transition: all 1s;
} */

/* #Feature_project .feature-carousel .feature-item:hover{
    position: relative;
    top: -1px;
    transform: translateY(-10px);
} */


#Feature_project .feature-carousel .feature-card:hover .feature-item-over {
    opacity: 0;
}






/* managment-people->home */
#management-people {
    background: linear-gradient(rgb(2 2 2 / 64%), rgb(2 2 2 / 64%), rgb(2 2 2 / 64%)), url(../img/career_banner/CM20220927-b1a62-8a741.jpg) fixed center center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

#management-people img{
    height: 230px;
}
@media screen and (min-width: 300px) and (max-width: 720px){

    #management-people img{
        height: 150px;
    }
}

#management-people .managment-people {
    position: relative;
    transition: all 1s;
}

#management-people .managment-people:hover {
    top: -1px;
    transform: translateY(-10px);
    box-shadow: 2px 0px 50px 10px rgba(203, 220, 214, 0.23);
}

#management-people .managment-people .management-people-over {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    overflow: hidden;
    transition: all 1s;
    background: linear-gradient(rgb(2 2 2 / 5%), rgba(1, 1, 2, 0.836));
}

#management-people .managment-people .management-people-over:hover {
    opacity: 1;
}







/*** testimonial-> home ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    bottom: -44px;
    left: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
    margin-bottom: 20px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #FFFFFF;
    background: var(--dark); */
    color: white;
    background: #000000ab;
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
    margin: 10px;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: 0px 0px 25px 0px var(--main);
    background: var(--main);
    color: black;

}

#Testimonial .testimonial-carousel .testimonial-item .testimonial-card {
    transition: all 1s;
}

#Testimonial .testimonial-carousel .testimonial-item .testimonial-card:hover{
    position: relative;
    top: -1px;
    transform: translateY(-10px);
    box-shadow: 2px 0px 50px 10px rgba(203, 220, 214, 0.23);
}


.star-rating i {
    color: #ddd;
    position: relative;
}

.star-rating i.glow {
    color: gold;
}

.star-rating i.half {
    background: linear-gradient(to right, gold 50%, #cccccc60 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

#Testimonial {
    background: linear-gradient(rgb(2 2 2 / 64%), rgb(2 2 2 / 64%), rgb(2 2 2 / 64%)), url(../img/career_banner/CM20220927-b1a62-8a741.jpg) fixed center center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}








/* ================================================**** about-page ****============================================== */
/*** aboutus->Aboutus-banner ***/
#aboutus_banner .container-fluid-1{
    position: relative;
}
#aboutus_banner .container-fluid-2{
    position: relative;
    height: 250px;
}

@media screen and (min-width: 300px) and (max-width: 720px){

    #aboutus_banner .container-fluid-1{
        height:80px !important;
    }
    #aboutus_banner .container-fluid-2{
        height:110px !important;
    }
}
 

#aboutus_banner .container-fluid-1 .banner-over{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(45deg, var(--dark), #0000009c);
}
@media screen and (min-width: 300px) and (max-width: 720px){

    #aboutus_banner .container-fluid-1 .banner-over{
        width: 100%;
    }
}
#aboutus_banner .container-fluid-2 .banner-over{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

#About_banner_carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(rgb(1 1 2 / 57%), rgb(1 1 2 / 57%)), url(../img/aboutus_banner/banner2.jpg);

}

#more {
    display: none;
}




/* Aboutus->header*/
.box {
    position: relative;
    width: 250px;
    height: 250px;
    transform-style: preserve-3d;
    animation: animate 25s linear infinite;
}

.box:hover {
    animation-play-state: paused;
}

.box span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 36deg)) translateZ(450px);
    -webkit-box-reflect: below 2px linear-gradient(transparent, transparent, rgba(4, 4, 4, 0.257));
}

.box span img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    border-radius: 10px;
    border: 4px double #fff;
}

@keyframes animate {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }

    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}

.box span img:hover {
    transform: translateY(-2px);
}




/* Aboutus-> counts */
#counts .container .card-body {
    /* background: #4d7657ba; */
    background: #e7e7e7;
    transition: 0.5s;
    position: relative;
}

#counts .container .card-body:hover {
    top: -1px;
    background: linear-gradient(var(--main),var(--lightmain));
    transform: translateY(-10px);
}
#counts .container .card-body:hover h2,
#counts .container .card-body:hover p {
  color: var(--dark)!important;
}
#counts .container .card-body:hover i{
    color: var(--dark);
}



#Aboutcounts .container .card-body {
    transition: 0.5s;
    position: relative;
}
#Aboutcounts .container .card-body:hover {
    top: -1px;
    background: linear-gradient(var(--main),var(--lightmain));
    transform: translateY(-10px);
}
#Aboutcounts .container .card-body:hover h2,
#Aboutcounts .container .card-body:hover p {
    color: var(--dark)!important;
}
#Aboutcounts .container .card-body:hover i{
    color: var(--dark);
}

#Aboutcounts{
    background: linear-gradient(rgb(2 2 2 / 64%), rgb(2 2 2 / 64%), rgb(2 2 2 / 64%)), url(../img/aboutus_banner/construction-2.jpg) fixed center center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}






/** aboutus--> clients **/
#clients {
    position: relative;
}

#clients img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    filter: grayscale(100);
}

#clients .client-item:hover img {
    filter: none;
    transform: scale(1.3);
}

.client-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .client-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.client-carousel .client-item {
    height: 80px;
    transition-property: border;
    transition: 0.5s;
}

.client-carousel .client-item:hover {
    border-radius: 40px;
}

.client-carousel .owl-nav {
    /* position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: -1; */
    position: absolute;
    width: 100%;
    height: 40px;
    bottom: -44px;
    left: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
    margin-bottom: -11px;
}

.client-carousel .owl-nav .owl-prev,
.client-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #FFFFFF;
    background: var(--dark); */
    color: white;
    background: #000000ab;
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
    margin: 10px;
}

.client-carousel .owl-nav .owl-prev:hover,
.client-carousel .owl-nav .owl-next:hover {
    box-shadow: 0px 0px 25px 0px var(--main);
    background: var(--main);
    color: black;
}

#clients {
    background: linear-gradient(rgb(2 2 2 / 64%), rgb(2 2 2 / 64%), rgb(2 2 2 / 64%)), url(../img/aboutus_banner/construction-3.jpg) fixed center center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}



/*** aboutus-> managment-people  ***/

#Aboutmanagement-people .managment-people {
    position: relative;
    transition: all 1s;
}
#Aboutmanagement-people img{
    height: 195px;
}


@media screen and (min-width: 300px) and (max-width: 720px){

    #Aboutmanagement-people img{
        height: 150px;
    }
}


#Aboutmanagement-people .managment-people:hover {
    top: -1px;
    transform: translateY(-10px);
    box-shadow: 2px 0px 50px 10px rgba(203, 220, 214, 0.23);
}

#Aboutmanagement-people .managment-people .management-people-over {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    overflow: hidden;
    transition: all 1s;
    background: linear-gradient(rgb(2 2 2 / 5%), rgba(1, 1, 2, 0.836));
}

#Aboutmanagement-people .managment-people .management-people-over:hover {
    opacity: 1;
}





/* =======================================** Feature-projects->page **====================================================== */

#feature-content .feature-card {
    position: relative;
    height: 280px;
}

#feature-content .feature-item-over {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    background: linear-gradient(rgb(2 2 2 / 5%), rgba(1, 1, 2, 0.836));
    /* background: linear-gradient(135deg, rgb(2 2 2 / 5%),rgba(1, 1, 2, 0.836)); */
}


/* ============================================*** property->page  ***=================================================================== */
#property .building-card {
    position: relative;
}

#property .building-card img {
    height: 250px;
    width: 100%;
    transition: all 1s;
}

.construction-work.hidden {
    display: none;
}

/* @media screen and (min-width: 300px) and (max-width: 720px){

    #property .construction-work{
        height:200px !important;
    }
} */

#property .building-card .building-card-over {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: all 1s;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    opacity: 1;
    background: linear-gradient(rgb(2 2 2 / 5%), rgba(1, 1, 2, 0.836));
}

#property .building-card:hover .building-card-over{
    opacity: 0;
}

/* new portfilio */

#property h2 {
    position: relative;
    color: black;
}

#property h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: white;
    bottom: 1px;
    left: calc(50% - 60px);
}

#property h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #e03a3c;
    bottom: 0;
    left: calc(50% - 20px);
}

/* #property .nav-pills .nav-link .active,
.nav-pills .show>.nav-link {
    color: var(--dark) !important;
    background: linear-gradient(var(--main), var(--lightmain)) !important;
}

#property .nav-link {
    color: var(--dark) !important;
    background: linear-gradient(var(--main), var(--lightmain));
    width: 200px;
}

#property .nav-link:hover {
    color: var(--dark) !important;
    background: linear-gradient(var(--main), var(--lightmain)) !important;
} */


#property .active{
    color: var(--dark) !important;
    background: linear-gradient(var(--main), var(--lightmain)) !important;
}

#property .nav-link {
    color: var(--main);
    font-weight: normal;
    cursor: pointer;
    transition: 1s all;
}

#property .nav-link:hover {
    transition: 1s all;
    color: var(--dark) !important;
    background: linear-gradient(var(--main), var(--lightmain)) !important;
}

#property .nav-linkStatus {
    color: var(--main);
    font-weight: normal;
    cursor: pointer;
    transition: 1s all;
}

#property .nav-linkStatus:hover {
    transition: 1s all;
    color: var(--dark) !important;
    background: linear-gradient(var(--main), var(--lightmain)) !important;
}



.portfolio-img {
    overflow: hidden;
}

.tab-content .portfolio-img img {
    transition: all 0.6s;
}

.tab-content .portfolio-img:hover img {
    transform: scale(1.15);
}

.tab-content .portfolio-img:hover .portinfo {
    opacity: 1;
    color: white;
}

.tab-content .portfolio-img .portinfo i:hover {
    color: #31a9e1;
    cursor: pointer;
}

.portinfo {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    z-index: 3;
    transition: all 0.3s;
    background: rgba(20, 19, 19, 0.526);
}

/* =============================== */







/*** Footer ***/
#footer .list-unstyled i {
    font-size: 10px;
    padding: 5px 5px;

}

#footer .social {
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    display: inline-flex !important;
}
#footer .social a{
    transition: all 1s;
    background-color: var(--dark);
    color: var(--main)!important;
}

#footer .social a:hover{ 
    background-color: var(--main);
}
#footer .social a:hover i{
    color: var(--lightdark) !important;
}

#footer .list-unstyled a {
    transition: all 1s;
    color: var(--light) !important;
}

#footer .list-unstyled a:hover {
    color: var(--main) !important;
    letter-spacing: 2px;
}

#footer input[type=text],
select {
    color: red !important;
}






/*  contact us  */
#bg {
    background: linear-gradient(rgb(2 2 2 / 64%), rgb(2 2 2 / 64%), rgb(2 2 2 / 64%)), url(../img/aboutus_banner/construction-1.jpg) fixed center center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}



/* career */
/* Container for the form */

#career {
    background: linear-gradient(rgb(2 2 2 / 64%), rgb(2 2 2 / 64%), rgb(2 2 2 / 64%)), url(../img/aboutus_banner/footer-bg.jpg) fixed center center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

#career .container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Form heading */
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--main);
}

/* Form group styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--lightmain);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="file"],
.form-group input[type="number"]
{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: black;
}

.form-group input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: linear-gradient(var(--main), var(--lightmain));
    border: none;
    border-radius: 4px;
    color: var(--dark) !important;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group input[type="submit"]:hover {
    /* background-color: #218838; */
}

.form-group select[type="dropdown"]
{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;   
    /* color: #7c7373 !important; */
}
/*career*/
.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin: 20px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.card-description {
    font-size: 1em;
    color: #555;
}

.button {
    color: (var(--main));

}



/* ============================================*** ss builders  ***=================================================================== */
#ss .building-card {
    position: relative; 
}

#ss .building-card img {
    height: 250px;
    width: 100%;
}

.construction-work.hidden {
    display: none;
}

/* #ss .nav-link {
    color: var(--dark) !important;
    background: linear-gradient(var(--main), var(--lightmain));
} */
#ss .building-card .building-card-over {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: all 1s;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    opacity: 1;
    background: linear-gradient(rgb(2 2 2 / 5%), rgba(1, 1, 2, 0.836));
}

#ss .building-card:hover .building-card-over {
    opacity: 0;
}
#ss h2 {
    position: relative;
    color: black;
}

#ss h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: white;
    bottom: -7px;
    left: calc(50% - 60px);
}

#ss h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 5px;
    background: var(--main);
    bottom: -9px;
    left: calc(50% - 20px);
}

/* #ss .nav-pills .nav-link .active,
.nav-pills .show>.nav-link {
    color: var(--dark) !important;
    background: linear-gradient(var(--main), var(--lightmain)) !important;
} */


#ss .active{
    color: var(--dark) !important;
    background: linear-gradient(var(--main), var(--lightmain)) !important;
}

#ss .nav-link {
    color: var(--main);
    font-weight: normal;
    cursor: pointer;
    transition: 1s all;
}

#ss .nav-link:hover {
    transition: 1s all;
    color: var(--dark) !important;
    background: linear-gradient(var(--main), var(--lightmain)) !important;
}




#ss .flip-card  button{
    padding: 8px 20px;
    border: 2px solid black;
    border-radius: 30px;
    background-color: #ffe4c4e6;
    color: brown;
    box-shadow: 0px 0px 80px 2px bisque;
    transition-property: background-color, color, border;
    transition: 1s;
}

#ss .flip-card  button:hover{
    background-color:  brown;
    color: #ffe4c4e6;
    border: 2px solid #fff;
}




.portfolio-img {
    overflow: hidden;
}

.tab-content .portfolio-img img {
    transition: all 0.6s;
}

.tab-content .portfolio-img:hover img {
    transform: scale(1.15);
}

.tab-content .portfolio-img:hover .portinfo {
    opacity: 1;
    color: white;
}

.tab-content .portfolio-img .portinfo i:hover {
    color: #31a9e1;
    cursor: pointer;
}

.portinfo {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    z-index: 3;
    transition: all 0.3s;
    background: rgba(20, 19, 19, 0.526);
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 200px;
    /* border: 1px solid #f1f1f1; */
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateX(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
    color: black;
}

/* Style the back side */
.flip-card-back {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(106, 13, 13);
    color: white;
    transform: rotateX(180deg);
    /* background-color: rgb(255, 30, 30);
    color: white;
    transform: rotateY(180deg); */
}




/* =============================== */