.contact_form_box {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
}
.control-group {
    margin-bottom: 15px;
}
.control-group label {
    display: block;
    margin-bottom: 5px;
}
.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #333; /* Subtle border */
    background-color: transparent;
    color: #fff;
}
.form-control::placeholder {
    color: #aaa; /* Light placeholder text */
}
button.form-control {
    background-color: #222; /* Dark button background */
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button.form-control:hover {
    background-color: #444; /* Lighter button background on hover */
}


/* Default footer styles */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #6d41a1;
    color: white;
    text-align: center;
    padding: 15px 0;
    transition: all 0.3s; /* Smooth transition for padding and font size changes */
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}
.follow-us a {
    color: white;
    margin: 0 10px;
    font-size: 16px; /* Larger icons */
    transition: transform 0.3s; /* Smooth transition for scaling down icons */
}
.follow-us a:hover {
    color: #ddd;
}
.copyright {
    font-size: 10px;
}

/* Mobile styles */
@media (max-width: 767px) {
    footer {
        padding: 10px 0; /* Smaller padding on mobile */
    }
    .footer-content {
        padding: 0 5%; /* Less padding on mobile */
    }
    .follow-us a {
        font-size: 10px; /* Smaller icons on mobile */
        margin: 0 5px;
    }
    .follow-us {
        margin-bottom: 5px; /* Add space between icons and copyright text */
    }
    .copyright {
        font-size: 10px; /* Smaller text on mobile */
    }
}
