.elementor-3623 .elementor-element.elementor-element-4f6b2ba{--display:flex;--min-height:130px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3623 .elementor-element.elementor-element-291b048{--display:flex;}.elementor-3623 .elementor-element.elementor-element-93013a5{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-826da24 */<style>
:root {
    --nav-bg: #7db885;
    --nav-text: #1a1a2e;
    --nav-accent: #7db885;
    --nav-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

#biogyan-navbar {
    position: fixed;
    /* 1. Detach from edges to create the floating effect */
    top: 20px; 
    left: 50%;
    transform: translateX(-50%); /* Centers the pill */
    
    /* 2. Width and Shape */
    width: 95%; /* Adjust to your preference (e.g., 95% or 1200px) */
    max-width: 1200px;
    height: 75px; /* Slightly shorter for a sleeker pill look */
    
    /* 3. The Pill Design */
    background: rgb(125, 184, 133,0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3); /* Soft border for glass effect */
    border-radius: 100px; /* This creates the pill shape */
    
    /* 4. Layout & Depth */
    z-index: 9999;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Deeper shadow for floating depth */
    transition: all 0.3s ease;
}

/* Optional: Shrink the logo slightly to fit the new height */
#biogyan-navbar .nav-logo img {
    height: 45px; 
    width: auto;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: auto auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 60px; 
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center; /* This centers the links themselves */
    gap: 5px;
    margin: 0;
    padding: 0;
    flex: 1; /* This tells the links to take up available middle space */
}

/* Base styling for the links */
.nav-links li a {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px; /* Gives space for the pill background */
    border-radius: 50px; /* Makes the hover background a pill shape */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

/* Raised Pill Effect on Hover and Active */
.nav-links li a:hover, 
.nav-links li a.active {
    color: #387676 !important; /* Forces text to white */
    background-color: var(--nav-accent); /* Your brand blue */
    
    /* This creates the "raised" 3D effect */
    box-shadow: 0 8px 15px rgba(71, 71, 215, 0.3); 
    transform: translateY(-2px);
}

/* Subtle click effect (pressed down) */
.nav-links li a:active {
    transform: translateY(0px);
    box-shadow: 0 4px 8px rgba(71, 71, 215, 0.2);
}

/* Remove the old underline effect if you have it */
.nav-links li a::after {
    display: none !important;
}

.cta-button {
    background: var(--nav-accent);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 15px rgba(71, 71, 215, 0.2);
}

/* --- MOBILE DRAWER STYLES --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    padding: 40px 20px;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-close {
    font-size: 35px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: var(--nav-text);
}

.drawer-links {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.drawer-links li { margin-bottom: 25px; }

.drawer-links li a {
    text-decoration: none;
    color: var(--nav-text);
    font-size: 18px;
    font-weight: 600;
}

.drawer-cta {
    display: block;
    background: var(--nav-accent);
    color: #fff !important;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--nav-text);
    border-radius: 2px;
}

@media (max-width: 992px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .nav-logo img { height: 50px; }
}
</style>/* End custom CSS */