@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;    
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    
}
:root{
    --color-white: #fff;
    --color-darkblue: #012265;
    --color-ondarkblue: #ffcb39;
}
html{
    scroll-behavior: smooth;
}
::-webkit-scrollbar{
    display: none;
}
section{
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    scroll-margin-top: 7rem;
    
    /*
    
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;




    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;*/
}


.homeimage{
    max-width: 90%;
    padding: 10px;
    margin: 40px 35px; 
    /*height: fit-content;
    flex-basis: 30%;
    */
}

 /*

 #hometext{
    flex-basis: 60%;
}

 #home h2{
    margin-top: 30px;
    padding: 5px;
}
 section #home{
    flex: 0 0 50%;
}
body{
   background-image: url(../images/BG.png);
    font-family: 'Poppins', sans-serif;
    
}
.navbar span{    
    color: var(--color-darkblue);
    font-weight: 500;
}*/

/*========================= Navbar Design =====================*/
nav{
    background-color: var(--color-white);
}
/*
.navbar-nav > .active > a { 
        color: var(--color-ondarkblue);
        border-bottom: 3px solid #ffcb39;
    }
.nav-item a .active{
    color: var(--color-ondarkblue);
    border-bottom: 3px solid #ffcb39;
}


*/

.nav-item.active{
    color: var(--color-ondarkblue);
    border-bottom: 3px solid #ffcb39;
}

.nav-item a { 
    color: var(--color-darkblue); 
    font-weight: 700;
    
}
.nav-item a:hover{
    color: var(--color-ondarkblue);
    
}

.navbar-nav{
    display: block;
}
/*=============== toggle button ================*/
.toggle-btn{
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    display: none;
}
.toggle-btn span{
    position: absolute;
    width: 20px;
    height: 2px;
    background: #012265;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.5s;

}

.toggle-btn span:nth-child(1){
    transform: translateY(-9px);
    width: 15px;
    left: 10px;
  }
  .toggle-btn span:nth-child(2){
    transform: translateY(9px);
    width: 8px;
    left: 10px;
  }
  .toggle-btn.active span:nth-child(1){
    transform: translateY(0) rotate(45deg);
    width: 20px;
    
  }
  .toggle-btn.active span:nth-child(2){
    transform: translateY(0) rotate(315deg);
    width: 20px;
    
  }
  .toggle-btn.active span:nth-child(3){
    transform: translateX(40px);

  } 
/*

  
  
  

*/
/*========================= Custom Button Design =====================*/
.custom-btn{
    color: var(--color-ondarkblue);
    background-color: #012265;
    width: fit-content;
    border-radius: 5%;
    padding: 10px;
    text-decoration:none;
    

    
    
}
.custom-btn:hover{
    color: var(--color-white);
}
.align-item-center{
    align-items: center;
}



/*========== Design for footer============== */
footer{
    width: 100%;
    height: 25%;    
    /*position: absolute;
    bottom: 0;
    */
    background-color: var(--color-darkblue);
    color: var(--color-white);
    border-top-left-radius: 75px;
    /*line-height: 20px;*/
    font-size: 15px;
    padding: 90px 0px 30px;
    
}
footer i{
    color: #ffcb39;
}
footer .row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;

}
footer .col{
    
    flex-basis: 30%;
    padding: 10px;
}
footer .logoimage{
    background-color: #fff;
    width: 50px;
    height: fit-content;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 30px;
}
footer .col h3{
    width: fit-content;
    margin-bottom: 50px;
    position: relative;
    font: bold;    
    font-size: 20px;
    color: var(--color-white);
}
footer .col h4{
    font-size: 15px;
}
hr{
    
    width: 100%;
    /*
    width: calc(100%-100px);
    align-items: center;
     margin: 0 25% 0 25%;
    */
    border-bottom: 1px solid #ccc;
}
.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 30px;
    overflow: hidden;

}
.underline span{
    width: 15px;
    height: 100%;
    background: var(--color-ondarkblue);
    position: absolute;
    border-radius: 3px;
    left: 10px;
    animation: moving 2s linear infinite;
}

footer p{
    text-align: justify;
}


@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

    

@media (max-width: 760px) {
    
    footer .col{
        /*flex-basis: 30%;padding: 10px;*/
        flex-basis: 100%;
        
    }
    .toggle-btn{
        display: flex;
    }
    .navbar-nav {
        position: fixed;
        left: -100%;
        top: 100px;
        gap: 0;
        display: flex;        
        flex: 1;
        background-color: var(--color-white);
        width: 100%;        
        text-align: center;
        transition: 0.3s;

    }
    .nav-item{
        margin: 16px 0;
    }
    .navbar-nav.active{
        left: 0;
    }
    

    
}   
    /*
    .nav-item{
        display: none;
    }


    */

   /* .navbar ul{
        position: fixed;
        width: 100%;
        height: 50vh;
        background: #767676;
        top: 100px;
        left: 0%;
        text-align: center;
        display: block;
        
    }
    .navbar ul li:nth-child(1){
        margin-top: 30px;
    }
    .navbar ul li{
        line-height: 30px;
    }
    */



/*========== Design for Page Section============== */
h3{
     
    color: var(--color-darkblue);
    text-align: center;
    
    /*margin: 20px 0;margin-top: 5rem;margin-bottom: 5px; font-weight: 700;  */
    
}
#home h2{
    font-size: 30px;
    color: var(--color-darkblue);

    /*font-weight: 600;*/
    
    
}
/*==================== START TEXT TYPING ANIMATION==================*/
#home span{
    font-size: 30px;
    color: var(--color-darkblue);
}
#home span{
    font-weight: 700;
    color: #ffcb39;
}
#home span::after{
    content: '';
    position: absolute;
    width: 200px;
    height: 30px;   
    background: #ffffff;
    border-left: 3px solid #012265;
    ;
    animation: typing 3s steps(20) infinite;    
}
@keyframes typing{
    0%{
        transform: translateX(-200px);
        
        
    }
    
    100%{
        transform: translateX(0px);
    }
}
/*==================== END TEXT TYPING ANIMATION==================*/

h5{
    color: var(--color-darkblue);   
    text-align: center;
    margin-bottom: 10px;
    
}

#home p{
    
    text-align: justify;
    margin-bottom: 30px;
    margin-top: 10px;
}






