    :root {
        --navbar-width: 5.5rem;
        --transition-speed: 0.3s;
        --mobile-nav-height: 70px;
        --tablet-nav-height: 80px;
    }

    /* Fixed Top Navbar */
    .navbar-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #f7ffe1;
        /*border-bottom: 1px solid #e9ecef;*/
        padding: 0.5rem 1rem;
        height: 70px;
        z-index: 2000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
    }
@media (max-width: 768px) {
  .navbar-fixed {
    padding-left: 0 !important;
  }
  .navbar-brand img{
    width: 140px !important;
    height: 50px !important;
  }
}
    .navbar-brand {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .navbar-brand img {
        width: 200px;
        height: 80px;
    }

    /* Google Translate Styling */
    .translate-container {
        display: flex;
        align-items: center;
    }

#sidebar{
    box-shadow: 12px 2px 20px rgba(0, 0, 0, 0.05);
}


    /* Desktop Sidebar */
    .navbar {
        position: fixed;
        top: 50%;
        left: 1rem;
        transform: translateY(-50%);
        background: #fff;
        border-radius: 10px;
        padding: 1rem 0;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
        height: auto;
        width: var(--navbar-width);
        transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow: visible;
        /*margin-top: 30px;*/
        /* Account for fixed navbar */
    }

    .navbar.hidden {
        transform: translateY(-50%) translateX(calc(-100% - 2rem));
        opacity: 0;
        pointer-events: none;
    }

    .navbar:not(.hidden) {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
        pointer-events: all;
    }

    /* Mobile Bottom Navbar */
    .mobile-navbar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        height: var(--mobile-nav-height);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .mobile-navbar__menu {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        height: 100%;
        justify-content: space-around;
        align-items: center;
    }

    .mobile-navbar__item {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .mobile-navbar__link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #6a778e;
        width: 100%;
        height: 100%;
        transition: all 200ms ease;
        position: relative;
        border-radius: 10px;
    }

    .mobile-navbar__link i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .mobile-navbar__link span {
        font-size: 0.7rem;
        font-weight: 600;
    }

    .mobile-navbar__link.active {
        color: #406ff3;
    }

    .mobile-navbar__link.active::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: #406ff3;
        border-radius: 3px;
    }

    /* Tablet Bottom Navbar */
    .tablet-navbar {
        display: none;
        position: fixed;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        height: var(--tablet-nav-height);
        width: 70%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-radius: 15px;
    }

    .tablet-navbar__menu {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        height: 100%;
        justify-content: space-around;
        align-items: center;
    }

    .tablet-navbar__item {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .tablet-navbar__link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #6a778e;
        width: 100%;
        height: 100%;
        transition: all 200ms ease;
        position: relative;
        border-radius: 10px;
    }

    .tablet-navbar__link i {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .tablet-navbar__link span {
        font-size: 0.8rem;
        font-weight: 600;
    }

    .tablet-navbar__link.active {
        color: #406ff3;
    }

    .tablet-navbar__link.active::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: #406ff3;
        border-radius: 3px;
    }

    /* Update the toggle button positioning */
    .navbar-toggle {
        position: fixed;
        top: 50%;
        left: 1rem;
        transform: translateY(-50%);
        background: #406ff3;
        color: white;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 12px rgba(64, 111, 243, 0.4);
        z-index: 1001;
    }

    .navbar-toggle:hover {
        transform: translateY(-50%) scale(1.1);
        background: #2958e6;
    }

    .navbar-toggle i {
        font-size: 14px;
        transition: transform var(--transition-speed) ease;
    }

    /* Arrow moves with navbar on desktop */
    body.navbar-visible .navbar-toggle {
        left: calc(var(--navbar-width) + 1rem);
    }

    .navbar__menu {
        position: relative;
        list-style: none;
        padding: 0;
        margin: 0;
        overflow: visible;
    }

    .navbar__item {
        position: relative;
        overflow: visible;
        z-index: 0;
    }

    .navbar__link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 3.5rem;
        width: 5.5rem;
        color: #6a778e;
        transition: 250ms ease all;
        border-radius: 17.5px;
        text-decoration: none;
    }

    .navbar__link:hover {
        color: #fff;
    }

    /* FontAwesome icon styling */
    .navbar__link i {
        font-size: 1.25rem;
        transition: transform 250ms ease;
    }

    .navbar__link:hover i {
        transform: scale(1.1);
    }

    /* Tooltip */
    .navbar__link span {
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%) translateX(-10px);
        margin-left: 2rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        color: #406ff3;
        background: #fff;
        padding: 0.5rem 0.75rem;
        transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
        border-radius: 17.5px;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        font-size: 0.9rem;
        z-index: 1002;
        min-width: max-content;
    }

    .navbar:not(.hidden) .navbar__link:hover span {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }

    /* NEW: per-link highlight pill */
    .navbar__link::before {
        content: "";
        position: absolute;
        inset: 0.5rem 1rem;
        border-radius: 17.5px;
        background: transparent;
        transform: scale(1);
        transition: background 250ms ease, transform 250ms ease;
        z-index: -1;
    }

    /* Gooey-esque pulse on hover/active */
    @keyframes linkGoo {
        0% {
            transform: scale(1, 1);
        }

        50% {
            transform: scale(0.95, 1.05);
        }

        100% {
            transform: scale(1, 1);
        }
    }

    .navbar__link:hover::before,
    .navbar__link.active::before {
        background: #406ff3;
        box-shadow: 0 6px 18px rgba(64, 111, 243, 0.35);
        animation: linkGoo 250ms 1;
    }

    /* Keep main content transition */
    #main-content {
        transition: all var(--transition-speed) ease-in-out;
        margin-left: 2rem;
        padding: 2rem;
        min-height: 100vh;
        margin-top: 60px;
        /* Account for fixed navbar */
    }

    /* Responsive */
    @media (max-width: 768px) {
        .navbar {
            left: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            height: auto;
            width: 5rem;
            overflow: visible;
            max-height: calc(100vh - 2rem);
        }

        .navbar.hidden {
            transform: translateY(-50%) translateX(calc(-100% - 1rem));
        }

        .navbar-toggle {
            left: 0.5rem;
            width: 1.75rem;
            height: 1.75rem;
            transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-toggle i {
            font-size: 12px;
        }

        /* Arrow moves with navbar on mobile - FIXED */
        .navbar:not(.hidden)+.navbar-toggle {
            left: calc(5rem + 0.5rem);
        }

        /* Remove margin adjustment for mobile to prevent content compression */
        #main-content {
            margin-left: 1rem;
            transition: none;
        }

        body.navbar-visible #main-content {
            margin-left: 1rem;
        }

        /* Remove body margin adjustment on mobile */
        body.navbar-visible {
            margin-left: 0;
        }

        .navbar__link {
            width: 5rem;
        }

        .navbar__link::before {
            inset: 0.5rem 0.875rem;
        }

        .navbar__link i {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .navbar {
            width: 4.5rem;
        }

        .navbar:not(.hidden)+.navbar-toggle {
            left: calc(4.5rem + 0.5rem);
        }

        .navbar__link {
            width: 4.5rem;
        }

        .navbar__link::before {
            inset: 0.5rem 0.75rem;
            border-radius: 16px;
        }

        .navbar__link i {
            font-size: 1rem;
        }
    }

    /* Mobile-specific styles (phones) */
    @media (max-width: 480px) {
        .mobile-navbar {
            display: block;
        }

        .tablet-navbar {
            display: none;
        }

        .navbar-toggle {
            display: none;
        }

        .navbar {
            display: none;
        }

        body {
            padding-bottom: var(--mobile-nav-height);
        }

        #main-content {
            margin-left: 0;
            padding: 1rem;
        }
    }

    /* Tablet-specific styles */
    @media (min-width: 481px) and (max-width: 768px) {
        .tablet-navbar {
            display: block;
        }

        .mobile-navbar {
            display: none;
        }

        .navbar-toggle {
            display: none;
        }

        .navbar {
            display: none;
        }

        body {
            padding-bottom: calc(var(--tablet-nav-height) + 1rem);
        }

        #main-content {
            margin-left: 0;
            padding: 1.5rem;
        }
    }

    /* Desktop styles */
    @media (min-width: 769px) {
        .mobile-navbar {
            display: none;
        }

        .tablet-navbar {
            display: none;
        }

        .navbar-toggle {
            display: flex;
        }

        .navbar {
            display: block;
        }

        body {
            padding-bottom: 0;
        }
    }

    /* Floating WhatsApp Button */
    .getio-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #25d366;
        color: white;
        font-size: 28px;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 3000;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .getio-button:hover {
        transform: scale(1.1);
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
        color: white;
        text-decoration: none;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .getio-button {
            bottom: 15px;
            right: 15px;
            width: 50px;
            height: 50px;
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .getio-button {
            bottom: 80px;
            right: 12px;
            width: 45px;
            height: 45px;
            font-size: 22px;
        }
    }

    /* Google Translate Styling - Fixed */
    .goog-te-combo {
        padding: 6px 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background-color: #fff;
        font-size: 14px;
        color: #333;
        height: 36px;
        min-width: 140px;
    }

    .goog-te-gadget {
        font-family: Arial, sans-serif;
        font-size: 14px;
        color: #333;
    }

    .goog-te-gadget-simple {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 4px;
        padding: 6px 10px;
        height: 36px;
        display: flex;
        align-items: center;
    }

    /* Hide Google Translate branding */
    .goog-te-banner-frame {
        display: none !important;
    }

    .skiptranslate {
        display: none !important;
    }

    body {
        top: 0 !important;
    }

    /* Fix for Google Translate dropdown positioning */
    .goog-te-menu-frame {
        z-index: 9999 !important;
        max-width: 100% !important;
    }

    .goog-te-menu2 {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* Business Loan Section Styling */
    .business-loan-section {
        background: linear-gradient(135deg, #406ff3 0%, #2958e6 100%);
        color: white;
        padding: 2rem;
        border-radius: 12px;
        margin: 2rem 0;
        box-shadow: 0 10px 30px rgba(64, 111, 243, 0.3);
    }

    .business-loan-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .business-loan-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }

    .business-loan-features {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .feature {
        flex: 1;
        min-width: 200px;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
    }

    .feature-title {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .feature-desc {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .loan-more-btn {
        background: white;
        color: #406ff3;
        border: none;
        padding: 12px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .loan-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
