*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    overflow-x: hidden;
    width: 100vw;
    background-color: #0d0e0d;

}

header{
    top:0;
    display: flex;
    width: 100vw;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    position: fixed;
    opacity: 0.8;
    color: white;
    border-bottom: 2px solid gray;
    z-index: 1000;
}

.header1{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.chosenOne{
    border-bottom: 4px solid aqua;
}

.lihead{
    list-style: none;
    margin-left: 60px;
    font-size: 25px;
    padding: 10px;
    transition: 0.2s;
}

.lihead:hover{
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.ul1{
    display: flex;
    color: gray;
    margin-right: 300px;
}

.name1{
    margin-top: 10px;
    font-size: 40px;
}

.graya{
    color: gray;
}

a{
    text-decoration: none;
}

.firsta{
    color: white;
}

.logoimg{
    width: 60px;
    margin-right: 40px;
    height: 80px;
    margin-left: 40px;
}

main{
    width: 90vw;
    animation: transition 1s ease-out;
}

.img2{
    width: 98.8vw;
    height: 1200px;
}

.main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.imgdiv1{
    background-image: url('../Images/photo-1729676142476-88c0f5a608e4.jpeg');
    width: 100%;
    animation: transition 1s ease-out;
    height: 1300px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.geoInfoh{
    color: white;
    font-size: 200px;
}

.geoInfotext{
    text-align: center;
    color: white;
    font-size: 40px;
}

.buttondiv{
    display: flex;
    margin-top: 100px;
}

.bt1{
    font-size: 25px;
    color: white;
    margin-right: 40px;
    padding: 30px 40px;
    border-radius: 8px;
    border: 0;
    outline: 0;
    transition: 0.5s;
    background-color: #00a6f4;
}
.fa-arrow-right-long{
    margin-left: 20px;
}

.bt1:hover{
    transition: 0.5s;
    cursor: pointer;
}

.bt2:hover{
    transition: 0.5s;
    cursor: pointer;
}

.bt2{
    font-size: 25px;
    color: white;
    margin-right: 40px;
    padding: 30px 40px;
    border-radius: 8px;
    border: 1px solid gray;
    outline: 0;
    transition: 0.5s;
    background: rgba(60, 80, 90, 0.4); 
    backdrop-filter: blur(10px);
}

.info{
    background-color: #18181b;
    display: flex;
    height: 600px;
    align-items: center;
    justify-content: space-evenly;
    width: 100vw;
}


.infop{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iconp{
    color: aqua;
    padding: 20px;
    background-color: #133447;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}

.icon1{
    height: 60px;
    width: 60px;
    font-size: 60px;
}

.infh{
    margin-top: 40px;
    color: white;
    margin-left: 30px;
    font-size: 40px;
}

.infp{
    color: gray;
    margin-top: 20px;
    text-align: center;
}

footer{
    background-color: #18181b;
    border-top: 2px solid gray;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: transition 1s ease-out;
}

.footerinf{
    display: flex;
}

.li1{
    color: gray;
    list-style: none;
    margin-top: 20px;
    font-size: 20px;
}

.li2:hover{
    color: aqua;
    cursor: pointer;
}

.footerinf{
    padding: 40px;
    border-bottom: 1px solid gray;
}

.header2{
    display: flex;
    align-items: center;
}

.accsign{
    margin-right: 100px;
    display: flex;
    align-items: center;
}

.puser{
    margin-right: 20px;
    font-size: 20px;
    text-decoration: none;
    color: beige;
    cursor: pointer;
}

.userimg{
    width: 80px;
    height: 80px;
}

@keyframes transition {
    from {
        opacity: 0;
        transform: translateY(-20px); 
    }
    to {
        opacity: 1;
        transform: translateY(0);    
    }
}

