* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: federo, serif;
}
html{
    overflow-x: hidden;
    min-height: 100vh !important;
}
body {
    top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh !important;
    width: 100vw;
    background-color: rgb(255, 255, 255);
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    z-index: 1000;
}
.social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 10px;
}
.social-icons a{
    text-decoration: none;
    color:  black;
    transition: transform 5ms ease-in-out;
}
.social-icons a:hover{
    color:  #7C3AED;
    transform: scale(1.1);
}
.goog-te-gadget-simple img{
    display: none;
}
.skiptranslate iframe{
    display: none;
}
.skiptranslate span {
    color: black;
}
.goog-te-gadget-simple img{
    display: none;
}


/*  top header css ends*/

.navbar{
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    width: 80%;
    height: 100px;
    border-radius: 100px;

    box-shadow: 0 10px 30px rgba(11, 219, 198, 0.1);
    animation: float 3s ease-in-out infinite;
    z-index: 1001;
}
@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}
.navbar:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.logo{
    padding: 5px;
}
.logo img{
    width: 250px;

}
.content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding:5px;
}
.content a{
    text-decoration: none;
    position: relative;
    cursor: pointer;
    color: #ac16e7;

}
.content a::after{
    margin-top: 3px;
    position: absolute;
    content: "";
    width: 0;
    background-color: #ac16e7;
    height: 3px;
    bottom: -2px;
    left: 0;
    border-radius: 3px;
    transition: 0.2s ease-in-out;
}
.content a:hover::after{
    width: 100%;

}
.hamburger{
    display: none;
}
.close{
    display: none;
}
.content.active{
    display: flex;
    position: absolute;
    top: 101px;
    width: 70%;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}




.hero{
    margin-top: 15%;
    display: flex;
    width: 100%;
    min-height: 100vh;
}
.terms{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 1%;
    text-align: justify;
}
.terms ul{
    max-width: 500px;
}
.terms ol{
    margin-left: 15px;
    max-width: 500px;
}
.terms p{
    max-width: 500px;
}





.footer{
    min-height: 30vh;
    width: 100%;
    background: radial-gradient(ellipse at top left,  #8B5CF6 25%, #7C3AED 40%, #5B21B6 55%, #4C1D95 70%, #1E1B4B 85%, #0F172A 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.designed-by{
    padding-top: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 10px;
}
.links{
    width: 100%;
    padding: 1%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.credits{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    color: white;
}
.credits span {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.credits span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    width: 100%;
    transition: width 0.3s ease;
}
.credits a{
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: white;
}
.credits a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}
.credits a:hover::after{
    width: 100%;
}
.social-icons span{
    display: none;
}
.social-icons a::after{
    background-color: transparent;
}



@media Screen and (max-width: 540px) {
    .designed-by{
        flex-direction: column;
    }
    .links{
        flex-wrap: wrap;
    }
    .logo img{
        width: 175px;
    }
    .navbar{
        flex-direction: row;
        gap: 30px;
    }
    .content{
        display: none;
    }
    .hamburger{
        display: flex;
        width: 20px;
        height: 20px;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: end;
    }
    .list{
        width: 100%;
        height: 2px;
        background-color: #13274F;
    }
    .terms{
        margin-top: 50% !important;
    }

}
@media screen and (max-width: 996px) {

    .terms{
        margin-top: 18%;
    }

}
@media screen and (max-width: 820px) {
    .terms{
        margin-top: 25%;
    }
}