/* General Styles */
.contact-us {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Info Data */
.info-data {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}



.my-icon {
    font-size: 24px;
    color: #007bff;
}

.text-box h5 a {
    color: #343a40;
    text-decoration: none;
    font-weight: bold;
}

/* Get In Touch Section */
.get-in-touch {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.section-title h2 {
    font-size: 24px;
    font-weight: bold;
    color: #343a40;
}

/* Social Links */
.social-link {
    display: flex;
    gap: 15px;
    list-style: none;
}

.social-link li a {
    font-size: 20px;
    color: #007bff;
    transition: color 0.3s;
}

.social-link li a:hover {
    color: #0056b3;
}

/* Form Styling */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.form-box {
    margin-bottom: 15px;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn-anime {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-anime:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-data-list {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .get-in-touch {
        margin-top: 20px;
    }
}
