                            /* Contact box */
.contact-main{
    width: 85vw;
}
.contact-main-heading{
    margin-top: 55px;
    margin-bottom: 23px;
    width: 100%;
    padding: 34px;
    font-size: 1.6rem;
    font-weight: bold;
}
.contact-main-heading h1{
    background-image: linear-gradient(135deg, #ffffff 0%, #78d4ff 50%, #ffffff 100%);
    background-clip: text;
    color: transparent;
}
.contact-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1199px;
}

.contact-main-right{
    z-index: 1;
    min-width: 360px;
    width: 48%;
    border: 1px solid rgb(28, 28, 35);
    border-radius: 23px;
    background-color: rgba(41, 41, 41, 0.342);
    height: 500px;
    padding: 30px;
}
.contact-main-right .form{
    display: flex;
    flex-direction: column;
}
.form input{
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.13);
    border: 1px solid rgb(62, 62, 77);
    font-size: 1rem;
    margin-bottom: 23px;
    padding: 12px;
    border-radius: 5px;
}
.form .button{
    padding: 15px 28px;
    margin: 16px 0px;
    font-size: 1.2rem;
    color: rgb(3, 0, 28); 
    border: none;
    font-weight: 600;
    border-radius: 28px;
    background-image: linear-gradient(135deg, #ffffff 0%, #78d4ff 50%, #ffffff 100%);
}
.button:hover{
    cursor: pointer;
}

.form textarea{
    color: white;
    background-color: rgba(255, 255, 255, 0.13);
    border: 1px solid rgb(62, 62, 77);
    border-radius: 5px;
    padding: 12px;
    height: 123px;
    margin-bottom: 16px;
    max-width: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
    line-height: 18px;
    font-size: 1rem;
}
/* .form textarea:focus{
    background-color: white;
} */
#send_info{
    font-weight: bold;
}
.contact-main-left{
    min-width: 400px;
    width: 48%;
    height: 480px;
    position: relative;
}

.contact-subheading{
    z-index: 1;
    font-size: 1.9rem;
    padding-bottom: 12px;
    font-weight: 550;
    color: #00eaff;
}
.contact-main-left .box{
    gap: 12px;
    margin: 23px 0px;
    color: rgb(225, 225, 225);
    
}
.contact-main-left>.box>p{
    z-index: 1;
    line-height: 23px;
}
.contact-logo{
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background-color: #00eaff51;
}
.contact-logo img{
    width: 25px;
}
.contact-content{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.contact-content .name{
    opacity: 0.5;
}
.contact-content .address{
    font-size: 0.9rem;
    /* text-decoration: underline; */
}
.contact-main-left .link-box{
    position: absolute;
    bottom: 0px;
}

#Contact{
    margin-bottom: 123px;
}


                            /* Footer part CSS */

footer{
    z-index: 1;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.575);
}
.footer{
    border: 0.5px solid gray;
    border-radius: 34px;
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: auto;
}
.column{
    min-width: 123px;
    max-width: 30%;
    margin: 23px;
    padding: 34px;
}
.footer-subheading{
    padding: 23px;
    font-size: 1.5rem;
    padding-left: 12px;
    color: #00eaff;
    font-weight: bold;
}
.footer-links{
    padding: 0px 23px;
}
.footer-links ul li{
    list-style: none;
    padding: 8px 0px;
    color: rgb(124, 124, 124);
    /* text-decoration: underline; */
}
.footer-links ul li a{
    color: rgb(124, 124, 124);
    text-decoration: none;
}
.footer-links ul li img{
    filter: invert();
}
.copyright-footer{
    height: 78px;
    width: 100%;
    border-top: 1px solid #002528;
    color: #2d4f52;
    font-size: 0.8rem;
}

