.navbar-nav .dropdown-menu {
   padding  : 0.5rem !important;
   min-width: 14rem;
}

.section-padding
 {
    padding: 60px 0;
}

.floating-icons {
    position: fixed;
    bottom: 40%;
    right: 20px; 
    z-index: 9999; 
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.floating-icons a {
    width: 50px; 
    height: 50px;
    background-color: #25d366;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.floating-icons a:hover {
    transform: scale(1.1);
}

.floating-icons a.call-icon {
    background-color: #127fff;
 
}