
 body{
    font-family: 'Roboto', sans-serif;
 }
 a{
    text-decoration: none;
    color: black;
 }
 .section-heading{
    text-align: center;
}
 li{
    list-style: none;
 }
 .graybg{
    background-color: aliceblue;
    padding: 4% 0% ;
 }
 .btn{
    position: relative;
    padding: .5rem 1rem;
    background-color: orangered;
    border-color:orangered;
    z-index: 1;
    color: wheat;
 }
 .btn:hover{
    color: white;
     
 }
 .btn::after{
    position: absolute;
    content: '';
    width: 0;
    left: 0;
   top: 0;
    height: 100%;
    border-radius:.5rem;
    background-color: black;
    z-index: -1;
    color: white;
    transition: .4s;
 }
 .btn:hover::after{
    width: 100%;
    color: white;
 }
/* dropdown menu start */
ul.primary-menu li{
    position: relative;
}
ul.primary-menu li ul{
    width: 300px;
    position: absolute;
    top: 180%;
    left: 0; 
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    z-index: 1;
    background-color: white;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    transition: all .4s ease-in-out;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
}
ul.primary-menu li ul li{
    list-style: none;
    left: 0;
    margin-left: 0px;
}
ul.primary-menu li:hover ul{
    opacity: 1;
    top: 140%;
    visibility: visible;
}
ul.primary-menu li ul li a:hover{
    letter-spacing: 1px;
    transition: .5s ease-in-out;
}


.navbar-nav li a:hover{
color: orangered;
}
.navbar-nav{
    margin-left: auto;
    gap: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
}
.header-info{
    gap: 1rem;
    display: flex;
    align-items: center;
}
.header-call-info{
 display: flex;
flex-direction: column;
align-items: center;
}
.header-search{
    font-size: 1.4rem;
    margin-left: 2rem;
    border-right: 1px solid black;
    padding-right: 1rem;
    
}
.header-contact{
    display: flex;
    align-items: center;
}
.header-search input{
    cursor: pointer;
}
.fa-phone-volume{
    color: orangered;
    font-size: 1.3rem;
    padding: .2rem;
}



/* home banner section */
.slider-content-wrapper{
align-items: center;
display: flex;
justify-content: center;
position: relative;
height: 80vh;
}
.home-left .slider-content h1{
    font-weight: bold;
    font-size: 3rem;
}
.home-right img{
width: 100%;
height: 100%;
}
.home-banner-icons{
position: absolute;
left: 0;
bottom: 0;
display: flex;
gap: 1rem;
}
.home-banner-icons a{
    font-size: 1.4rem;

}
.home-banner-icons a:hover{
    color: orangered;
    transition: .3s;
}
.slider-section{
    background-image: url(img/home-banner.jpg);
    /* position: -webkit-sticky;  
    position: sticky;
    top: 0;
    z-index: -1; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}



/* logo-section */
.logo-section{
    margin: 5% 0%;
}



/* aboutsection */

.tick-info i{
    color: orangered;
    padding-right: .4rem;
}
 .bold-font
{
    font-size: 2.5rem;
    font-weight: bold;
}
.about-img{
    position: relative;
}
.about-main-img{
    position: relative;
}
.about-child-img{
    position: absolute;
    right: 2rem;
    bottom: .4rem;
     
}
.about-child-content{
    position: absolute;
    right: 2rem;
    text-align: center;
    bottom: 3rem;
}
.about-child-content p{
    color: orangered;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: -1rem;
}
 

 


/* proces section */

.Transparent-process{
margin: 5% 0%;
}
.process-left-img{
    position: relative;
}
 
.play-animation {
    position: absolute;
    right: 12rem;
    bottom: 4rem;
    font-size: 2.3rem;
   
    width: 3.5rem;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 3.5rem;
    border-radius: 50%;
     transition: .4s;
    background-color: rgb(209, 21, 21);
    
}
.play-animation::before{
    content: '';
    width: 90px;
    height: 90px;
    position: absolute;
    top: -1rem;
    left: -1rem;
    background-color: red;
    border-radius: 50%;
    animation: playbtn 1s ease-in-out infinite;
}
@keyframes playbtn{
 0%, 30%{
    transform: scale(0);
    opacity: 1;
 }
 50%{
    transform: scale(1.5);
    opacity: .7;
 }
 100%{
    transform: scale(2);
    opacity: 0;
 }
 
}




.play-animation a{
    color: rgb(255, 255, 255);
}
.features-items{
    position: relative;
    padding: 1rem;
    background-color: rgb(253, 250, 250);
   margin-bottom: 1.6rem;
   display: flex;
   flex-direction: column;
   gap: 2rem;overflow: hidden;
   border-radius: .2rem;
   transition: .4s;
}
.features-items::after{
    width: 100%;
    height: 50%;
    background-color: rgb(255, 235, 235);
    content: '';
    top: -6rem;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    left: 0;
   
    position: absolute;
   
}
.features-items .ft-icon i{
    color: orangered;
    font-size: 3rem;
     position: relative;
    padding: 1rem;
    width: 5rem;
    height: 5rem;
    background-color: white;
    z-index: 1;
    border-radius: 50%;
     
}
.features-items:hover .ft-icon i{
    transition: .4s;
    color: white;
    background-color: rgb(168, 52, 52);
}
.features-items:hover{
    transform: translateY(-10px);
    transition: .4s;
}








/* Funding-circles style */
.Funding-circles{
    margin: 7% 0%;
}
.Funding-circles .heading{
    margin: 4rem 0rem;
}
.funding-all{
    
    padding-left: 2rem;
    margin: 6% 0%;
}
.funding-company-info h3{
    position: relative;
}

.Funding-circles .form{
    padding: 3rem;
    border-radius: 1rem;
background-color: rgb(250, 225, 225);
}
.Funding-circles .btn{
    width: 100%;
    overflow: hidden;
}
.funding-all ul{
    position: relative;
}
.funding-all ul::before{
    width: 1px;
    height: 88%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: orangered;
}
.funding-all ul li{
    position: relative;
    margin-bottom: 1rem;
}
.funding-all ul li strong{
    margin-bottom: 2rem;
    font-size: 1.7rem;
}
.funding-all ul li::before{
    content: attr(data-counter);
    position: absolute;
    border-radius: 50%;
    background: white;
    height: 42px;
    width: 42px;
    left: -52px;
    text-align: center;
    border: 1px solid red;
    top: 0;
    line-height: 40px;
}







/* middle-wrapper */
.middle-wrapper{
    background-color: orangered;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4% 0%;
    color: white;
}
 
.middle-text p{
    font-weight: bold;
    font-size: 2rem;
    border-right: 1px solid white;
    padding-right: 5rem;
}
 .contact-middle a{
    font-weight: bold;
    font-size: 2rem;
   
    color: white;
}
.contact-middle span{
    font-size: 2rem;
}
.middle-wrapper .contact, a:hover{
    color: white;
}  

.form-head-text{
    text-align: center;
    margin-bottom: 4%;
}









/* company inf o  */
 
.company-values{
    margin: 5% 0%;
}
.company-values h3{
    padding: 1rem 0rem;
font-size: 2.5rem;
}
.company-img img{
width: 95%;
}
.company-info-text >div{
    display: flex;
     
}
.company-info-text >div span{
    margin-right: 1rem;
}






/* leadership-team */
.leadership-team .single-team img{
    width: 98%;
    
    
}

.single-team .text-danger{
    font-size: 1.5rem;
    padding-top: 1rem;
    
}
.team-img{
    position: relative;
    overflow: hidden;
}
.single-team .team-links{
    position: absolute;
    bottom: 0;
      left: 1rem;
      right: auto;
}

.single-team .team-links ul{
    text-align: center;
}
.single-team .team-links ul li {
    display: inline-block;
}
  .team-links span{
     
    font-size: 1.3rem;
    height: 40px;
    width: 40px;
    place-items: center;
    background-color: white;
    border-radius: 50%;
    line-height: 40px;
    transform: translateY(10rem);
    visibility: visible;
    opacity: 0;
    transition: .4s;
}

.single-team:hover .team-links span{
    transform: translateY(0rem);
    visibility: visible;
    opacity: 1;
}
 






/* recent section star
 */

 .Recent-news{
    padding-bottom: 4%;
 }
.recent-wrapper >div img{
     width: 22rem;
}
.recent-wrapper >div{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.recent-wrapper{
    padding-top: 4%;
}
 
.recent-wrapper >div:hover >.recent-btn{
    color: orangered;
    letter-spacing: .1rem;
    transition: .4s;
}

























/* fotoer style */
.footer{
    background-color: rgb(22, 21, 21);
    padding: 6% 0%;
    color: rgb(247, 248, 248);
}
.footer .footer-single-items{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer .footer-single-items h3{
border-bottom: 1px solid rgb(82, 81, 81);
padding-bottom: 1rem;
}
.footer-single-items a{
    color: rgb(255, 255, 255);
    
}
.footer-single-items a{
    padding: 0rem 0rem;
    
     
}
.footer-single-items img{
    width: 9rem;
    height: 3rem;
}
.footer-single-items a:hover{
    color: orangered;
    transition: .4s ease-out;
    letter-spacing: .1rem;
}
.footer-single-items:nth-child(1) a{
    letter-spacing: 0rem;
}
.footer-single-items:nth-child(4) a{
    letter-spacing: 0rem;
}
.footer-icons{
   
    display: flex;
    gap: 1rem;
    }
    .footer-icons a{
        color: white;
        font-size: 1.4rem;
    
    }
    .footer-icons a:hover{
        color: orangered;
        transition: .3s;
    }
    .footer-contact{
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .footer-contact span{
        font-size: 1.4rem;
    }
    .footer-copy{
        text-align: center;
        border-top: 1px solid gray;
     padding: 2% 0%;
      background-color: rgb(22, 21, 21);
      color: white;
    }
    .footer-copy span{
        color: orangered;
    
    }