.contact-banner {
    min-height: 50vh;
    background: linear-gradient(rgba(95, 91, 91, 0.6), rgba(173, 170, 170, 0.6)),
        url("../img/back.jpeg") no-repeat center/cover;
    padding: 60px 15px;
}

.contact-form {
    background: #f8f9fa;
    /* light gray background */
}

.contact-form .card {
    border-radius: 1.5rem;
}

.contact-form .btn-primary {
    background: #007bff;
    border: none;
    transition: 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #0056b3;
}

.hover-card {
    transition: all 0.3s ease;
    background: #fff;
    align-items: flex-start;
  }
  .hover-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
  }
  .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }


@media (max-width: 768px) {
    .contact-banner h1 {
        font-size: 2rem;
    }

    .contact-banner p {
        font-size: 1rem;
    }
}