.mapper.container {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 0px !important;
}

@keyframes zoomIn {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .location-img {
    animation: zoomIn 1s ease-out;
  }
  

.contact-section {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
}

/* Map and Icon Styling */
.map-container {
    position: relative;
    margin: 1rem auto;
    margin-top: 0rem;
}

.icon-box {
    position: absolute;
    width: 28px;  /* Reduced icon size */
    height: 28px; /* Reduced icon size */
    background-color: #EC4899;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.icon-box:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.icon-box i {
    color: #fff;
    font-size: 14px; /* Reduced icon font size */
}

.dropdown-box {
    position: absolute;
    top: 100%;  /* Moved below the icon box */
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0.75rem;  /* Reduced padding */
    border-radius: 8px;
    display: none;
    z-index: 10;
    min-width: 200px; /* Increased width for content */
}

.icon-box:hover .dropdown-box {
    display: block;
}

.dropdown-box h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem; /* Responsive font size */
    color: #333;
}

.dropdown-box p {
    margin: 0.5rem 0;
    font-size: 0.875rem; /* Adjusted font size */
    color: #555;
}

.dropdown-box a {
    color: #007bff;
    text-decoration: none;
}

.dropdown-box a:hover {
    text-decoration: underline;
}

/* Custom Icon Positioning */
.icon-1 { top: 32%; left: 19%; }
.icon-2 { top: 54%; left: 50%; }
.icon-3 { top: 32%; left: 70%; }

/* Responsive Design */
@media (max-width: 768px) {
    .map-container {
        padding: 0 1rem;
    }

    .dropdown-box {
        top: 110%;  /* Adjusted for smaller screens */
        left: 50%;
        transform: translateX(-50%);
        min-width: 181px;
    }

    .icon-box {
        width: 22px; /* Even smaller for smaller screens */
        height: 22px; /* Even smaller for smaller screens */
    }
    
    .icon-box i {
        font-size: 12px;  /* Smaller icon font size */
    }

    .dropdown-box h3 {
        font-size: 1rem; /* Smaller title */
    }

    .dropdown-box p {
        font-size: 0.75rem; /* Smaller text */
    }
}
