@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

* {
    font-family: "Baloo Bhaijaan 2", cursive !important;
}

html {
    background-color: #a3ada4;
}

body {
    background: linear-gradient(135deg, #c8d0cc 0%, #a3ada4 100%);
    min-height: 100vh;
}

.header-section {
    background-color: #ff7f50dd;
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    border-radius: 1.5rem;
    text-align: center;
    color: white;
    animation: appear 0.6s ease-out;
}

.header-section h1 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.contact-card {
    background-color: white;
    color: #333;
    border-radius: 0.75rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: appear 0.6s ease-out;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #a3ada4;
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: border-color 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #ff7f50;
    box-shadow: 0 0 0 0.2rem rgba(255, 127, 80, 0.25);
}

.btn-submit {
    background-color: #ff7f50;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #ff6333;
    transform: translateY(-2px);
}

.info-section {
    background-color: rgba(163, 173, 164, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.info-section h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-item {
    margin: 1rem 0;
    color: #333;
}

.info-item strong {
    color: #ff7f50;
}

.footer {
    background-color: #a3ada4;
    text-align: center;
    color: white;
    padding: 1rem;
    margin-top: 4rem;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
    color: #155724;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}
.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
    color: #721c24;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}
