
body * {
  font-weight: 500;
  color: #585858;
  font-family: 'Gilroy', sans-serif;    
}
    /* 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;
    }


    .custom-card {
  /*background-color: #e6ecff; */
  color: #666699;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  border: none;
  position: relative;
  z-index: 1;

}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  /*background-color: #f3f3fd;*/
   background-color: #cde1f9;
  color: #000; 
}

.custom-card .btn-outline-light {
  border-color: #fff;
  color: #666699;
  transition: all 0.3s ease;
}

.custom-card:hover .btn-outline-light {
  border-color: #000;
  color: #000;
  background-color: #f1f1f1;
}

.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1); /* lighter in dark mode */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.custom-card:hover .icon-box {
  background: rgba(0, 0, 0, 0.05); /* softer in light mode */
}




