.contactsection{
    margin: -7% 8% 5%;
}
.contact-info{

    font-weight: 700;
    font-size: 64px;
    color: rgba(64, 72, 82, 1);
    text-align: center;
}


.contactbox{
    margin-top: 3rem;
    border:1px solid rgba(217, 217, 217, 1);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
}
.contactboximg{
    position: relative;
}

 .contactbox-text{
    position: absolute;
    top: 0;
    padding: 2rem 0 0 1.5rem;
 }
 .contactbox-text h4{
    color: #fff;
    font-weight: 600;
    font-size: 28px;
 }
 
 .contactbox-text p{
    color: rgba(201, 201, 201, 1);
    font-weight: 400;
    font-size: 16px;
 }
 .contact-details{
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
 }
 .details-view{
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
}
 .details-view img{
    width: 24px;
    height: 24px;
    margin-right: 2rem;
    padding-top: 5px;
 }

 .contact-socialicon{
    /* margin-top: 40%; */
    position: absolute;
    bottom: -200px;
 }
.contact-socialicon i{
    color: rgba(64, 72, 82, 1);
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: .5rem;
}

/* This is for form */

.contactform {
    width: auto;
    margin-left: 3rem ;
    padding: 20px;
    position: relative;
}
 
.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-right: 3rem;
}

.form-group:last-child {
    margin-right: 0;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 15px;
    color: rgba(141, 141, 141, 1);
}

.form-group input{
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid rgba(141, 141, 141, 1);
    font-size: 14px;
    color: #333;
    outline: none;  /* Remove the default focus outline */
}
 
textarea {
    height: 100px;
    resize: none;
}
.radio-forum {
    margin:2rem 0;

}
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    font-size: 14px;
    color: #333;
}
.radio-forum label{
    color: rgba(1, 28, 42, 1);
    font-size: 14px;
    font-weight: 600;
}
input[type="radio"] {
    margin-right: 3px;
}

.sendbutton{
    position: absolute;
    padding: 15px 48px;
    background-color: rgba(64, 72, 82, 1);
    color: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 30px;
    right: 0;
    margin-top: 2rem;
}

