@import url('https://fonts.googleapis.com/css2?family=Anek+Tamil:wght@100&family=Lobster&family=Pacifico&family=Kdam+Thmor+Pro&family=Poppins&display=swap');

@import url(//db.onlinewebfonts.com/c/04559eae8b7926d003f9f2e036c9e076?family=Blippo);
*{
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}
body{
    scroll-behavior: smooth;
    display: flex;
    justify-content: center;
    max-width: 100vw;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
.wrapper{
    max-width: 120rem;
    width: 100%;
}
#nav_container{
    background-color: #eeeaf5;
}
.nav{
    width: 100%;
    height: 70px;
}
.nav .top_left .logo img{
    width: 70px;
    height: 70px;
}
.toggle{
    display: none;
    position: absolute;
    right: 15px;
    width: 35px;
    height: 35px;
    overflow: hidden;
}
.toggle span{
    position: absolute;
    width: 35px;
    height: 4px;
    background-color: #777;
    border-radius: 5px;
    transition: .4s;
}
.toggle span:nth-child(1){
    transform: translateY(-11px);
    width: 25px;
    left:0;
}

.toggle span:nth-child(2){
    transform: translateY(11px);
    width: 15px;
    left:0;
}
.toggle.active span:nth-child(3){
    transform: translateX(40px);
}
.toggle.active span:nth-child(1){
    width:35px;
    transform: translateY(0) rotate(45deg);
}
.toggle.active span:nth-child(2){
    width: 35px;
    transform: translateY(0) rotate(-45deg);
}


#location_img{
    padding-right: 5px;
}
.menu ul a li{
    font-size: 14px;
    transition: .4s;
    font-weight: 600;
    background-color:rgb(73,68,159) ;
}
.menu ul a li img{
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.menu ul a:hover > li{
    background-color:rgba(220, 53, 69,.9);
    font-size: 14px;
}

.nav_number,.nav_location{
    font-family: Sans-serif;
}
.nav_number{
    color: #fff;
}
.nav_number:hover{
    background-color: #fff !important;
    color: #000;
    transition: .5s;
}
.nav_location:hover{
    background-color: #000;
    color: #fff;
    transition: .5s;
}
.nav_location:hover svg{
    fill: #fff;
}
.top_right{
    flex-grow: 1;
    padding-left: 20px;
    transition: .5s;
}
.top_right_content{
    border: 1px solid #383996;
    margin-right: 2px;
}

/* about */
.about,.our_mission,.where_we_are{
    width:50%;
    border-radius: 20px;
}
.our_mission_img img,.where_we_are_img img{
    width: 230px !important;
}
.about_page_img{
    position: relative;
    width: 100%;
    height: 380px;
}
.about_page_img img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_page_content .section_content{
    font-size: 20px;

}
.top_padding{
    padding-top: 70px !important;
}
.top_padding_100{
    padding-top: 100px !important;
}
.section_content{
    font-family: Comic Sans MS,Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: italic;
}
.section_con{
    background-color: #eeeaf5;
}
.section_img{
    width: 50%;
}
.section_img img{
    width: 230px;
}
.section_title{
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.section_title::before{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #383996;

}

/* welcome page */
.welcome_container  {
    position: relative;
    height: 350px;
}

.welcome_container::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background-image: url(https://img.freepik.com/free-photo/crop-architect-opening-blueprint_23-2147710985.jpg?w=1060&t=st=1655122660~exp=1655123260~hmac=4e27a00e6eb65582f512e5711ce051e35e3141c6d4d5b9248a64b7a62e9d5a57);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: -200px;
    z-index: -5;
}
.welcome_container::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0,0.3); */
    z-index: -4;
}
.title-1{
    font-family: Blippo,Georgia,serif;
    font-weight: 600;
    font-size: 70px;
    color: #dc3545 !important;
  

}
.subtitle{
    font-family: sans-serif;
    font-size: 30px;
    color: #0951a4;
    
}
.heading_red{
    color: #1261A0;
    font-size: 80px;
}
.heading_blue{
    color: #1261A0;
    font-size: 80px;
}
.button{
    background-color: #dc3545;
    color: #fff;
    font-weight: 700;
    transition: .5s;
}
.button:hover{
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}

/* Product */
.products{
    width: 1000px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 40px;
}
.products_section #product_container{
    padding-top: 100px !important;
}
.product_item:last-child{
    grid-column: 1 / 5;
}
.product_item .product_img{
    position: relative;
    width: 45px;
    height: 45px;
}
.product_item .product_img img,.product_item .product_img .color_img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.color_img{
    display: none;
}
.product_item:hover .product_img img{
    display: none;
}
.product_item:hover .product_img .color_img{
    display: block;
}

/* our client */
.client .client_container .client_item .client_box{
    position: relative;
    width: 200px;
    overflow: hidden;
    height: 140px;
}
.client_container {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
  box-sizing: border-box;
}
.client_item_con {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin-top: 40px;
  list-style: none;
}
.client .client_container .client_item .client_box img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@keyframes slide{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(calc(-200px * 8));
    }
}
.client_box {
  flex: 0 0 auto;
  width: 200px;
  height: 150px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client_box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 60s linear infinite;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .client_item {
    flex: 0 0 30%;
  }
}

@media (max-width: 480px) {
  .client_item {
    flex: 0 0 45%;
  }
}

/* contact */
#contact{
    font-family: Poppins;
}
.contact_title .section_title::before{
    background-color: #28154e !important;
}
#contact .contact_container{
    background-color: #eeeaf5;
    color: #28154e;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
#contact .map iframe{
    width: 100%;
    height: 100%;
}
.input_item input{
    width: 85%;

}
textarea{
    width:85% !important;
    height: 150px;
    resize: none;
}
.input4 button{
    background-color: #1e45a0;
    color: #fff;
}
.input4 button:hover{
    background-color:#11150a;
    color:#fff;
}
footer{
    background-color: #2B2B2B;
    color: #fff;
}
.top_footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.footer_img{
    position: relative;
}
.footer_img img {
    position: absolute;
    width: 110px;
    height: 110px;
    right: 0;
    object-fit: cover;
}
.footer_img p{
    position: absolute;
    width: 115px;
    height: 140px;
    right: 0;
    bottom: -5px;
    font-weight: 600;
    font-style: italic;
    font-size: 13px;
}
.footer_b_1{
    position: relative;
    padding-right: 5px;
}
.bottom_footer{
    border-top: 1px solid #ccc;
    color: #ccc;
}
.bottom_footer span{
    height: 17px;
    width: 2px;
    background-color: #777;
}
.footer_b_2{
    padding-left: 5px;
}
.footer_b_2 a{
    font-weight: 600;
    color: #fff;
}


/* contact page */
.contact_items{
    width: 1000px;
    display: grid !important;
    grid-template-columns:1fr 1fr 1fr 1fr;
    gap: 20px;
    margin: 0 auto;
}
.contact_items .contact_box{
    position: relative;
    width: 100%;
    height: 230px;
    background-color: rgb(73,68,159);
    color: #fff;
    transition: .4s !important;
    
}
.contact_icon_name i{
    font-size: 30px;
}
.contact_items .contact_box:hover{
    background-color: rgba(220, 53, 69,.9);
    transform: translateY(-10px) !important;
    color: #fff;
}
.contact_items .contact_box .contact_content > p{
    font-family: Poppins;
    font-size: 16px;
}


/* materials */
.material_container{
    margin: 0 55px;
}
.material_container .section_title{
    font-size: 26px;
}
.material_items .material_box{
    position: relative;
    width: 180px;
    margin-left: 20px;
    margin-bottom: 10px;
}
.material_items .material_box .material_img{
    position: relative;
    width: 100%;
    height: 140px;
    padding-bottom: 4px;
    overflow: hidden;
}
.material_items .material_box .material_img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    object-fit: contain;
}
.material_items .material_box .material_img:hover img{
    transform: scale(1.1);
}
.material_box_title p{
    font-size: 15px;
    padding: 10px;
}

/* division */
.division_container{
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: auto;
}
.division_content ul li{
    position: relative;
    width: fit-content;
    font-size: 17px;
    font-family: Poppins;
    /* margin-top: 5px; */
    padding: 7px;
}
.division_content ul li::before{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #28154e;
}
.division_content ul li:hover::before{
    animation: clr_change_animation .4s;
    animation-fill-mode: forwards;
}
.division_box .section_title::before{
    margin-bottom: 0;
    width: 0;
    animation: line_animation .4s;
    animation-fill-mode: forwards;
    background-color: #343a40 !important;
}
.division_content{
    margin-top: 25px;
}
@keyframes line_animation{
    0%{
        width: 0%;
    }

    100%{
        width: 100%;
    }
}
@keyframes clr_change_animation{
    0%{
        width: 0%;
    }
    100%{
        width: 100%;
    }
}


/* responsive */
@media screen and (max-width:1040px){
    .footer_img p{
        height: 165px;
    }
}
@media screen and (max-width: 1000px) {
    
    .menu ul a li{
        font-size: 12px;
    }
    .nav_number,.nav_location{
        padding: 8px 30px !important;
    }
    .material_items{
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .products,.client_container{
        width: 100%;
    }
    .products{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .product_item:last-child{
        grid-column: initial;
    }
    .contact_items{
        width: 75%;
        grid-template-columns:1fr 1fr;
    }
}
@media screen and (max-width:980px){
    .about_page_img{
        height: 250px;
    }
}
@media screen and (max-width: 889px) {
    .welcome_container::before{
        background-size: auto;
        background-position-y: -10px;
        background-position-x: 1-0px;
    }
    .material_container{
        margin: 0 30px;
    }
}
@media screen and (max-width: 865px) {
    #nav_container.active{
        min-height: 100vh;
        overflow-y: scroll;
        flex-direction: column;
    }
    .menu ul a li{
        font-size: 14px;
    }
    .menu ul a > li{
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    .drop_down_item{
        padding-top: 10px;
    }
    .nav_contact{
        margin-top: 5px;
    }
    .nav_number, .nav_location {
        padding: 12px 30px !important;
        font-size: 18px;
      }
    .nav_number,.nav_contact a{
        flex-grow: 1;
    }
    .toggle{
        display: flex;
        align-items: center;
        top: 18px;
    }
    .top_right{
        display: none !important;
    }
    .toggle.active ~ .nav .top_right{
        display: block !important;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 0;
        width: 100%;
        
    }
    .menu{
        display: block;
    }
    .menu > ul{
        display: block !important;
    }
    .menu ul a > li{
        margin: 0 !important;
    }
    .material_items {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .contact_items{
         width: 80%;
    }
    .division_container{
        width: 80%;
    }
}
@media screen and (max-width: 750px){
    .bottom_footer{
        font-size: 14px;
    }
}
@media screen and (max-width: 690px){
    .title-1{
        font-size: 42px;
    }
    .division_container{
        width: 90%;
    }
}
@media screen and (max-width: 630px){
    .material_container{
        margin: 0 0 0 30px;
    }
    .material_items {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
    .material_items .material_box{
        width: 140px;
        margin-left: 0;
    }
    .about_page_content{
        width: 80% !important;
    }
}
@media screen and (max-width: 590px){
    .welcome_container  {
        height: 250px;
    }
    .welcome_box {
        margin: 0 !important;
    }
    .title-1{
        font-size: 48px;
        line-height: 30px;
    }
    .section_con{
        background-color: initial;
        padding: 15px !important;
    }
    .section_img{
        width: initial;
    }
    .about_container{
        margin-top: 50px !important;
    }
    .about_container,.where_we_are_container{
        flex-direction: column-reverse;
    }
    
    .our_mission_container{
        flex-direction: column-reverse !important;
    }
    .about,.our_mission,.where_we_are{
        width: initial;
        padding-top: 0 !important;
    }
    .products{
        grid-template-columns: 1fr 1fr;
    }
    .product_item:last-child{
        grid-column: 1/3;
    }
    .client .client_container .client_item .client_box{
        width: 150px;
        height: 90px;
    }
    /* this is our client section scroll dots */
    .lSSlideOuter .lSPager.lSpg > li a {
        width: 5px !important;
        height: 5px !important;
    }
    /*  our client section scroll dots end */
    #contact .contact_container{
        grid-template-columns: 1fr;
    }
    #contact .map{
        height: 250px;
    }
    .top_footer{
        grid-template-columns: 1fr;
    }
    .footer_top_content{
        margin-top: 25px;
    }
    .footer_img{
        display: grid;
        grid-template-columns: 1fr;
    }
    .footer_img img{
        position: relative;
        left: 0;
        width: 85px;
        height: 80px;
    }
    .footer_img p{
        position: relative;
        width: 85px;
        height:10px;
        left: 0;
        margin-top: 5px;
        font-size: 11px;
    }
    .bottom_footer{
        margin-top: 7px !important;
        font-size: 12px;
    }
    .division_container{
        grid-template-columns: 1fr 1fr;
    }
    .division_box:nth-child(3){
        grid-column: 1 / 3;
    }
    .contact_items{
        width: 60%;
        grid-template-columns: 1fr;
    
   }

}
@media screen and (max-width: 450px){
    .division_title .section_title{
        font-size: 38px;
    }
    .division_container{
        grid-template-columns: 1fr;
    }
    .division_box:nth-child(3){
        grid-column: initial;
    }
    .about_page_content{
        width: 90% !important;
        padding: 0;
    }
}
@media screen and (max-width: 425px){
    .contact_form {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    .footer_container{
        padding: 30px 30px 0 !important;
    }
    .bottom_footer{
        padding: 15px 10px!important;
    }
    .contact_items{
        width: 70%;
   }
}

@media screen and (max-width: 360px){
    .nav_contact{
        flex-wrap: wrap;
    }
    .nav_location{
        margin-top: 5px;
    }
    .contact_items{
        width: 80%;
   }

}



   


.division_box:hover {
  transform: translateY(-5px);
}

.division_bx_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  text-align: center;
}

.division_content p, 
.division_content li {
  font-size: 15px;
  line-height: 1.6;
}

.division_content ul {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .division_container {
    flex-direction: column;
    align-items: center;
  }

  .division_box {
    max-width: 100%;
  }
}
.division_container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 0 5vw; /* Reduced from fixed px to responsive width */
  max-width: 100%; /* Ensure it can stretch across */
}

.division_box {
  flex: 1 1 400px;
  max-width: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.gallery_img_wrapper {
    width: 100%;
    aspect-ratio: 3/3; /* or 1/1 for square */
    overflow: hidden;
    border-radius: 2px;
    background-color: #f8f8f8;
}

.gallery_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery_img_wrapper:hover img {
    transform: scale(1.05);
}

  
