/* contact-styles.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background: linear-gradient(45deg, #2937f0, #9f1ae2);
    color: white;
    padding: 80px 0;
}

.info-card {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: #2937f0;
    margin-bottom: 15px;
}

.contact-form .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 15px 0;
    margin-bottom: 20px;
}

.btn-gradient {
    background: linear-gradient(45deg, #2937f0, #9f1ae2);
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

.social-links a {
    font-size: 24px;
    margin: 0 15px;
    color: #2937f0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #9f1ae2;
}

footer {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 40px;
    }
}