
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

header{
    width: 100%;
    height: auto;
}









nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    position: relative;
  }


 
  .dropdown-menu {
    width: 25rem;
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 160px;
  }
  
  .dropdown-menu li a {
    padding: 0 15px;
    display: block;
    color: black;
    text-decoration: none;
  }
  
  .dropdown-menu li a:hover {
    border-bottom: none;
    color: #d82027;
  }
  
 
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-icon {
    transition: transform 0.3s ease;
  }
  
  .dropdown:hover .dropdown-icon {
    transform: rotate(180deg); 
  }
  .dropdown:hover .dropdown-icon {
    display: inline-block;
  }    






















header nav{
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    /* border: 2px solid black; */
    background-color: #ffff;
    /* background-color: #ffa993; */
}

header nav input{
    display: none;
}

header nav .checkbtn{
    display: none;
    font-size: 22px;
    margin-right: 1.5rem;
}

header nav #logo{
    width: 11.5rem;
    height: auto;
}

header nav ul{
    display: flex;
    justify-content: center;
    align-items: center;

}

header nav ul li{
    list-style: none;
    margin-right: 2rem;
    margin-top: 15px;
}

header nav ul li a{
    text-decoration: none;
    font-size: 14.5px;
    color: #000;
    padding: 1rem 0;
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

header nav #active{
    background: linear-gradient(to right, #ef4428 0%, #ff435c 100%);
    color: #fff;
    padding: 1rem;
}
header nav #active:hover{
    border-radius: 10px;
    border-bottom: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0, .15);
}


header nav ul li a:hover{
    border-bottom: 2px solid #d6382c;
    border-radius: 0;
}


/* section 1 */



.bg-img{
    width: 100%;
    height: 80vh;
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
}

.bg-img .black{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bg-img .black h1{
    font-size: 40px;
    color: #fff;
    margin: 0;
}

.bg-img .black .head{
    width: 100%;
    font-size: 70px;
    color: #d82027;
    font-weight: bold;
    margin: 0;
    opacity: 0;
    /* position: fixed; */
    animation: slideRight 3s ease-out forwards;
}

.bg-img .black p{
    color: #fff;
    width: 58%;
    margin: 0;
    text-align: center;
    font-size: 17px;
}
.bg-img .black div{
    margin-top: 1.5rem;
}
.bg-img .black button{
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background: #d82027;
    border: none;
    margin-right: 1rem;
}

/* .bg-img .black button:hover{
    background-color: #d82027;
    
}

.bg-img .black button:hover a{
    color: #fff;
} */

.bg-img .black button a{
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}

.bg-img .slide-up {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: slideUp 3s ease-out forwards;
  }

@keyframes slideUp {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  
@keyframes slideRight {
    from {
      transform: translateX(100px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }





  


/* section2 */



.section2{
    width: 100%;
    height: auto;
    padding: 5rem 6rem;
}

.section2 .para1{
    width: 55rem ;
    height: auto;
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 0px;
    

}

.section2 .para2{
    font-size: 18px;
}

.section2 .our{
    width: auto;
    padding: 0.5rem 1rem;
    background: #d82027;
    border: none;
    border-radius: 10px;
    height: 3rem;
    margin-right: 2rem;
    
}

.section2 .our:hover{
    background-color: #e02c32;
}

.section2 .our:hover i{
    color: #fff;
}
.section2 .our:hover a{
    color: #fff;
}

.section2 .our a{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items:center;
    color: #fff;
}

.section2 .our i{
    font-size: 30px;
    margin-right: 5px;
    color: #fff;
}

.section2 .box{
    width: 100%;
    height: auto;
    margin-top: 2rem;
}

.section2 .box .box1{
    width: 20rem;
    height: auto;
    border-bottom: 2px solid rgb(219, 218, 218);
    margin-left: 6.5rem;
}

.section2 .box .box1 span {
    font-size: 50px;
    font-weight: bold;
}

.section2 .box .box1 p{
    font-size: 19px;
    margin: 0;
    padding: 0;
    padding-bottom: 1rem;
}

.section2 .box .box2{
    width: 20rem;
    height: auto;
    border-bottom: 2px solid rgb(219, 218, 218);
    margin-left: 8.5rem;
}

.section2 .box .box2 span {
    font-size: 50px;
    font-weight: bold;
}

.section2 .box .box2 p{
    font-size: 19px;
    margin: 0;
    padding: 0;
    padding-bottom: 1rem;
}



@media (max-width:768px) {
    .section2{
        width: 100%;
        height: auto;
        padding: 5rem 2rem;
    }

    .section2 .para1{
        width:100%;
        height: auto;
        font-size: 26px;
    }

    .section2 .para2{
        font-size: 16px;
    }

    .section2 .box .box1 {
        width: 100%;
        height: auto;
        margin-left: 0;
    }

    .section2 .box .box2 {
        width: 100%;
        height: auto;
        margin-left: 0;
        margin-top: 2rem;
    }
}

/* section3 */

.section3{
    width: 100%;
    height: auto;
    background-color: #c44a34;
    color: #fff;
    padding: 5rem 8rem;
}

.section3 h1{
    font-weight: bold;
}

.section3 p{
    color: #ffffff;
    font-size: 18px;
}



/* html,
        body {
          position: relative;
          height: 100%;
        } */
    
        
    
        .section3 .swiper {
          width: 100%;
          height: 100%;
          margin-top: 4rem;
        }
    
        .section3 .swiper-slide {
          text-align: center;
          font-size: 18px;
          background: #fff;
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
            overflow: hidden;
            color: white;
            border-radius: 12px;
        }
    
        .section3 .swiper-slide img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

       
          
        .section3 .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0; 
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); 
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
          }
          
          .section3 .swiper-slide:hover::before {
            opacity: 1;
          }
          
          .section3 .swiper-slide .overlay-content,
          .section3 .swiper-slide p {
            position: relative;
            z-index: 2;
          }
          

        .section3 .slide1{
            width: auto;
            height: 20rem;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: end;
            background-image:url(../images/Piped/PDN.jpg);
            padding: 1rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
        }

        .section3 .slide2{
            width: auto;
            height: 20rem;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: end;
            background-image:url(../images/Canals/canal2.png);
            padding: 1rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
        }

        .section3 .slide3{
            width: auto;
            height: 20rem;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: end;
            background-image:url(../images/DamsBarrages/tejj-o8iXJVAahUc-unsplash.jpg);
            padding: 1rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
        }


        .section3 .slide4{
            width: auto;
            height: 20rem;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: end;
            background-image:url(../images/slider/Flood.png);
            padding: 1rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
        }

        .section3 .slide5{
            width: auto;
            height: 20rem;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: end;
            background-image:url(../images/river.png);
            padding: 1rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
        }

        .section3 .slide6{
            width: auto;
            height: 20rem;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: end;
            background-image:url(../images/Canals/Drainage.png);
            padding: 1rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
        }


        .section3 .slide7{
            width: auto;
            height: 20rem;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: end;
            background-image:url(../images/Roads/arpan-goyal-TiHXNVTFYAU-unsplash.jpg);
            padding: 1rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
        }


        .section3 .slide8{
            width: auto;
            height: 20rem;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: end;
            background-image:url(../images/Canals/Feasibility\ Studies.png);
            padding: 1rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
        }


        .section3 .slide9{
            width: auto;
            height: 20rem;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: end;
            background-image:url(../images/Canals/DPR.png);
            padding: 1rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
        }
        .section3 .swiper-slide p{
            margin: 0;
            font-weight: bold;
            font-size: 26px;
            text-align: start;
        }

        .section3 .mySwiper .prev-icon .swiper-button-prev {
            /* color: #000; */
            font-size: small;
            width: 3rem;
            height: 3rem;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .section3 .mySwiper .next-icon .swiper-button-next {
            /* color: #000; */
            font-size: small;
            width: 3rem;
            height: 3rem;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .section3 .mySwiper1 .prev-icon .swiper-button-prev {
            /* color: #000; */
            font-size: small;
            width: 3rem;
            height: 3rem;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .swiper-button-prev:after {
            font-size: 25px !important;
        }
        
        .section3 .mySwiper1 .next-icon .swiper-button-next {
            /* color: #000; */
            font-size: small;
            width: 3rem;
            height: 3rem;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .swiper-button-next:after {
            font-size: 25px !important;
        }







        .section4{
            width: 100%;
            height: auto;
            background-color: rgba(0, 0, 0,1);
            padding: 0 6rem 5rem 6rem;
        }
        .section4 .div1{
            width: 100%;
            height: auto;
        }

        .section4 .div1 .box1{
            width: 55%;
            margin-right: 2rem;
            /* border: 2px solid #fff; */
            margin-top: 5rem;
            
        }

        .section4 .div1 .box2{
            overflow: hidden;
        }

        .section4 .div1 img{
            width: 28rem;
            height: auto;
            transition: transform 0.5s ease;
            display: block;
            /* border: 2px solid #fff; */
        }



 


.section4 .box2 img:hover,
.section4 .div2 .box1 img:hover {
    transform: scale(1.1); 
}


        .section4 h1{
            font-size: 60px;
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
        }

        .section4 p{
            width: 100%;
            font-size: 17px;
            color: #fff;
        }

        .section4 .div2{
            width: 100%;
            height: auto;
        }

        .section4 .div2 .box2{
            width: 55%;
            margin-left: 2rem;
            /* border: 2px solid #fff; */
            margin-top: 4rem;
        }

        .section4 .div2 img{
            width: 28rem;
            height: auto;
            transition: transform 0.5s ease;
            display: block;
        }


        .section4 .div2 .box1{
            overflow: hidden;
        }

        @media (max-width:768px) {
            .section4{
                width: 100%;
                height: auto;
                padding: 4rem 2rem;
            }

            .section4 .div1 .box1{
                width: 100%;
                height: auto;
                margin-right: 0;
                margin-top: 0;
            }

            .section4 .div1 img{
                width: 100%;
                height: auto;
            }
            .section4 .div2{
                margin-top: 2rem;
            }
            .section4 .div2 .box2{
                width: 100%;
                height: auto;
                margin-left: 0;
                margin-top: 2rem;
            }

            .section4 .div2 img{
                width: 100%;
                height: auto;
            }
        }



        /* section5 */

        .section5{
            width: 100%;
            height: auto;
            background-color: #ffffff;
            padding: 5rem 6rem 3rem 6rem;
        }

        .section5 h1{
            width: 100%;
            text-align: center;
            font-size: 45px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .section5 .box{
            width: 100%;
            height: auto;
            margin-top: 2rem;
        }

        .section5 .box .card{
            width: 22rem;
            height: auto;
            border: none;
            padding: 1rem;
            
            margin-right: 2rem;
        }

        .section5 .box .card1{
            background-color: #fcab97;
        }

        .section5 .box .card2{
            background-color: rgb(253, 226, 175);
        }

        .section5 .box .card3{
            background-color: rgb(229, 212, 239);
        }


        .section5 .box .card4{
            background-color: rgb(247, 189, 189);
        }

        .section5 .box .card5{
            background-color: #a6e1f5;
        }
        .section5 .box .card h3{
            color: #000000;
            border-bottom: 2px solid #fff;
            padding-bottom: 1rem;
        }

        .section5 .box .card:hover{
            translate:0 -20px ;
            transition: all 0.5s;
        }

        @media (max-width:768px) {

            .section5{
                padding: 5rem 2rem 3rem 2rem;
            }
            .section5 .box .card{
                width: 100%;
            }
        }


        /* section6 */

        .section6{
            width: 100%;
            height: auto;
            padding: 0 4rem 4rem 4rem;
        }

        .section6 h1{
            font-size: 45px;
            font-weight: bold;
            text-transform: uppercase;
            text-align: center;
            color: #e02c32
        }

        .section6 p{
            font-size: 16px;
            text-align: center;
            padding: 1rem 4rem;
        }

        .section6 .mySwiper1{
            width: 100%;
            height: auto;
        }

        .section6 .mySwiper1 .swiper-wrapper{
            width: 100%;
            height: auto;
            margin: 2rem 0;
        }

        .section6 .mySwiper1 .swiper-wrapper img{
            width: 12rem;
            height: auto;
        }


        @media (max-width:630px) {
            .section6{
                padding: 0 0 4rem 0;
            }

            .section6 .mySwiper1 .swiper-wrapper img{
                width: 100%;
                height: auto;
            }
        }
        





        footer{
            width: 100%;
            height: auto;
            background-color: #000000;
            color: #ffff;
            
        }

        footer img{
            width: 12rem ;
            height: auto;
            margin: 4rem 6rem 0 6rem;
        }

        footer .footer{
            width: 100%;
            height: auto;
            display: flex;
            gap: 5rem;
            padding: 2rem 6rem;
            /* margin-left: 3rem; */
        }
        footer .footer .foot-box1{
            width: auto;
            /* border: 2px solid #fff; */
            height: auto;
        }

        footer .footer h2{
            font-size: 30px;
            margin-bottom: 2rem;
        }

        footer .footer .foot-box1 p{
            color: #fff;
            font-size: 15px;
        }

        footer .footer .foot-box1 p a{
            color: gray;
            font-size: 15px;
        }

        footer .footer .foot-box1 h4{
            font-size: 18px;
            /* font-weight: bold; */
        }

        footer .footer .foot-box1 i{
            font-size: 22px;
            margin-right: 1rem;
            margin-bottom: 1.5rem;
        }

        footer .footer .foot-box1 iframe{
            width:350px;
             height:240px;
        }

        footer .foot-box2{
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1rem 0 0 0;
            margin: 0;
            background-color: rgb(54, 54, 54);
        }



        
/* #ff3912 #ef4428 #e33024   */

@media (max-width:768px) {
    header nav{
        width: 100%;
        height: auto;
        padding: 0;
    }

    header nav #logo{
        width: 10rem;
        height: auto;
        margin-left: 0.5rem;
    }


    header nav ul{
        position: fixed;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #d6382c;
        top: 4rem;
        left: -100%;
        padding: 1rem 0;
        transition: left 0.3s ease;
        z-index: 10000;
    }

    header nav ul li{
        width: 92%;
        text-align: center;
        line-height: 50px;
    }

    /* .dropdown-menu ul{
        background-color: #c5272f !important;
    } */

    .dropdown-menu li{
        line-height: 20px;
    }

    header nav ul li a{
        color: #ffff;
        font-family:Verdana, Geneva, Tahoma, sans-serif;
    }

    header nav .checkbtn{
        display: block;
    }

    #check:checked ~ ul {
        left: 0;
    }

    .dropdown-menu{
        width: 100% !important;
    }


    .bg-img{
        width: 100%;
        height: 80vh;
    }

    .bg-img .black h1{
        font-size: 30px;
        font-weight: bold;
    }

    .bg-img .black .head{
        font-size: 50px;
        margin: 0.7rem 0;
    }

    .bg-img .black p{
        width: 100%;
        padding: 0 1.5rem;
    }



    .section3{
        padding: 5rem 2rem ;
    }


    footer .footer{
        padding: 2rem ;
        /* margin-left: 3rem; */
    }

    footer img{
        margin: 4rem 0 -3rem 2rem;
    }

    footer .footer .foot-box1{
        margin-top: 4rem ;
    }

    footer .footer .foot-box1 iframe{
        width:100%;
         height:270px;
    }
}


@media (max-width:578px) {
    .bg-img .black h1{
        font-size: 25px;
        font-weight: bold;
    }
    .bg-img .black .head{
        font-size: 40px;
        margin: 0.7rem 0;
    }
  }



  /* OUR TEAM */


.teamsec1{
    width: 100%;
    height: 18rem;
    background-image: url(../images/Canals/canel.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}  

.teamsec1 .black{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.teamsec1 .black p a{
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.teamsec2 {
    width: 100%;
    height: auto;
    padding: 5rem 6rem 4rem 6rem;
    
}

.teamsec2 h2{
    font-weight: bold;
    /* margin-bottom: 0.5rem;  */
}

.teamsec2 h1{
    font-size: 60px;
    font-weight: bold;
    color: #d82027;
    letter-spacing: 0px;
    margin-bottom: 1rem;
}

.teamsec2 p{
    color: rgb(97, 97, 97);
    font-size: 19px;
}

.teamsec2 button{
    width: auto;
    padding: 0.8rem 1.5rem ;
    background-color:#d82027 ;
    border: none;
    border-radius: 40px;
    margin-top: 1rem;
}
.teamsec2 button a{
    color: #fff;
    text-decoration: none;

}

.teamsec2 img {
    width: 100%;
    height: 25rem;
    object-fit: contain;
    transition: transform 0.3s ease; 
  }
  
  .teamsec2 img:hover {
    transform: scale(1.1); 
  }

  .teamsec3{
    width: 100%;
    height: auto;
    padding: 1rem 4rem 4rem 4rem;
  }

  .teamsec3 h1{
    text-align: center;
    font-weight: bold;
    font-size: 50px;
  }

  .teamsec3 .card-box {
    width: 100%;
    height: auto;
    margin-top: 4rem;
  }

  .teamsec3 .card-box .card{
    width: 16rem;
    height: auto;
    margin-left: 2rem;
    border: none;
  }

  .teamsec3 .card-box .card .card-body i{
    font-size: 22px;
    color: #d82027;
  }

  .teamsec3 .card-box .card h5{
    font-weight: bold;
  }

  .teamsec3 .card-box .card p{
    padding: 0;
    margin: 0;
  }
/*  */
  .teamsec3 .card-box .card:hover{
    translate:0 -20px ;
    transition: all 0.5s;
}



.teamsec3 .card-box .form-container {
    width: 850px;
    height: auto;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    transform: translate(-50%, -110%);
    transition: transform 0.5s ease-out;
    z-index: 3;
    padding: 2rem;
}

.teamsec3 .card-box .form-container .profile{
    margin-right: 1.5rem;
}

.teamsec3 .card-box .form-container .profile h5{
    font-weight: bold;
    margin-top: 1rem;
}

.teamsec3 .card-box .form-container .profile p{
    margin: 0;
}

.teamsec3 .card-box .form-container i{
    font-size: 28px;
    float: right;
    margin-bottom: 2rem;
}

.teamsec3 .card-box .form-container.show {
    transform: translate(-50%, 17%);
}

.teamsec3 .card-box .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.teamsec3 .card-box .overlay.show {
    opacity: 1;
    pointer-events: auto;
}


  


  @media (max-width:768px) {
    .teamsec2 {
        width: 100%;
        height: auto;
        padding: 5rem 2rem 4rem 2rem;
        
    }

    .teamsec2 img {
        width: 100%;
        height: auto;
        margin-top: 2rem;
      }
      

    .teamsec3{
        padding: 1rem 2rem 4rem 2rem;
    }

    .teamsec3 .card-box{
        margin-top: 0;
    }

    .teamsec3 .card-box .card{
        width: 100%;
        height: auto;
        margin-left: 0;
        margin-top: 3rem;
    }

    .teamsec3 h1{
        font-size: 38px;
    }




    .teamsec3 .card-box .form-container{
        width: 95%;
        padding: 1rem;
    }

    .teamsec3 .card-box .form-container p{
        font-size: 15px;
    }
    .teamsec3 .card-box .form-container img{
        width: 12rem;
        height: auto;
    }

    .teamsec3 .card-box .form-container.show {
        transform: translate(-50%, 2%);
    }
  }



  @media (max-width:578px) {
    .teamsec3 h1{
        font-size: 30px;
    }

    .teamsec3 .card-box .form-container{
        width: 98%;
        padding: 1rem;
    }

    .teamsec3 .card-box .form-container p{
        font-size: 14px;
    }
    .teamsec3 .card-box .form-container img{
        width: 8rem;
        height: auto;
    }

    .teamsec3 .card-box .form-container.show {
        transform: translate(-50%, 2%);
    }
  }

  @media (max-width:388px) {
    .teamsec3 .card-box .form-container h5{
        font-size: 16px;
    }

    .teamsec3 .card-box .form-container p{
        font-size: 13px;
    }
  }
  


  /* ROADS AND HIGHWAYS */


  .roaddiv{
    width: 100%;
    height: 17rem;
    background-image: url(../images/Roads/Suryapet03.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .roaddiv .black{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .roaddiv .black a{
    text-decoration: none;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
  }

.raod{
    width: 100%;
    height: auto;
    padding: 4rem 6rem;
}

.raod h1{
    font-size: 60px;
    font-weight: bold;
    color: #d82027;
    margin-bottom: 2rem;
}

.raod p{
    font-size: 16px;
}






/* @keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.raod .imgdiv {
    width: 32rem;
    height: 28rem;
    margin-left: 3rem;
    overflow: hidden;
    border-radius: 8px;
}

.raod .imgdiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
} */



.raod .imgdiv {
    width: 31rem;
    height: 27rem;
    margin-left: 4rem;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.6s ease;
}

.raod .imgdiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(0%);
    animation: float 3s ease-in-out infinite;
    border-radius: 10px;
}


.raod .imgdiv:hover img {
    transform: rotate(3deg) scale(1.05); 
    filter: grayscale(30%) brightness(110%) contrast(110%);
}


.roadsec{
    width: 100%;
    height: auto; 
    padding: 4rem 6rem;
}



.roadsec .row h2{
    width: auto;
    font-size: 44px;
    font-family:'Times New Roman', Times, serif;
    margin-bottom: 2rem;
    border-bottom: 2px solid #ef4428;
    padding-bottom: 0.5rem;
}

.roadsec .row p{
    font-size: 17px;
    color: rgb(63, 62, 62);
}



.roadsec .row .zoom-animate img {
    animation: zoomInOut 5s infinite ease-in-out;
    transform-origin: center center;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}


@media (max-width:768px) {
    .raod{
        width: 100%;
        height: auto;
        padding: 4rem 2rem;
    }

    .raod h1{
        font-size: 50px;
    }


    .raod .imgdiv {
        width: 100%;
        height: auto;
        margin-left: 0;
        margin-top: 3rem;
    }
    
    .raod .imgdiv img {
        width: 100%;
        height: 100%;
    }

    .roadsec{
        width: 100%;
        height: auto; 
        padding: 4rem 1rem;
    }

    .roadsec img{
        width: 90%;
        height: auto;
        margin: 3rem 0 1rem 0;
    }
}


@media (max-width:578px) {

    .roaddiv .black a{
        font-size: 27px;
      }
    .raod{
        width: 100%;
        height: auto;
        padding: 4rem 1rem;
    }

    .raod h1{
        font-size: 35px;
    }

    .raod p{
        font-size: 15px;
    }

    .teamsec2 h1{
        font-size: 40px;
    }
}


/* WATER RESOURCE */

.waterdiv{
    width: 100%;
    height: 17rem;
    background-image: url(../images/Piped/PDN.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .waterdiv .black{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .waterdiv .black a{
    text-decoration: none;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
  }

  .water{
    width: 100%;
    height: auto;
    padding: 4rem 6rem;
  }

  .water .waterdiv1{
    margin-right: 3rem;
  }

  .water .waterdiv1 h1{
    font-size: 60px;
    font-weight: bold;
    color: #d82027;
  }

  .water .waterdiv2{
    width: 32rem;
    height: auto;
  }

  .water .waterdiv2 img{
    width: 100%;
    height: 22rem;
    /* border-radius: 10px; */
  }

  .water img {
    --s: 360px;   /* the size of the image */
    --b: 8px;     /* the border thickness*/
    --g: 14px;    /* the gap */
    --c: #d82027; /* the color */
    
    width: var(--s);
    aspect-ratio: 1;
    outline: calc(var(--s)/2) solid #0009;
    outline-offset: calc(var(--s)/-2);
    cursor: pointer;
    transition: .3s;
  }
  .water img:hover {
    outline: var(--b) solid var(--c);
    outline-offset: var(--g);
  }
  
  .water img + img {
    border-radius: 50%;
  }


  /* WATER RESOURCES SECTION 2 */

  .watersec2{
    width: 100%;
    height: auto;
    background: #c44a34;
    padding: 5rem 6rem;
  }

  .watersec2 .watersec2-img{
    width: 27rem;
    height: auto;
    /* border: 2px solid black; */
    margin-right: 5rem;
  }

  .watersec2 .watersec2-img img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

.watersec2 .watersec2-img img:hover {
    transform: scale(1.1);
}

  .watersec2 .watersec2-content{
    height: auto;
  }

  .watersec2 .watersec2-content h1{
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Times New Roman', Times, serif;
  }

  .watersec2 .watersec2-content p{
    color: rgb(228, 226, 226);
    font-size: 19px;
  }




   /* WATER RESOURCES SECTION 3 */

   .watersec3{
    width: 100%;
    height: auto;
    background: #fff;
    padding: 5rem 6rem;
  }

  .watersec3 .watersec3-img{
    width: 29rem;
    height: auto;
    /* border: 2px solid black; */
    margin-left: 5rem;
  }

  .watersec3 .watersec3-img img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

.watersec3 .watersec3-img img:hover {
    transform: scale(1.1);
}

  .watersec3 .watersec3-content{
    height: auto;
  }

  .watersec3 .watersec3-content h1{
    color: #000;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Times New Roman', Times, serif;
  }

  .watersec3 .watersec3-content p{
    color: rgb(73, 72, 72);
    font-size: 19px;
  }


  @media (max-width:768px) {
    .water {
        width: 100%;
        height: auto;
        padding: 4rem 1.5rem;
    }
    .water .waterdiv2{
        width: 100%;
    }
    .water .waterdiv2 img{
        width: 100%;
        height: auto;
    }

    .water img{
        width: 100%;
        height: auto;
        margin-top: 3rem;
    }

    .watersec2{
    width: 100%;
    height: auto;
    padding: 5rem 1.5rem;
}

.watersec2 .watersec2-img {
    width: 100%;
    height: auto;
    place-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    margin-right: 0;
}
.watersec2 .watersec2-img {
    width: 100%;
}

.watersec2 .watersec2-content{
    width: 100%;
}

.watersec3 {
    width: 100%;
    height: auto;
    padding: 5rem 1.5rem;
}

.watersec3 .watersec3-img{
    width: 100%;
    height: auto;
    margin-top: 3rem;
    margin-left: 0;
}
  }
  @media (max-width:578px) {
   

    .waterdiv .black a{
        font-size: 28px;
    }
  }




  /* flood */

  .flood{
    width: 100%;
    height: auto;
    padding: 4rem 6rem;
  }



  .flood .flooddiv1{
    margin-right: 3rem;
  }

  .flood .flooddiv1 h1{
    font-size: 55px;
    font-weight: bold;
    color: #d82027;
    margin-bottom: 2rem;
  }

  .flood .flooddiv2{
    width: 32rem;
    height: auto;
  }

  .flood .flooddiv2 img{
    width: 100%;
    height: 22rem;
    /* border-radius: 10px; */
  }




  /* flood  section 2 */


   .floodsec2{
    width: 100%;
    height: auto;
    background: #c44a34;
    padding: 5rem 6rem;
  }

   .floodsec2  .floodsec2-img{
    width: 27rem;
    height: auto;
    margin-right: 5rem;
  }

   .floodsec2  .floodsec2-img img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

 .floodsec2  .floodsec2-img img:hover {
    transform: scale(1.1);
}

   .floodsec2  .floodsec2-content{
    height: auto;
  }

   .floodsec2  .floodsec2-content h1{
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Times New Roman', Times, serif;
  }

   .floodsec2  .floodsec2-content p{
    color: rgb(228, 226, 226);
    font-size: 19px;
  }


  /* flood  section 3 */


  /* WATER RESOURCES SECTION 3 */

  .floodsec3{
    width: 100%;
    height: auto;
    background: #fff;
    padding: 5rem 6rem;
  }

  .floodsec3 .floodsec3-img{
    width: 29rem;
    height: auto;
    /* border: 2px solid black; */
    margin-left: 5rem;
  }

  .floodsec3 .floodsec3-img img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

.floodsec3 .floodsec3-img img:hover {
    transform: scale(1.1);
}

  .floodsec3 .floodsec3-content{
    height: auto;
  }

  .floodsec3 .floodsec3-content h1{
    color: #000;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Times New Roman', Times, serif;
  }

  .floodsec3 .floodsec3-content p{
    color: rgb(73, 72, 72);
    font-size: 19px;
  }

  @media (max-width:768px) {
    .flood{
        width: 100%;
        height: auto;
        padding: 4rem 1rem;
      }

      .flood .flooddiv1{
        margin-right: 0;
      }

      .flood .flooddiv1 h1{
        font-size: 40px;
      } 
      
      .flood .flooddiv2{
        width: 100%;
        height: auto;
      }
    
      .floodsec2{
        width: 100%;
        height: auto;
        padding: 5rem 1.5rem;
    }
    
    .floodsec2 .floodsec2-img {
        width: 100%;
        height: auto;
        place-content: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
        margin-right: 0;
    }
    .floodsec2 .floodsec2-img {
        width: 100%;
    }
    
    .floodsec2 .floodsec2-content{
        width: 100%;
    }
    
    .floodsec3 {
        width: 100%;
        height: auto;
        padding: 5rem 1.5rem;
    }
    
    .floodsec3 .floodsec3-img{
        width: 100%;
        height: auto;
        margin-top: 3rem;
        margin-left: 0;
    }
  }






  /* career page  */

  .career{
    width: 100%;
    height: 18rem;
    background-image: url(../images/DamsBarrages/5.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .career .black{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .career .black a{
    text-decoration: none;
    color: #fff;
    font-size: 44px;
    font-weight: bold;
  }

  .carrersec1{
    width: 100%;
    height: auto;
    padding: 4rem 6rem;
  }

  .carrersec1 h1{
    font-size: 40px;
    font-weight: bold;
    color: #e02c32;
    text-align: center;
    text-transform: uppercase;
  }

  .carrersec1 .carrercard{
    width: 100%;
    height: auto;
    padding: 2rem 0;
  }
  .carrersec1 .card{
    width: 22rem;
    height: 10rem;
    border: none;
    margin-right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 5px solid #e02c32;
    border-radius: 0px;
    padding: 1rem;
  }


  @media (max-width:768px) {

    .carrersec1{
        padding: 4rem 1.5rem;
    }
    .career .black a{
        font-size: 37px;
    }

    .carrersec1 .carrercard{
        padding: 0;
    }

    .carrersec1 .card{
        width: 100%;
        height: 10rem;
        margin-top: 2rem;
    }

    .carrersec1 h1{
        font-size: 32px;
    }
  }