* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.hero-section {
    background: url('../images/contact.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    height: 65vh;
    color: white;
}

.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 15px 0;
}

.contact-box {
    transition: all 0.3s ease-in-out;
}

.contact-box:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

/* ===== Fade-In Animation ===== */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}