*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
.navbar{
    position: fixed;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height:6vh;
    display: flex;
    align-items: center;
    justify-content:space-between;
    box-sizing: border-box;
    box-shadow: 2px 2px 25px gray;
    z-index: 100;
    opacity: 0.97;
}
.main{
    position: absolute;
    top: 6vh;
    width: 100%;

}
.logo{
    margin-left: 25px;
    margin-right: 0px;
}
.logo img{
    height: 6vh;
    scale: 0.8;
}
.logo:hover{
    cursor: pointer;
}
.pages{
    font-size: 1.25rem;
    display: inline;
    gap: 50px;
    /* transition: all 0.4s ease-in; */
}

.pages a{
    height: 5vw;
    margin-bottom: 10vw;
    margin-left:1vw ;
    font-size: 1.25vw;
    display: inline;
    padding: 2px 20px;
    color: #000000;
    text-decoration: none;
    background-color: #fff;
    font-size: 20px;
    border-bottom: none;
    /* transition: all 8s ease; */
    /* transition-duration: 8s;
    transition-timing-function: ease-in; */
}
.pages a:hover{
    opacity: 0.8;
    border-bottom: 2.5px solid rgb(0, 47, 255);
    color: rgb(0, 47, 255);
    /* transition: 2s ease-in; */
    /* transform: scale(1.5); */
}
.login button{
    box-shadow: 2px 2px 5px gray;
    height: auto;
    width: auto;
    padding: 8px 20px;
    font-size: 1.1rem;
    margin: 20px;
    margin-left: 125px;
    background-color:rgb(80, 171, 245);
    color: #ffffff;
    border: none;
    border-radius: 20px;
}
.login button:hover{
    opacity: 0.8; 
    cursor:pointer;
    transform: scale(1.05);
}
/* HEADER */
.contact-header{
    padding: 120px 20px 60px;
    text-align: center;
    background: rgba(189, 249, 247, 0.756);
}

.contact-header h1{
    font-size: 52px;
    font-weight: 700;
}

.contact-header p{
    margin-top: 10px;
    font-size: 18px;
    color: #555;
}

/* MAIN CONTAINER */
.contact-container{
    width: 90%;
    max-width: 1300px;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* FORM BOX */
.contact-form{
    background: #fff;
    padding: 35px;
    flex: 1;
    min-width: 350px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form h2{
    margin-bottom: 25px;
}

.contact-form label{
    display: block;
    margin-top: 15px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-top: 5px;
    font-size: 15px;
}

.contact-form textarea{
    height: 130px;
    resize: none;
}

.send-btn{
    width: 100%;
    background-color: #4db5ff;
    border: none;
    padding: 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    margin-top: 22px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.send-btn:hover{
    opacity: 0.9;
    transform: scale(1.05);
}

/* RIGHT INFO BOX */
.contact-info{
    background: #fff;
    padding: 35px;
    min-width: 350px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(197, 197, 197, 0.39);
}

.contact-info h2{
    margin-bottom: 25px;
}

.info-item{
    display: flex;
    gap: 18px;
    margin: 20px 0;
}

.info-item i{
    font-size: 28px;
    color: #4db5ff;
    padding: 10px;
    background: #dffff8;
    border-radius: 12px;
}

.info-item h4{
    font-size: 18px;
}

.info-item p{
    color: #555;
}

.info-item span{
    font-size: 13px;
    color: #30b8ff;
}

/* footer end  */
.footer{
    background-color: #fff;
    width: 100%;
}
hr{
    border: 1px solid gray;
}
.mainfooter{
    display: flex;
    justify-content: center;
    padding: 50px;
    gap: 7vw;
}
.div1{
    display: flex;
    flex-direction: column;
    width: 300px;
    
}
.div1 img{
    height: auto;
    scale: 0.8; 
}
.div1{
    color: grey;
}
.div2{
    padding: 8px;
}
.div2 h4{
    margin-bottom: 20px;
    margin-left: 5px;
}
.links{
    display: flex;
    flex-direction: column;
    
}
.links a{
    text-decoration: none;
    color: grey;
    margin: 6px;
}
.div3{
    
    display: flex;
    flex-direction: column;
}
.div3 h4{
    margin: 6px;
    margin-bottom: 20px;
}
.div3 p{
    margin: 6px;
    color: grey;
}
#help{
    color:rgb(80, 171, 245) ;
}
#rightreserved{
    width: 60%;
    border: 0.1px solid grey;
    margin: 0 auto;
}
.rights{
    text-align: center;
    padding: 10px;
}
.rights p{
    padding: 5px;
}
/* footer end  */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgb(80, 171, 245);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

#backToTop:hover {
    background-color: rgb(49, 225, 166);
}
