/* layout-css  */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth
}

ol,
ul {
    list-style: none;
}

:root {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

.container,
.container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

@media screen and (min-width: 768px) {

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

}

@media screen and (min-width: 992px) {

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

        .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

}

img,
svg {
    vertical-align: middle;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.mt-2 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 35px;
}

.mt-auto {
    margin-top: 70px;
}

.mb-0{
    margin-bottom: 0 !important;
}

[class*="row-gap"]{
    row-gap: 20px;
}

.row-gap-3{
    row-gap: 30px;
}

.align-items-center{
    align-items: center;
}

.justify-content-center{
    justify-content: center;
}

.text-center{
    text-align: center;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-weight: 700;
    line-height: 1.4;
    text-transform: capitalize
}

.h1,
h1 {
    font-size: 36px
}

.h2,
h2 {
    font-size: 32px
}

.h3,
h3 {
    font-size: 28px
}

.h4,
h4 {
    font-size: 24px
}

.h5,
h5 {
    font-size: 20px
}

.h6,
h6 {
    font-size: 18px
}


.head-seprator{
    display: flex;
    flex-flow: column;
    gap: 5px;
    margin-bottom: 35px;
}


/*style-css*/

:root {
    --primary: #F04B22;
    --secondary: #062c46;
    --light: #f1f1f1;
    --white: #ffffff;
    --black: #141414
}

* {
    font-family: Poppins, Arial, sans-serif;
}

a {
    color: var(--primary);
    text-decoration: none
}

:is(:is(ul, ol) li, p) {
    line-height: 2;
    color: #7b7b7b;
}


header {
    align-items: center;
    display: flex;
    position: fixed;
    top: 0;
    transition: all .3s ease-out 0s;
    width: 100%;
    padding-block: 15px;
    z-index: 99;
    background: #ffffffc7;
}

header.scrolledHeader{
    background: var(--white);
}

.site-logo img {
    height: 35px;
    width: auto;
}

header>.container {
    align-items: center;
    display: flex;
    justify-content: space-between;
}


.closetoggle,
.toggle-btn {
    cursor: pointer;
}


header .header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

header nav .primary-btn {
    display: none;
}

.menu {
    height: 100vh;
    padding: 70px 20px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    max-width: 400px;
    width: 100%;
    overflow-y: auto;
    z-index: 3;
    background: var(--black);
    transition: all .9s cubic-bezier(.23, 1, .32, 1)
}

#showMenu {
    transform: translate(0);
}

header nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

nav ul li a {
    color: var(--white);
    font-size: 16px;
    text-transform: capitalize;
}

nav ul .dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown ul {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
}

.dropdown.mobile_dropdown>ul {
    background: #1410105c;
    border: 1px solid #64aa4421;
    border-radius: 5px;
    opacity: 1;
    inset: 0;
    margin-top: 10px;
    padding: 15px;
    position: static;
    visibility: visible;
    flex: 100%;
}

.dropdown svg {
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 5px;
    transition: all .5s cubic-bezier(.23, 1, .32, 1);
    height: 15px;
    width: 15px;
    fill: #fff;
}

header .menu .closetoggle {
    position: absolute;
    inset: 15px;
    width: fit-content;
    height: fit-content;
}

.menu_overlay {
    background: #00000040;
    height: 100vh;
    inset: 0;
    position: fixed;
    transform: translateX(-100%) !important;
    transition: all .9s cubic-bezier(.23, 1, .32, 1);
    width: 75%
}

.active_overlay {
    transform: translate(0) !important;
}


.primary-btn {
    border: 0;
    border-radius: 30px;
    gap: 10px;
    overflow: hidden;
    padding: 10px 25px;
    width: fit-content;
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    display: flex;
    position: relative;
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
    transition: all 1s ease-in-out 0s;
}

.primary-btn:before {
    background: var(--white);
    content: "";
    height: 125px;
    left: -100%;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(55deg);
    transition: all 3s cubic-bezier(.19, 1, .22, 1);
    width: 80px;
}

.primary-btn:hover:before {
    left: 200%;
    opacity: .6;
    transform: translateY(-3px);
}

.border-btn {
    background: transparent !important;
    border: 2px solid var(--white);
}

.border-btn svg {
    transform: rotate(320deg);
    fill: var(--white);
}

.breadcrumbs{
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #e0dfdf;
}

.hero {
    position: relative;
    padding-block: 120px 50px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 49%);
    z-index: 0;
    pointer-events: none;
}

.single-hero:before{
    background: rgb(0 0 0 / 80%);
}

:is(.hero, .cta-bg) .hero-cont{
    flex-direction: column;
    display: flex;
    gap: 20px;
    z-index: 1;
    position: relative;
}

:is(.hero .hero-cont, .cta-bg, .copyright) :is(h1, .h2, .sub-ttl, p, a){
    color: var(--white);
}


.form-wrapper{
    border: 1px solid var(--light);
    background: var(--white);
    padding: 25px;
    z-index: 9;
    position: relative;
    border-radius: 10px;
}

form :is(input, select, textarea){
    background: var(--light);
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #ddd9d9;
    font-size: 16px;
    width: 100%;
    resize: none;
}

form :is(input, select, textarea):focus{
    border: 1px solid transparent;
    outline: 1px solid var(--primary);
}

.contact-form{
    background: #cccccc0d;
    border-color: #ccc;
}

.contact-form form textarea{
    height: 150px;
    resize: vertical;
}

.cta-bg {
    background: linear-gradient(90deg, rgba(1, 1, 1, .76), rgba(0, 0, 0, .7) 35%, rgba(0, 0, 0, .77)), url(../img/foot-cta-bg.webp) no-repeat 50% / cover fixed;
    margin-top: 70px;
    padding-block: 70px;
    position: relative;
}

.main-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
}

.about-us-img {
    height: 100%;
    position: relative;
    z-index: 3;
}

.succes-heading {
    font-size: 50px;
    font-weight: 700;
}

.success p {
    font-size: 20px;
}

.success p span {
    color: var(--white);
    background: var(--secondary);
    padding: 2px 5px;
}

.success {
    bottom: 0;
    height: 250px;
    padding: 32px;
    right: 0;
    text-align: center;
    position: absolute;
    width: 220px;
    background: var(--white);
    color: var(--black);
}

.mis-vis-card-wrap{
         position: sticky;
         top: 100px;
       }

       .mission-card{
         background: var(--secondary);
       }

       .vision-card{
         text-align: center;
    background: #fafafa;
    border: 1px solid #ccc;
       }

       .service-card.border-card{
        border: 1px solid var(--secondary);
        border-bottom: 5px solid var(--secondary) !important;
       }

    .mis-vis-card{
         padding: 30px;
         border-radius: 20px !important;
       }

       .mis-vis-cards{
         padding: 30px 30px 100px 30px !important;
       }

       .light-seprator :is(p, h2, .h2, strong, a){
         color: var(--white);
       }

       .light-seprator p{
         margin-bottom: 15px;
       }

       .service-card{
         background: #fafafa;
         border: 1px solid var(--light);
         padding: 20px;
         border-radius: 10px;
         display: flex;
         flex-direction: column;
         gap: 10px;
       }

       .service-card .card-icon{
             display: flex;
    align-items: center;
    gap: 20px;
       }

       .service-card .card-icon span{
         height: 60px;
    width: 60px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    outline: 1px dashed var(--secondary);
    outline-offset: 5px;
       }

       .cards-container{
         margin-top: -70px;
    padding-inline: 30px;
       }

       .cards-container .service-card p{
         font-size: 15px;
       }

       .sec-bg{
               background: #fafafa;
               padding-block: 50px;
            }

            :is(.service-card, .service-pg-card, :is(.service-pg-card, .service-card) .card-content){
               display: flex;
               flex-direction: column;
            }

            :is(.service-card, .service-pg-card){
               gap: 15px;
               height: 100%;
               border-radius: 10px;
               padding: 20px;
            }

            :is(.service-card, .service-pg-card) .card-content{
               gap: 10px;
            }

            :is(.service-pg-card, .service-card) p:not(.service-page .service-card p){
               font-size: 14px;
               display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
            }

            :is(.service-card, .service-pg-card) img{
                   height: 100%;
    object-fit: cover;
               border-radius: 10px;
            }

            :is(.service-card, .service-pg-card) a:has(img){
               height: 100%;
            }

            .service-pg-card.card-a{
               background: #ffff001c;
    border: 1px solid #e3e30054;
            }

            .service-pg-card.card-b{
               background: #b2ff0024;
    border: 1px solid #89a74524;
            }

            .service-pg-card.card-c{
               background: #00ff581c;
    border: 1px solid #67e2925c;
            }

            .service-pg-card.card-d{
               background: #0001ff0f;
    border: 1px solid #0001ff2b;
            }

            .service-pg-card.card-e{
                   background: #ff2d000a;
    border: 1px solid #ff2d0026;
            }

            .bg-texture{
               position: relative;
            }

            .bg-texture:after,
            .bg-texture:before{
               content: '';
               position: absolute;
            }

            .circle:after{
               height: 120px;
               width: 120px;
               background: url(https://wordpress.themehour.net/builda/wp-content/uploads/2025/06/section_shape_2_1.png) no-repeat center center / cover;
               right: 0;
                   top: -100px;
    z-index: -1;
            }

            .house-bg:after{
               height: 600px;
               width: 800px;
               background: url(https://bilder.crowdytheme-demo.com/modern-construction/wp-content/uploads/sites/3/2024/08/BG-image.png) no-repeat center center / cover;
               right: 0;
                   top: 900px;
    z-index: -1;
            }

            .bg-primary{
                background: var(--secondary);
    padding-block: 40px;
            }

            .review-card{
               padding: 30px;
               background: var(--secondary);
               position: relative;
            }

            .review-card :is(p, div, strong, em){
               color: var(--white);
               font-size: 15px;
            }

            .review-card:after,
            .review-card:before{
               content: '';
               position: absolute;
               clip-path: polygon(0 0, 0% 100%, 100% 100%);
               background: var(--white);
               height: 40px;
               width: 40px;
            }

            .review-card:after{
               left: -1px;
               bottom: -1px;
            }

            .review-card:before{
               right: -1px;
               top: -1px;
               transform: scale(-1);
            }

            .clients-logo-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding-left: 24px;
}

            .logo-col{
               flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    width: 150px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
            }

            .logo-col:not(.clients-logo-slider-wrapper .logo-col){
                width: 100%;
            }
            
            .logo-col img{
               max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
            }

            .logo-wrapper{
               gap: 20px;
               display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 20s linear infinite;
    padding: 8px 0;
            }

             @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .serviceSwiper{
        width: 100% !important;
    }

    .swiper .swiper-pagination-bullet{
            background: #ffffff;
    opacity: unset;
    }

    .swiper .swiper-pagination-bullet-active{
        background: var(--primary);
    }

footer{
        background: var(--secondary);
        padding-block: 50px;
    }

footer img{
    filter: brightness(0) invert(1);
}

footer p{
    color: #dddddd;
}

    footer :is(.foot-menu-col, .foot-menu-col ul){
        gap: 10px;
        display: flex;
        flex-direction: column;
    }

    footer .foot-menu-col .menu-hd{
        font-size: 20px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 7px;
    }

    footer .foot-menu-col .grid-menu{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
    }

    footer .foot-menu-col ul li a{
        color: #ccc;
        transition: all 0.3s ease-out 0s;
    }

    footer .foot-menu-col ul li a:hover{
        color: var(--white);
    }

    .footer-info{
        padding-block: 30px;
    }

    .info-col{
            display: flex;
    align-items: center;
    gap: 20px;
    }

    .info-col .info-text{
        display: flex;
        flex-direction: column;
    }

    .info-col span {
    position: relative;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

    .info-col span:after{
        content: '';
        position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: var(--primary);
    border-radius: 10px;
    inset: 0;
    transform: rotate(-45deg);
    }

    .info-col span:before{
        content: '';
        position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #f04b225c;
    border-radius: 10px;
    inset: 0;
    transform: rotate(345deg);
    }

    .copyright{
        text-align: center;
        padding: 10px 0;
        background: var(--secondary);
    }


/*mediaScreens-css____Start*/

@media (min-width: 992px) {
    .homepage-hero h1 {
        font-size: 52px;
        line-height: 1.3;
        font-weight: 600;
    }
}

@media (width <=1024px) {

    .mt-auto {
    margin-top: 40px;
}

.cards-container{
    padding-inline:  10px !important;
}

    header nav .primary-btn {
        display: flex !important;
    }

    .d-md-none,
    .bg-texture:after,
            .bg-texture:before{
        display: none;
    }

    .homepage-hero {
        padding-block: 100px 40px !important;
    }

    .hero .hero-cont {
        gap: 10px !important
    }

    .cta-bg{
        padding-block: 30px !important;
    }

    .main-heading {
        font-size: 25px !important;
    }
}

@media (600px <=width <=1024px) {}

@media (width <=600px) {
    .hero h1{
        font-size: 28px;
    }

    footer .foot-menu-col .grid-menu{
            grid-template-columns: auto !important;
    }
}