 
        /* General Header & Navbar Enhancements */
        .main-header {
            transition: box-shadow 0.3s ease-in-out;
        }

        .main-header:hover {
            /* Adds a subtle lift effect on hover for the whole header */
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
        }
        
        /* Navigation styling */
        .nav-link {
            font-weight: 600;
            font-size: 20px !important;
            color: #0a1a2b !important;
            transition: 0.3s;
            padding: 10px 15px !important; /* Adjusted padding for better spacing */
            position: relative;
        }
        .logo {
    height: 50px;
    width: auto;
    transition: 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

        
#navbarNav{
    margin-left: 160px;
}
        .nav-link:hover {
            color: #ff4fa7 !important;
        }
        
        /* Simple hover line based on the visual reference */
        .nav-link.active, .nav-link-underline {
            border-bottom: 3px solid #ff4fa7;
            padding-bottom: 7px !important; /* Adjust padding to make space for the line */
        }

        /* Call Now Button Styling */
        .call-btn {
            background: linear-gradient(90deg, #ff4fa7, #d870a4ff); /* Soft blue gradient */
            color: white !important;
            border-radius: 25px;
            font-weight: 600;
            box-shadow: 0px 4px 15px #d870a4ff;
            transition: all 0.3s;
            padding: 8px 20px;
            text-decoration: none; /* Ensure no underline */
        }
        
        .call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0px 6px 18px #d870a4ff;
        }

        /* Dropdown */
        .dropdown-menu {
            border-radius: 12px;
            padding: 10px 0;
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .dropdown-item {

            color: #0a1a2b !important;
            padding: 8px 20px;
            transition: background-color 0.2s;
        }

        .dropdown-item:hover {
            background-color: #ff4fa7 !important; /* Light pink hover for items */
            color: #ffffffff !important;
            
        }

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .navbar-collapse {
                padding-bottom: 20px;
            }
            
            .navbar-buttons {
                margin-top: 15px; 
            }
            
            .call-btn {
                display: block;
                width:auto;
                text-align: center;
            }
            #navbarNav{
    margin-left: 0px;
}
        }
   
        
        /* Alignment Fix for Desktop */
        @media (min-width: 992px) {
            .navbar-nav {
                /* Push the menu to the center */
                margin-left: auto;
                margin-right: auto;
            }
            .navbar-brand {
                /* Keep logo on the far left */
                margin-right: 0;
            }
        }
  