@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
::selection{
    color: #fff;
    background: #031f42;
  }

/* .......Navbar messege........ */
.nav-msg{
    width: 100%;
    height: 55px;
    color: #ffffff;
    background-color:  #031f42;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-msg a{
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    
}

.nav-msg p{
    font-size: 14px;
    margin-right: 15px;
}

.line{
    height: 25px;
    width: 1px;
    background-color: white;
    margin-right: 15px;
}

#location{
    color: rgb(202, 202, 202);
    
}


.nav-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.subnav-btn button{
    background-color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    color: #031f42;
    font-weight: 600;
    cursor: pointer;
}


/* .....navbar...... */





.nav-container{
    width: 100%;
    height: 110px;
    padding: 0 50px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #031f42;

    position: sticky;
    top: 0px;
    z-index: 10000;


    box-shadow: rgba(50, 50, 93, 0.08) 0px 13px 27px -5px, rgba(0, 0, 0, 0.08) 0px 8px 16px -8px;
}

.left-section {
    display: flex;
    align-items: center;
}

.nav-container .logo img{
    height: 105px;
}


.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-left: 30px;
}

.menu ul li a {
    color: #142525;
    text-decoration: none;
    padding: 20px 10px;
    transition: all .2s ease-in;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 600;
    margin-left: 10px;

    &:hover{
        color: #006e00;
    }
}











.fa{
    transition: all .5s ease;
}

.menu .drop:hover .fa{
    transform: rotate(180deg);
}


.dropdown-menu{
    display: none;
    border-radius: 5px;
    background-color: #fff;
}

.drop:hover .dropdown-menu{
    display: block;
    left: 0;
    top: 100%;
    background-color: #fff;
    text-decoration: none;
    margin-left: -15px;
}












/* phone view menu//////// */


#menu-bar {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #031f42;
    color: white;
    z-index: 100000000;
    transform: translateX(-100%);
    transition: transform 1.5s ease;
    transition: all .5s ease-in-out;
    padding: 20px 20px 50px 20px;
}

.sidebar-content {
    padding: 20px;
    font-size: 30px;
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
}

.sidebar-content ul li {
    margin-bottom: 20px;
}

.sidebar-content ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
}

.fa-times {
    cursor: pointer;
    float: right;
    font-size: 60px;
}

@media (max-width: 730px) {
    .menu ul {
        display: none;
    }
    .nav-container .logo img{
        height: 100px;
    }
    #menu-bar {
        display: block;
        font-size: 70px;
        background-color: #031f42;
        color: #ffffff;
        text-align: end;
        padding: 8px;
        border-radius: 3px;
    }
    .left-section{
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

   
    .sidebar-content {
        font-size: 40px;
    }
    .sidebar-content ul li a {
        font-size: 40px;
    }
    .drop .dropdown-menu ul li a{
        font-size: 35px;
        
    }



}

.sidebar.open {
    display: block;
    transform: translateX(0);
}

.dropdown-menu ul{
    display: block;
    position: absolute;
    z-index: 100;
    background-color: #ffffff;
    width: auto;
    padding: 25px 0;
    border-bottom: 4px solid #031f42;

}

.dropdown-menu ul li a{
    font-size: 16px;
    padding: 10px 40px 10px 20px;
    width: auto;
    color: #142525;
}





/* ///sub-menu///// */



.sub-drop .sub-menu{
    display: none;
    top: 55%;
    left: 89%;
    width: 200px;
    margin-top: 30px;
  }
  
  .dropdown-menu .sub-drop:hover .sub-menu{
    display: block;
  }
  
  .sub-drop:hover .fa-solid{
    transform: rotate(-90deg);
    transition: all .3s ease;
  }
  
  @media (max-width: 730px){
    .sub-drop .sub-menu{
        width: 550px;
        margin-left: 50px;
        background-color: #f5f5f5;
    }
  }
  





/* .......hero section.........  */

.hero-section{
    background-image: url(./images/about-hero.JPG);
    width: 100%;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;

    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}


.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #00000038;
}

.hero-content .hero-heading h1{
    color: #ffffff;
    font-size: 64px;
    margin-bottom: 25px;

}

.hero-content .hero-para p{
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    letter-spacing: 1px;
}









/* /////// About section /////////// */







.managed-it-container{
    min-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.manage-it-img{
    width: 50%;
    height: 400px;
    overflow: hidden;
    background-color: #ffffff;
    object-fit: cover;
    /* box-shadow: rgba(0, 0, 0, 0.339) 0px 12px 28px 0px, rgba(0, 0, 0, 0.25) 0px 2px 4px 0px, rgba(255, 255, 255, 0.27) 0px 0px 0px 1px inset; */

}

.manage-it-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;

}

.manage-it-img:hover img{
    transform: scale(1.09);
}

.manage-it-details{
    width: 50%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 0 25px 0 25px;
    background-color: #ffffff;

    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px 0px, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset; */

}

.manage-it-details h1{
    color: #031f42;
    font-size: 25px;
    margin-bottom: 15px;
    padding-top: 20px;
}

.manage-it-details span{
    color: #000000;
}

.manage-it-details p{
    color: gray;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.about-line{
    text-align: center;
    height: 3px;
    width: 140px;
    margin-top: 10px;
    border-radius: 10%;
    background-color: #031f42;
    transition: all .3s ease;
}

.manage-it-details:hover .about-line{
    border-radius: 50%;
    width: 90px;
}











/* ///////// highlight Points ////////////// */






.highlight-points-back-img{
    width: 100%;
    height: auto;
    background-image: url(images/our-management-banner.JPG);
    background-position: center;
    background-size: cover;
}
.points-container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 40px;
    background-color: #090c13da;
}

.points-heading-box{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.points-icon{
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
}


.points-heading{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.points-heading h1{
    font-size: 35px;
    color: #fff;
}

.point-num{
    display: flex;
    justify-content: center;
    align-items: center;
}


#pluse{
    font-size: 22px;
    font-weight: 600;
}

.points-heading p{
    font-size: 15px;
    color: #fff;
}









/* ////////// Team ///////////// */



.team-back-img{
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
}

.founder-container{
    width: 100%;
    height: auto;
    padding: 70px 50px;
    background-color: #ffffffe5;
}

.founder-container-heading{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0 50px;
}

.founder-container-heading h2{
    font-size: 17px;
    font-weight: 500;
    color: #777777;
}

.founder-container-heading h1{
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 40px;
    color: #242424;
    padding: 10px 0;
}
.founder-container-heading h1 span{
    color: #031f42;
}

.founder-name-details-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
}

.founder-img-container{
    margin: auto 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    width: 30%;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    transition: all .3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

}

.founder-details{
    width: 100%;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
}

.founder-details img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.founder-img-container:hover .founder-details img{
    transform: scale(1.1);
}


.team-name{
    padding: 20px 20px 10px 20px;
}

.team-name h1{
    font-size: 20px;
    color: #303433;
}

.team-name p{
    font-size: 16px;
    color: #767e7c;
    margin-top: 8px;
    margin-bottom: 10px;
    text-align: justify;
}








/* ////////// Footer ///////// */





.footer-container{
    background-color: #f0efef;
    width: 100%;
    display: flex;
    justify-content:center ;
    padding-top: 20px;
}

.footer-box{
    width: 95%;
    height: auto;
    padding: 0 0 40px 0;
    display: flex;
    justify-content: space-around;
}
.fsize{
    width: 30%;
}
.fsize p{
    color: #031f42;
    font-size: 28px;
    font-family: 900;
}

.fsize hr{
    margin: 20px 0 20px 0;
    border: none;
    height: 1px;
    background-color: #031f42;
}

.fsize-img{
    margin-left: -20px;
    display: flex;
    justify-content: space-around;
   align-items: center;
}

.fsize-img h3{
    color: #031f42;
    margin-top: 10px;
}

.fbox1 img{
    height: 125px;
    width: 110px;
}

.fsize ul li{
    list-style: none;
    line-height: 1.8;
    width: 230px;
}

.fsize ul li:hover{
    text-decoration: underline;
    cursor: pointer;
    list-style: circle;
}
.fbox3 .cont-name{
    font-size: 18px;
    color: #031f42;
    margin-bottom: 10px;
}
.fbox3 .fAddre{
    font-size: 15px;
    color: #1a1b1e;
    margin-top: 5px;
}
.fbox3 .fphone{
    font-size: 15px;
    color: #1a1b1e;
    margin-top: 5px;
}




.footer1{
    height: 50px;
    width: 100%;
    background-color: #031f42;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.footer1 a{
    color: #ffffff;
    text-decoration: none;

    &:hover{
        color: #fca119;
    }
}








/* //////////// Responcive view ////////////// */





@media(max-width: 1064px) {
    .nav-msg{
        width: 1064px;
    }
    .nav-container{
        width: 1064px;
    }



    .hero-section{
        width: 1064px;
    }
    .hero-info{
        min-width: 900px;
    }
    .hero-content{
        width: 1064px;
    }

    .team-back-img,
    .highlight-points-back-img,
    .managed-it-container{
        width: 1064px;
    }



    .our-faci-heading-top{
        width: 1064px;
    }
    .facilities-container{
        width: 1064px;
    }


    .our-faci-container{
        width: 1064px;
    }

    
    .footer-container{
        width: 1064px;
    }
    .footer1{
        width: 1064px;
    }
}










/* /////////// Phone view Responcive ////////// */





@media(max-width: 600px){
    .nav-msg a{
        font-size: 40px;
  }
  .nav-msg p{
    font-size: 40px;
  }
  #location{
    margin-left: 25px;
  }
  #phone-hide{
    display: none;
  }
  .subnav-btn button{
    font-size: 30px;
  }



  .nav-msg{
    height: 100px;
  }
  .nav-container{
    height: 250px;
  }
  .nav-container .logo img{
    height: 240px;
  }






  
.hero-section{
    min-width: 100%;
    height: 1000px;
}
  .hero-content .hero-heading h1{
    font-size: 76px;
}






  
  .managed-it-container{
    flex-direction: column;
    height: auto;
    padding: 90px 0px;
  }
  .manage-it-img{
    width: 100%;
    height: 700px;
  }
  .manage-it-img img{
    width: 100%;
    height: 700px;
  }
  .manage-it-details{
    width: 100%;
    height: auto;
    padding: 50px 30px;
  }
  .manage-it-details h1{
    font-size: 55px;
    margin: 40px 0;
  }
  .manage-it-details p{
    font-size: 45px;
    text-align: justify;
    line-height: 1.4;
  }






  
.points-container{
    flex-direction: column;
    margin-top: 150px;
}
.points-heading-box{
    margin-top: 70px;
}

.points-heading h1{
    font-size: 65px;
}

.points-heading p,
#pluse{
    font-size: 46px;
}




  .our-faci-heading-top h1{
    font-size: 50px;
    margin-bottom: -130px;
    
}
  .facilities-container{
    height: 800px;
  }
  .facilities-box{
    width: 420px;
    height: 400px;
    padding: 0;
  }
  .high-box1{
    margin-left: 750px;
  }
  .facilities-box h1{
    font-size: 45px;
}

.facilities-box p{
    font-size: 40px;
    padding: 0 10px;
}






.team-back-img{
    margin-top: 150px;
}
.founder-container-heading h1{
    font-size: 60px;
}
.founder-container{
    padding: 70px 0;
}
.team-line{
    width: 120px;
}
.founder-name-details-container{
    flex-wrap: wrap;
    margin-top: 40px;
}
.founder-img-container{
    width: 100%;
}
.founder-details{
    width: 100%;
    height: 600px;
}

.team-name h1{
    font-size: 40px;
}
.team-name p{
    font-size: 35px;
    margin-top: 20px;
}





  


.footer-container{
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 50px 20px 50px 20px;
}
.footer-box{
    height: auto;
    flex-direction: column;
}
.fsize{
    width: 100%;
}
.fsize p{
    font-size: 55px;
    margin-top: 40px;
}
.fsize ul li{
    font-size: 40px;
    width: 100%;
}

.fbox1 img{
    height: 250px;
    width: 240px;
}

.fsize-img h3{
    font-size: 45px;
}



.fbox3{
    width: 100%;
    margin-top: 60px;
}
.fbox3 .cont-name{
    font-size: 50px;
}
.fbox3 .fAddre{
    font-size: 40px;
}
p .fphone{
    font-size: 40px;
}





.footer1{
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

.footer1 p{
    font-size: 40px;
    text-align: center;
}

.footer1 a{
    font-size: 40px;
    text-align: center;
}



}
