  .contact-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  }

  .contact-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(50, 50, 93, 0.07);
    height: 100%;
  }

  .contact-left h3 {
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
  }

  .contact-left p {
    margin-bottom: 18px;
    line-height: 1.6;
    color: #333;
  }

  .social-icons {
    display: flex;
    gap: 12px;
  }

/* Social Icons Style */
.social-icons a {
  display: inline-block;
  margin: 0 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

/* Hover Effect */
.social-icons a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}


  .contact-form .form-control,
  .contact-form .form-select,
  .contact-form textarea {
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: none;
  }

  .contact-form textarea {
    min-height: 140px;
    resize: vertical;
  }

  .btn-primary-custom {
    background: rgb(226, 38, 95);
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
  }

  .btn-primary-custom:hover {
    background-color: pink;
  }

  @media (max-width: 991.98px) {
    .contact-card {
      padding: 22px;
    }
  }