/* custom.css */

/* Special Box Styling */
.special-box {
    cursor: pointer;
    color: #fff;
    background: #2599FF;
    border-radius: 8px;
    transition: transform 0.3s;
}
.special-box:hover {
    background: linear-gradient(to right, #244cfd, #15e4fd);
    border-radius: 8px;
    transition: transform 0.3s;
}
.special-box i {
    color: #fff !important;
}
.special-box h5 {
    color: #fff;
}

/* Logo Wrapper */
.logo-wrapper {
    width: 350px;
    height: 200px;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.logo-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
  #mapssection {
    width: 100%;
    height: 400px;
    min-height: 300px;
    border: 1px solid #ccc;
  }
  .leaflet-map {
  width: 100%;
  height: 400px;
  min-height: 300px;
  border: 1px solid #ddd;
}
/*popup */
<style>
.team-popup img {
  border: 4px solid #007bff;
}

.team-popup h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-popup p, .team-popup ul {
  font-size: 0.95rem;
  line-height: 1.6;
}

.team-popup ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}
</style>

