.contact-wrapper{
  margin-top: 150px;
}

.contact-section {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 150px;
    }

    .contact-card {
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      overflow: hidden;
      width: 320px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .contact-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .icon-box {
      background: #0056d2;
      color: #fff;
      padding: 1rem;
      display: inline-block;
      border-radius: 12px;
      margin-top: -24px;
      position: relative;
      z-index: 1;
    }

    .icon-box i {
      font-size: 1.5rem;
    }

    .contact-info {
      padding: 1rem 1.5rem 2rem;
    }

    .contact-info h3 {
      margin: 1rem 0 0.5rem;
      font-size: 1.2rem;
      color: whitesmoke;
    }

    .contact-info p {
      margin: 0;
      color: whitesmoke;
      font-size: 0.95rem;
      word-wrap: break-word;
    }

    /* ✅ Proper mobile responsiveness */
    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
      }

      .contact-card {
        width: 100%;
        max-width: 90%;
      }
    }