  body * {
  font-weight: 500;
  color: #585858;
  font-family: 'Gilroy', sans-serif;
}
  .card-custom1 {
      position: relative;
      border-radius: 1.5rem;
      padding: 3rem 1.3rem 1rem;
      background: #fff;
      box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      height: 100%;
       font-family: 'Plus Jakarta Sans', sans-serif;
    }



    .card-custom1 img {
      position: absolute;
      top: -35px;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
    }

    .card-custom1:hover {
      transform: scale(1.08);
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
      z-index: 10;
    }

    .card-custom1 h3 {
      font-weight: 700;
      font-size: 2rem;
      padding-top: 1.5rem;
      color: #2c3e50;
      font-family: 'Plus Jakarta Sans';
    }

    .card-custom1 .lead {
      margin-top: 1rem;
      font-size: 1rem;
      color: #6c757d;
    }

    .card-custom1 .description {
      margin-top: 1rem;
      font-size: 0.95rem;
      color: #495057;
    }

    .btn-blue {
      background-color: #2271ff;
      color: white;
      border-radius: 0.5rem;
      padding: 0.75rem 0;
      width: 100%;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin-top: auto;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .btn-blue:hover {
      background-color: #1a5bd1;
      transform: scale(1.05);
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
      text-decoration: none;
    }



/* section1 and */


/* section2 start */


 .why-us h3 {
      text-align: left;
      font-size: 2.5rem;
      margin-bottom: 40px;
      font-weight: bold;
      animation: slideInLeft 1s ease forwards;
      opacity: 0;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .stats-box {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .stat {
      background-color: white;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
      border-radius: 15px;
      padding: 30px;
      width: 220px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .stat:hover {
      transform: scale(1.05);
    }

    .stat .count-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: #2271ff;
    }

    .stat .label {
      font-size: 1.1rem;
      color: #333;
      margin-top: 10px;
    }




/* section2 and */



/* =============================== */
/*      Contact Section Styles     */
/* =============================== */


    p {
      font-weight: 500;
      color: #585858;
    }

    .contact-section {
      padding: 80px 0;
    }

    .contact-form {
      background: #ffffff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .form-label {
      font-weight: 600;
    }

    .btn-primary {
      background-color: #0d6efd;
      border: none;
      font-weight: 600;
    }

    .btn-primary:hover {
      background-color: #0b5ed7;
    }

    .map-responsive {
      overflow: hidden;
      padding-bottom: 56.25%;
      position: relative;
      height: 0;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .map-responsive iframe {
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      position: absolute;
    }

    .section-title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #333;
    }