/* Contact Card Styles */
.contact-card {
    display: flex;
    justify-content: space-around;
    background-color: #f0f0f0;
    padding: 20px;
}

.contact-individual {
   
    text-align: center;
}

.contact-individual a {
   
    text-decoration: none;
    text-align: center;
    color: #212529;
}
.contact-individual a:hover {
   
  
    color: #212529;
}

.contact-individual img {
    width: 35px;
    /* Adjust the size as needed */
    height: 35px;
    /* Adjust the size as needed */
}

/* Contact Form Styles */
.contact-main-container {
    background-color: #f8f8f8;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.custom-contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    border: 1px solid rgba(0, 162, 255, 0.164);
}

.contact-form {
    display: flex;
    flex-direction: column;

}

.contact-form-container h2 {
    margin-bottom: 20px;

    font-size: 24px;
    color: #333;
}

label {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 3px;

}

input,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background: linear-gradient(45deg, #f60934, #f60934f6);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
}

button:hover {
    background-color: black;
}

.captcha{
    display: flex;
}

#reload{
    height: 35px !important;
    margin-top: 0;
    display: flex;
    align-items: center;
    margin-left: 10px;
    background: rgb(255, 48, 48);
}