/* Extracted from contact-us.php head style block 1 */
.contact-info-section {
      /* background: #f4f8fb; */
      padding: 60px 0;
    }

    .contact-card {
      background: #fff;
      padding: 35px 20px;
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      height: 100%;
      transition: 0.3s;
    }

    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .contact-icon {
      font-size: 40px;
      color: #0d6efd;
      margin-bottom: 15px;
    }

    .whatsapp-icon {
      color: #25d366;
    }

    .contact-card h5 {
      font-weight: 700;
      margin-bottom: 10px;
    }

    .contact-card p {
      color: #555;
      margin-bottom: 0;
    }

    .contact-card a {
      color: #0d6efd;
      font-weight: 600;
      text-decoration: none;
    }

    .contact-card a:hover {
      text-decoration: underline;
    }

    /* WhatsApp Highlight */
    .whatsapp-card {
      border: 2px solid #25d366;
    }

