@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    /* scroll-behavior: smooth; */
}
body,html{
    /* width: 100%;
    height: 100%; */
    scroll-behavior: smooth;
}

:root{
    --navy:#051446;

}
.main{
  overflow: hidden;
}

/* Writing Css for Navbar ****************************************************************/
.Navbar{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 1rem 10rem;
    overflow: hidden ;
    z-index: 100;
    position: relative;
    align-items: center;
 
    
}
.container{
    background:var(--navy);
    padding: 2px;
}
    
.logo span{
    color: #fff;
}
.logo{
    width: 200px;
}
.logo img{
    width:100%;
    
}

.links ul{
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    
    
}


.links ul li a{
    text-decoration: none;
    color: #fff;
    position: relative;
    font-weight: 500;
}
.links  button{
    border: 0;
    outline: 0;
    background: orangered;
    padding: .8rem 1.7rem;
    cursor: pointer;
    border-radius: 20px;
    color: #fff;
    font-weight: 500;
 }
.logo h1{
    color:var(--yellow) ;
    color: #fff;
    cursor: pointer;
}

.links ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: orangered; 
    position: absolute;
    bottom: -6px;
    left: 0;
    transition: width 0.3s ease; 
  }
  
  .links ul li a:hover::after {
    width: 100%; 
  }
 
  .list i{
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
  }
  .list {
    display: none;
  }
 

.links.active{
    right: 0;
    width: 80%;
}



#list2 {
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}



  /* Media Querires For Navabr */
  @media(max-width:1050px){
    .Navbar{
        align-items: flex-start;
        margin: 1rem 1rem;
        z-index: 999;
        align-items: center;
        
       
    }
    .list{
    display: block;
   }
    .links ul{
        flex-direction: column;
        text-align: left;
        /* display: none; */
        align-items: flex-start;
        
    }
    .links ul li a{
        color: #fff;
    }

   
    .links{
        position: fixed;
        top: 0;
        right: -350px;
        background: #000;
        transition: .7s ease ;
        padding: 3rem;
        height: 100vh;
        z-index: 99;
        width: 0;
   
    }
    
  }
  
  /* Writing Css for Navbar ****************************************************************/


  /* Writing Css for Hero ****************************************************************/

  

.Hero{
    width: 100%;
    height: 100vh;
    background: url("./Assests/her02.jpg");
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
}
.Hero_content{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    
    
}

.Hero_img img{
    width: 100%;
    
   
}
.Hero_left{
    padding: 4rem 0 0 9rem;
    font-size: 1.7rem;
    color: #fff;
}

.Hero_left P{
    font-size: 1rem;
    margin-top: 1rem;
   
    font-weight: 400;
}
.Hero_left button{
    border: 0;
    outline: 0;
    background: orangered;
    padding: 1rem 1.7rem;
    cursor: pointer;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 1rem;
}

.hero_boxes{
    display: flex !important;
    position: absolute;
    top: 450px;
    justify-content: center;
    align-items: center;
    margin: 2rem 8rem;
    gap: 3rem;
    flex-wrap: wrap;
}
.box_content p{
    font-size: .9rem;
}
.box{
    width: 300px;
  border: 0px solid red;
  background: #fff;
  padding: 20px;
  box-shadow: 0 20px 20px rgba(0,0,0,0.3);
  border-radius: 10px;
  flex-wrap: wrap;
 cursor: pointer;
}

.box:hover{
    background:orangered;
    color: #fff;
}
.box:hover i{
    color:#fff;
    color: #fff;
}
.box_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    
}
.box_top h3{
    font-size: 1.3rem;
}

.box_top i{
    color: orangered;
    font-size: 2rem;
    animation: tofro 1s infinite linear alternate-reverse;
}
@keyframes tofro {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.2);
    }
}

@media(max-width:810px){
    .hero_boxes{
        display: flex;
        top: 300px;
        justify-content: center;
        align-items: center;
        margin: 1vw 10vw;
        gap: 2vw;
        flex-wrap: wrap;
        
    }
}
@media(max-width:500px){
    .hero_boxes{
        display: flex;
        top: 200px;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
        gap: 1rem;
        bottom: 100px;
       
        
    }
    .box_content p{
        font-size: .7rem;
    }
    .box_top h3{
        font-size: 1rem;
    }
    .box{
        width: 100%;
    }
    .Hero_left{
        font-size: .8rem;
        padding: .6rem;
    }
    .Hero_left p{
        font-size: 0.5rem;
        margin-top: 0.7rem;
    }
    .Hero_left button{
        padding: .8rem .6rem;
        font-size: .6rem;
        margin-top: .6rem;
    }
}

 /* Writing Css for Hero ****************************************************************/

/* Writing Css for About Us ****************************************************************/
.About_Us{
    /* width: 100%;
    height: 100vh; */
    margin: 17rem 5rem;
}


 .about_data{
    display: flex;
    justify-content:center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    
 }
.about_left{
    position: relative;
}
/* .about_right{
    width: 600px;
} */
 .about_left img{
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    border: 7px solid #fff;
    box-shadow: 0 5px 5px rgba(0,0,0,0.3);

 }

 .about_left .bg{
    width: 450px;
    height: 490px;
    background: var(--navy);
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;

 }
.about_left .clients{
    position: absolute;
     bottom: -20px;
     right: -40px;
     text-align: center;
     display: flex;
     flex-direction: column;
     gap: .5rem;
     background:var(--navy);
     color: orangered;
     padding: 1rem;
     font-size: 1.5rem;
     border-radius:10px ;
     font-weight: 700;
     border: 7px solid #fff;
     box-shadow: 0 5px 5px rgba(0,0,0,0.3);
}

 /* About Right */
 /* .about_right{
    display: flex;
    gap: 1rem;
 } */
 .about_right_data > :nth-child(1){
    color: orangered;
    font-weight: 600;
    margin-bottom: 0.7rem;
 }
 .about_right_data h2{
   font-size: 2rem;
 }

 .about_right_data .para{
    margin:1rem 0;
 }

 .about_right_points ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
   
 }

 .about_right_points ul li::before{
    content: "✔";
    margin-right: .5rem;
    width: 100px;
    height: 100px;
    border: 0px solid red;
   padding: .3rem;
   background: orangered;
   color: #fff;
   border-radius: 50%;

    
 }

 .about_right_btn button{
    border: 0;
    outline: 0;
    background: orangered;
    padding: .8vw 1.7vw;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    margin-top: 1rem;
   
 }





 @media(max-width:810px){
   .About_Us{
    margin: 14rem 1rem;
   }
}

@media(max-width:500px){
    .about_left img{
        width: 100%;
   
     }
     .bg{
        display: none;
     }
     .about_left .clients{
        
        bottom: 20px;
        right: 40px;
        padding: .7rem;
        font-size: 1rem;
        
     }
}

  /* Writing Css for About Us ****************************************************************/


    /* Writing Css for Video ****************************************************************/

.video_container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    flex-wrap: wrap;
  
}
.bg3{
    position: relative;
   
 
    
}
  video{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    outline: 7px solid #fff;
  
 
  

  }
/* 
  .bg3 .bg2{
    width: 450px;
    height:490px;
    background: var(--navy);
    border-radius: 10px;
    position: absolute;
   top: -50px;
   left: -50px;
   z-index: -1;
  }
.bg3 .overly{
    width: 800px;
    height: 500px;
    background: rgba(4, 22, 82,0.8);
    position: absolute;
    top: 0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    transition: 1s ease-in;
   


} */
.overly.active{
    height: 0;
    opacity: 0;
}

.overly i{
    font-size: 5rem;
    cursor: pointer;
    color: orangered;
   
    animation: tofro 1s infinite linear alternate-reverse;
}
@keyframes tofro {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.2);
    }
}

.overly h3{
    font-size: 2rem;
    color: #fff;
}






  @media(max-width:500px){
    .bg2{
        display: none;
    }
    video{
        width: 100%;
        height: 50vh;
        margin-top: 10rem;
        justify-content: center;
       
       
    }

    .video_container{
        justify-content: center;
    }
    .deal_box span{
        padding: .3rem;
    }
    .bg3{
        overflow: hidden;
    }
    .bg3 .overly{
       width: 100%;
       margin-top: 10rem;
       height: 100%;
       
        
    }
    
.overly h3{
    font-size: 1.5rem;
    color: #fff;
    margin-top: -10rem;
    
}
.overly i{
    font-size: 3rem;
}
  }


  .images{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10rem;
    gap: .7rem;
    padding: 1rem;
  }
  .images img{
    width: 170px;
    aspect-ratio: 4/3;
    object-fit: contain;
  }

      /* Writing Css for Video ****************************************************************/

      /* Writing Css for Why US ****************************************************************/

.why_Us{
    position: relative;
    margin-top: 10rem;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    
}

.center{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0rem 5rem;
    flex-wrap: wrap;
    gap: 3rem;
  
  
    
    
}
.why_right_data{
    position: relative;
    width: 600px;
}

.why_right_data img{
    width: 100%;
    border-top: 20px solid var(--navy);
    border-left: 20px solid var(--navy);
    border-radius: 20px;
    z-index: -1;
}

.over_div{
    display: flex;
    flex-direction: column;
    text-align: center;
    position: absolute;
    bottom: 0;
    color: orangered;
    font-weight: bold;
    background: var(--navy);
    font-size: 1.3rem;
    padding: 1.3rem;
    border: 5px solid #fff;
    border-radius: 20px;
}

.left{
    width: 100%;
    height: 50vh;
    background: var(--navy);
    position: absolute;
    top: 0%;
    z-index: 1;

}
.right{
    width: 100%;
    height: 50vh;
    background: var(--navy);
    position: absolute;
    bottom: 0%;
    
}


.why_left_data .top{
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.top span{
    color: orangered;
    font-weight: 500;
}

.top >:nth-child(2){
    font-size: 2rem;
    font-weight: bold;
}
.top >:nth-child(3){
    font-size: 1rem;
    margin-bottom: 1rem;
   
}

.points{
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.points ul li{
    list-style: none;
    margin-top: .7rem;
}

.points ul li::before{
    content: "✔";
    margin-right: 1rem;
    font-weight: bolder;
    color: orangered;
}


@media(max-width:1000px){
    .left{
        display: none;
    }
    .right{
        display: none;
    }
}

@media(max-width:500px){
    .why_left{
        width: 100%;
        padding: 1rem;
    }
    .why_right{
        width: 100%;
    }
    .why_right_data img{
        width: 100%;
        border-top: 10px solid var(--navy);
        border-left: 10px solid var(--navy);
    }
    .why_Us{
        position: relative;
        margin-top: 5rem;
        width: 100%;
        height: 100vh;
        
    }
    .center{
        
        /* height: 100vh; */
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0rem 1rem;
        flex-wrap: wrap;
        gap: 3rem;
        
    
    }
    
}





  /* Writing Css for Why US ****************************************************************/


/* Css for services */

.services{
    width: 100%;
   
    margin-top: 10rem;
   text-align: center;
 background:var(--navy);
  
   padding: 3rem;
  


}
.services > span{
    color: orangered;
    font-weight: 500;
 
}
.services > h3{
    font-size: 2rem;
    color: #FFf;
    margin: 1rem 0;
}
.cards{
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
   gap: 2rem;
   

}
.card{
   color: #FFf;
    border-radius: 20px;
    padding:1rem;
    margin-top: 2rem;
   
    border: 3px solid #fff;
  
    
}

.card_img img{
    width: 300px;
    height: 250px;
    object-fit: contain;
    
   
  

}

.card_info{
    display: flex;
    flex-direction: column;
    gap: .7rem;
    text-align: center;
    align-items: center;
   
}

.card_info p{
    font-size: .9rem;
    width: 250px;
    color: #ada9a9;
    
}

.card_info span{
    color: orangered;
    cursor: pointer;
    font-weight: bold;
    animation: xy 1s linear infinite alternate-reverse;
}

.card_info span::after{
    content: "→";
   margin-left: 1rem;
   animation: xy 1s infinite alternate-reverse;

}

@keyframes xy {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-10%);
    }
}

@media(max-width:500px){
    .card{
        width:100%;
        padding:.5rem;
    }
    .card_img img{
        width: 100%;
    }

    .services{
        padding: 1rem;
    }
}


/* css for .services */

/* css for banner */


.banner{
    width: 100%;
    margin-top: 5rem;
   height: 50vh;
    position: relative;
}

.banner_img img{
    width: 100%;
    height: 50vh;
    object-fit: cover;
}
.banner_text{
    position: absolute;
    top: 0;
    padding: 5rem;
    color: #fff;
    
}


.banner_text span{
    color: orangered;
    font-weight: bold;
    margin-bottom: 1rem;

}
.banner_text h3{
    font-size: 2rem;
    text-transform: capitalize;
    
}

.banner_text button{
    border: 0;
    outline: 0;
    background: orangered;
    padding: .8rem 1.7rem;
    cursor: pointer;
    border-radius: 20px;
    color: #fff;
    font-weight: 500;
    margin-top: 1rem;
}
@media(max-width:768px){
    .banner{
        display:none;
    }
}
/* css for banner */

/* css for works */



.works{
    width: 100%;
    height: 100vh;
    margin-top: 10rem;
    text-align: center;
    padding: 1rem;
}
.works > span{
    color: orangered;
    font-weight: bold;
}

.works > p{
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
}
.works_divs{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.work_box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 300px;
    height: 350px;
   border-radius: 20px;
    text-align: center;
    gap: .7rem;
     box-shadow: 0px 40px 40px 20px rgba(0, 0, 0, 0.2); 
     position: relative;
     overflow: hidden;
     padding: 1rem;
}
.work_box i{
    font-size: 2rem;
    color: orangered;
    font-weight: bold;
}
.work_box h3{
    font-size: 1.5rem;
}
.up_box{
    position: absolute;
    top: 0;
    left: 0;
    background:var(--navy);
    color: #fff;
    padding: 1.4rem;
    font-weight: bold;

}


/* css for works */
 /* css for feedback */

.feedback{
    position: relative;
    margin-top: 5rem;
    width: 100%;
    height: 100vh;
}
.feedback img{
  width: 600px;
 border-radius: 20px;
  
}

.feedback .test_div{
    width: 600px;
    height: 400px;
    background:var(--navy);
    position: absolute;
    top: -30px;
    z-index: -1;
    left: 30px;
    border-radius: 20px;
}

.feed_data{
    width: 400px;
    position: absolute;
    top: 50px;
   display: flex;
   justify-content: center;
   left: 450px;
   flex-direction: column;
   
   
   background: #fff;
   box-shadow: 0px 40px 40px 20px rgba(0, 0, 0, 0.2); 
   padding: 1.5rem;
   border-radius: 20px;

}

.stars{
    color: orangered;
    margin-bottom: 0.7rem;
}
.feed_data p{
    font-size: .9rem;
    margin-bottom: 0.7rem;

}

.feed_data span{
    color: orangered;
    font-weight: bold;
}

.feed_data {
    display: none;
  }
  
  .feed_data.show {
    display: block;
  }

  .btns{
    position: absolute;
    top: 0px;
    left: 750px;
    font-size: 1.5rem;
    cursor: pointer;
    color:#fff;
    font-weight: bold;
    background: var(--navy);
    padding: .5rem;
    border-radius: 10px;

  }


  @media(max-width:800px){
    .feedback img{
        display: none;
    }
    .feedback{
        margin-top: 40rem;
        padding: 1rem;
        margin-bottom: -25rem;
        /* height: 50vh; */
     
    }
    .feedback_card{
        padding: 1rem;
    }
    .feed_data{
        left: 0;
        width: 100%;
       
    }
    .btns{
        left: 50px;
    }
  }



  /* css for feedback */

  /* css for contact */





  .contact{
    margin: 2rem 6rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: baseline;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
    padding: 1rem;
 }
 .contact_box{
    padding: 1rem;
 }
 .form_data h3{
    background: var(--yellow);
    text-align: center;
    color: #fff;
    font-size: 2rem;
    padding: 1rem;
 }
 form{
     display: flex;
     flex-direction: column;
     width: 400px;
    
     justify-content: center;
    
    
 }
 
 .form_data{
     display: flex;
     flex-direction: column;
     gap: 1rem;
     padding: 1rem;
     
 }
 .d{
     display: flex;
     flex-direction: column;
     box-shadow: 0 30px 30px 20px rgba(0, 0, 0, 0.2);
     padding: 1rem;
     margin-top: -15px;
     gap: 1rem;
    
 }
 
 .form_data button{
     border: 0;
     outline: 0;
     padding: 1rem;
     font-size: 2rem;
     background: #000;
     color: #fff;
     cursor: pointer;
     margin-top: -20px;
     
 }

 form label{
    font-weight: bold;
 }
 
 form input{
     outline: none;
     border: 0;
     border-bottom: 3px solid orangered;
     font-size: 1.2rem;
     font-family: "poppins";
 }
 
 textarea{
     outline: none;
     border: 0;
     border-bottom: 3px solid orangered;
     resize: none;
     font-size: 1rem;
 }
 
 .contact_details h2{
     font-size: 2.3rem;
     color: orangered;
 }
 
 .contact_info{
     display: flex;
     flex-direction: column;
     gap: 1rem;
     margin-top: 2rem;
 }
 
 .contact_info p{
     font-weight: bold;
     color: orangered;
 }
 
 
 @media(max-width:600px){
     form{
         width: 300px;
     }
     .contact{
        
        gap: 0rem;
        justify-content: center;
        align-items: center;
        margin: 1rem 1rem;
        
     }
 }
 
 @media(max-width:900px){
    
     .contact{
         margin: 5rem 1rem;
        
     }
 }
 

  /* css for contact */



  footer{
    background: var(--navy);
    color: #fff;
    padding: 3rem;
    /* height: 60vh; */
   
}

.footer_content .about_us{
    width: 350px;
  
}

.footer_content span{
    font-weight: bold;
    font-size: 1.2rem;
    color: orangered;
}
.footer_content p{
    color: #ffffff;
    margin-top: .6rem;
    font-weight: 500;
}
.footer_content{
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap:wrap;
}
.img{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.img img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 2rem;
}