@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Teko:wght@300..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --dark-shade-1: rgb(0, 27, 72);
    --dark-shade-2: rgb(0, 69, 129);
    --dark-shade-3: rgb(1, 138, 189);
    --dark-shade-4: rgb(151, 203, 220);
    --bg-color-blue: #97CBDC;
    --bg-color-grey: rgb(221, 232, 240); 
    --text-color:#626262;
    font-family: "Rubik", sans-serif; 
    font-weight: 300;
    color: var(--bg-color-grey);

    --success-1: rgb(83, 165, 117);
    --success-2: rgb(46, 139, 84);
    --error-1: rgb(187, 93, 93);
    --error-2: rgb(141, 59, 59);
}
html {
    scroll-behavior: smooth;
  }
body{ 
    background-image: linear-gradient(to bottom, rgba(0, 27, 72, .2), rgba(0, 27, 72, .2)), url(../assets/bg/bg.webp);
    background-size: cover;
    background-position: center; 
}




.success{
    padding: 10px;
    width: 100%; 
    text-align: left;
    background-color:var(--success-1);
    outline: 2px solid var(--success-2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    margin: 10px 0;
    display: none;
    animation: fade 6s ease;
    position: fixed;
    top: 20%;
    right: 8%;
    width: 300px;
    z-index: 1001;
  }
  .error{
    padding: 10px;
    width: 100%; 
    text-align: left;
    background-color:var(--error-1);
    outline: 2px solid var(--error-2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    margin: 10px 0;
    display: none;
    animation: fade 6s ease;
    position: fixed;
    top: 20%;
    right: 8%;
    width: 300px;
    z-index: 1001;
  }
  .alert p{
    color: white;
    font-size: 15px; 
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .alert p i{
    color: white;
    font-size: 25px; 
  }
  
  
  @keyframes fade {
    0%{
        opacity: 100%;
    }
    50%{
        opacity: 100%;
    }
    80%{
        opacity: 100%;
    }
    100%{
        opacity: 0;
    }
  }















a{
    text-decoration: none; 
}
h1{
    font-size: 65px;
    line-height: 65px;
    font-weight: 500;
    font-family: "Teko", sans-serif;
}
ul{
    list-style: none;
}
.mobile_nav{
    display: none;
}

/* Desktop Nav Start */
nav{
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 8%; 
    z-index: 100;
    transition: .3s ease;
}
nav .logo img{
    width: 100px;
}
.desktop_nav ul{
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}
.desktop_nav ul li a{ 
    padding: 10px 18px; 
    border-radius: 50px;
    font-weight: 400;
}
.desktop_nav ul li a:hover{ 
    background-color: var(--dark-shade-1);
}
.desktop_nav ul li .active{ 
    background-color: rgb(0, 69, 129);
}
.desktop_nav .log li a{ 
    background-color: var(--dark-shade-3);
    transition: .3s ease;
}
.desktop_nav .log li a:hover{ 
    background-color: var(--dark-shade-2);
}
.desktop_nav .log li .login{ 
    background-color: var(--bg-color-grey);
    color: var(--dark-shade-1);
}
.desktop_nav .log li .login:hover{ 
    background-color: var(--dark-shade-2);
    color: var(--bg-color-grey);
}

@media only screen and (min-width: 1520px){
    nav{ 
        padding: 13px 18%;  
    }
}

/* Desktop Nav end */


/* Mobile Nav Start */
@media screen and (max-width: 768px){
    .desktop_nav{
        display: none;
    }
    .mobile_nav{
        display: flex;
        position: fixed;
        top: 0;
        width: 100%;
        padding: 15px 8%;
        justify-content: space-between;
        align-items: center; 
    }
    .mobile_nav i{
        font-size: 30px;
        color: var(--bg-color-grey);
        cursor: pointer;
        transition: .3s ease;
    }
    .mobile_nav .mob_nav_link{
        position: absolute;
        top: 102%;
        background-color: var(--dark-shade-1);
        width: 70%;
        height: 100vh;
        left: 0;
        padding: 8%;
        display: none;
        flex-direction: column;
        
    }

    @keyframes slidein{
        0%{
            transform: translateX(-100%);
        }
        100%{
            transform: translateX(0);
        }
        
    }
    @keyframes slideout{
        0%{
            transform: translateX(0);
        }
        100%{
            transform: translateX(-100%);
        }
        
    }
    .mobile_nav .logo img{
        width: 90px;
    } 
    .mobile_nav ul li a{ 
        padding: 10px 18px; 
        border-radius: 50px;
        font-weight: 400;
        display: block;
        font-size: 18px;
        margin: 10px 0;
    }
    .mobile_nav ul li a:hover{ 
        background-color: var(--dark-shade-2);
    }
    
    .mobile_nav .log{ 
        position: absolute;
        bottom: 15%;
        left: 16%;
        width: 70%;
    }
    .mobile_nav .log a{ 
        background-color: var(--dark-shade-3);
        width: 100%;
        display: block;
        align-items: center;
        padding: 12px 20px;
        text-align: center;
    }
    .mobile_nav .log .login{ 
        background-color: var(--bg-color-grey);
        color: var(--dark-shade-1); 
    }

    
}


.home_page{ 
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12% 8% 8% 8%;
    background-image: linear-gradient(to right, rgba(0, 27, 72, 0.6),rgba(0, 27, 72, 0.6)) , url(../assets/bg/bg-1.jpeg); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;  
    animation: change 15s ease infinite;
}

@keyframes change{
    0%{
        background-size: 100%;
    } 
    50%{
        background-size: 120%;
    }
    100%{
        background-size: 100%;
    }
}
 

@media screen and (max-width: 768px){
    @keyframes change{
        0%{
            background-size: 400%;
        } 
        50%{
            background-size: 415%;
        }
        100%{
            background-size: 400%;
        }
    }
    
}



.home_page .home_page_content{
    width: 60%; 
}
.home_page .home_page_content h1{
    margin-bottom: 10px;
}
.home_page .home_page_content p{
    line-height: 23px;
}
.btn-container{
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-container a{
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--dark-shade-3);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 18px;
    transition: .3s ease;
}
.btn-container a i{
    font-size: 20px; 
    transition: .3s ease;
    rotate: -30deg;
}
.btn-container a:hover{ 
    background-color: var(--dark-shade-2); 
}
.btn-container a:hover i{ 
    rotate: 0deg;
}
@media only screen and (min-width: 1520px){
    .home_page {
        padding: 8% 18%;
    }
}
@media screen and (max-width:768px) { 
    .home_page .home_page_content{
        width: 100%; 
    }
}

.about_us{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8%;
    position: relative;
}
.about_us .our_mission{
    width: 400px;
}
.about_us .our_mission h1{
    margin-bottom: 10px;
    color: var(--bg-color-blue);
}
.about_us .our_mission p{
    line-height: 23px;
}
.about_us .mission_img{
    width: 500px;
    position: absolute;
    top: -50px;
    right: 8%;
}
.about_us .mission_img .mission_icon{
    width: 65px; 
    position: absolute;
    left: -30px;
    bottom: 35px;
    height: unset;
}
.about_us .mission_img img{
    width: 500px; 
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
}
@media only screen and (min-width: 1520px){
    .about_us{
        padding: 8% 18%;
    }
    .about_us .mission_img{ 
        right: 18%;
    }
}
@media screen and (max-width:768px) {
    .about_us{
        flex-wrap: wrap;
        position: unset;
        padding: 12% 8%;
    }
    .about_us .our_mission{
        width: 100%;
    }
    .about_us .mission_img{
        width: 100%;
        position: relative;
        top: unset;
        right: unset;
    }
    .about_us .mission_img img{
        width: 100%; 
        border-radius: 10px;
        height: 100%;
        object-fit: cover;
        margin-top: 20px;
    }
    .about_us .mission_img .mission_icon{
        display: none;
    }
}

.leaderboard{
    padding: 8%;
    width: 100%;
}
.leaderboard .top_re_text{
    text-align: center;
    margin-bottom: 70px;
}
.leaderboard .top_re_text h1{
    margin: 10px 0;
}
.leaderboard .top_re_text .total_soul_p{
    color: var(--bg-color-blue);
    font-size: 18px;
    font-weight: 500;
}
 
table{
    width: 100%; 
    border-collapse: collapse;
    text-align: left; 
}
table thead{
    background-color: rgb(0, 27, 72);
}
table thead tr th{ 
    padding: 12px 8px;
    color: var(--bg-color-blue);
    font-weight: 400;  
}
table tbody tr:nth-child(even){ 
    background-color: rgba(0, 27, 72, .6);
}
table tbody tr td{ 
    padding: 12px 8px;  
}
@media only screen and (min-width: 1520px){
    .leaderboard{
        padding: 8% 18%;
    } 
}

@media screen and (max-width:768px) {
    .leaderboard .top_re_text{
        text-align: left; 
    } 
}


.testimonies{
    padding: 8%;
    display: flex;
    align-items: start;
    gap: 40px;
    flex-wrap: wrap-reverse;
}
.testimonies .test_img{
    width: 350px;
}

.testimonies .test_img .test_list{
    width: 100%;
    background-color: rgb(0, 27, 72);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    margin: 10px 0;
    cursor: pointer;
}
.testimonies .test_img .active{
    width: 100%;
    background-color: rgb(0, 69, 129, .4); 
}
.testimonies .test_img .test_list img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}
.testimonies .test_img .test_list .test_text h6{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}
.testimonies .test_container{
    width: 650px;
}
.testimonies .test_container .top_test{
    margin-bottom: 40px;
}
.testimonies .test_container .top_test h1{
    margin-bottom: 10px;
} 
.testimonies .test_container .test_wrapper h5{
    margin-bottom: 20px;
    color: var(--bg-color-blue);
    font-weight: 500;
    font-size: 25px;
} 
.testimonies .test_container .test_wrapper p{
    line-height: 23px;
} 
@media only screen and (min-width: 1520px){
    .testimonies{
        padding: 8% 18%;
    } 
}
@media screen and (max-width:768px) {
    .testimonies .test_img{
        width: 100%;
    }
    .testimonies .test_container{
        width: 100%;
    }
    
}


.call_to_action{
    padding: 8%;
    display: flex;
    align-items: center;
    justify-content: center; 
    text-align: center;
    background-image: linear-gradient(to right, rgba(0, 27, 72, .7),rgba(0, 27, 72, .7)) , url(../assets/bg/bg-5.jpeg); 
    background-size: cover;
    background-position: center; 
    background-attachment: fixed;

}
.call_to_action .call_to_action_content{
    width: 75%;
}
.call_to_action .call_to_action_content p{
    line-height: 23px;
    margin-top: 10px;
}

.cta_btn{
    justify-content: center;
}
@media only screen and (min-width: 1520px){
    .call_to_action{
        padding: 8% 17%;
    }
}

@media screen and (max-width:768px) {
    .call_to_action{
        padding: 12% 8%;
        align-items: center;
        justify-content: unset; 
        text-align: left;
    }
    .call_to_action .call_to_action_content{
        width: 100%;
    } 
    .cta_btn{
        justify-content: unset;
    }
}

.register{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12% 8% 8% 8%;
    min-height: 100vh;
    width: 100%;
}
.register .register_content{ 
    margin-top: 50px;   
}
.register .register_content .top_reg_text{
    text-align: center;
    margin-bottom: 70px;   
}
.register .register_content .top_reg_text p{
    margin-top: 10px;
}

.register .register_content .reg_form{
    width: 100%;
    display: flex; 
    gap: 20px;
    flex-wrap: wrap;
    background-color: rgba(0, 69, 129, .4);
    padding: 5px;
    border-radius: 10px;
}
.register .register_content .reg_form img{
    width: 40%; 
    object-fit: cover;  
    border-radius: 10px; 
}

form { 
    padding: 8%; 
    width: 55%;
}

form .form_group{ 
    display: flex;
    flex-direction: column;
    gap: 20px; 
    width: 100%;
}
form .form_group{ 
    display: flex;
    flex-direction: column;
    gap: 10px; 
    margin: 20px 0; 
}
form .form_group label{ 
    font-size: 16px;
    font-weight: 300;
}
form .form_group label a{ 
    color: var(--dark-shade-3);
    float: right;
}
form .form_group input{ 
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: transparent;
    border: 2px solid var(--bg-color-grey);
    outline: none;  
    transition: .3s ease;
}
form .form_group input:focus{  
    border: 2px solid var(--dark-shade-3);
    outline: none;
}
form .form_group input::placeholder{
    color: rgba(221, 232, 240, .2);
}
form .form_group p a{
    color: var(--dark-shade-3);
}

/* For Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

 
form .form_group button{
    background-color: var(--dark-shade-3);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 18px;
    transition: .3s ease;
    cursor: pointer;
    border: none;
}
form .form_group button i{
    margin-left: 10px;
    rotate: -30deg;
    transition: .3s ease;
}
form .form_group button:hover i{ 
    rotate: 0deg; 
}
form .form_group button:hover{ 
    background-color: var(--dark-shade-2);
}

@media only screen and (min-width: 1520px){
    .register {
        padding: 8% 18%;
    }
}

@media screen and (max-width:768px) {
    form { 
        padding: 20px; 
        width: 100%;
    }
    .register .register_content .reg_form img{
        width: 100%; 
        height: 200px;
        object-fit: cover;  
        border-radius: 10px; 
    }
    .register .register_content .top_reg_text{
        text-align: left;
        margin-top: 70px;   
    }
}



.btn_form{
    all: unset !important;
}
.btn_form button{
    all: unset !important;
    padding: unset !important;
}























footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3% 8%;
    flex-wrap: wrap;
}
footer p{
    color: rgb(151, 203, 220, .5);
}
footer p a{
    color: rgb(151, 203, 220, .5);
    transition: .3s ease;
}
footer p a:hover{
    color: rgb(151, 203, 220, .8);
}

@media screen and (max-width:768px) {
    footer{
        padding: 8%; 
    } 
}












@media screen and (max-width:768px) {
    h1{
        font-size: 55px;
        line-height: 50px;
    } 
}