.text-orange
{
   color: #F25C27 !important; 
}
.bg-footer
{
    background-color: #F25C27 !important; 
}
.bg-light-custom {
        background-color: #F4F5F9;
    }

    .custom-navbar {
        background-color: #F25C27;
        border-bottom: 1px solid #b4b4b4;
        padding: 14px 0;
    }

    .navbar-brand img {
        height: 24px;
        width: auto;
    }

    /* Modern Hover Effect Button */
    .btn-back-modern {
        --color: #1a1a1a;
        font-family: inherit;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 12em;
        height: 2.8em;
        position: relative;
        cursor: pointer;
        overflow: hidden; 
        transition: color 0.5s;
        z-index: 1;
        font-size: 15px;
        border-radius: 50px;
        font-weight: 500;
        color: var(--color);
        background: #ffffff;
        text-decoration: none;
    }

    .btn-back-modern:before {
        content: "";
        position: absolute;
        z-index: -1;
        background: var(--color);
        height: 250px;
        width: 300px;
        border-radius: 50%;
        top: 100%;
        left: 100%;
        transition: all 0.7s;
    }

    .btn-back-modern:hover {
        color: #fff !important;
    }

    .btn-back-modern:hover:before {
        top: -50px;
        left: -50px;
    }

    .btn-back-modern:active:before {
        background: #000;
        transition: background 0s;
    }

    .btn-back-modern i {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .btn-back-modern:hover i {
        transform: translateX(-3px);
    }

    /* ================= MOBILE RESPONSIVE LOGIC ================= */
    @media (max-width: 767.97px) {
        .custom-navbar {
            padding: 14px 0;
        }

        .navbar-brand img {
            height: 24px;
        }

        .btn-back-modern {
            width: auto;
            padding: 0 15px;
            height: 2.4em;
            font-size: 13px;
        }

        .btn-back-modern i {
            font-size: 16px;
        }

        .btn-back-modern:before {
            height: 150px;
            width: 200px;
        }
    }

    @media (max-width: 400px) {
        .btn-back-modern span {
            display: none;
        }

        .btn-back-modern:after {
            content: "Back";
        }
    }

    /* Sidebar Styling */
    .uber-sidebar {
        height: calc(100vh - 70px);
        border-right: 1px solid #b4b4b4;
        padding: 15px 0;
        overflow-y: auto;
        position: sticky;
        top: 70px;
        background: #F4F5F9;
    }

    /* Scrollbar Styling (Minimal) */
    .uber-sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .uber-sidebar::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 10px;
    }

    /* Heading Style (Keyword Research etc.) */
    .sidebar-heading {
        padding: 20px 20px 10px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        font-weight: 700;
        color: #000;
        border-top: 1px solid #E0E1E9;
        margin-top: 10px;
    }

    .sidebar-heading:first-child {
        border-top: none;
        margin-top: 0;
    }

    /* Links Style */
    .sidebar-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-item-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        color: #555;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
        border-left: 3px solid transparent;
    }

    .menu-item-link:hover {
        background-color: #fff1ed;
        color: #F25C27;
    }

    /* Active State (Orange Border on Left) */
    .menu-item-link.active {
        color: #F25C27;
        background-color: #fff1ed;
        border-left: 3px solid #F25C27;
        font-weight: 700;
    }

    /* New Badge Style */
    .badge-new {
        background-color: #F25C27;
        color: white;
        font-size: 10px;
        font-weight: 800;
        padding: 2px 8px;
        border-radius: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* ================= MOBILE OFFCANVAS MENU ================= */
    .offcanvas-custom {
        width: 280px !important;
    }

    .offcanvas-custom .offcanvas-header {
        background: linear-gradient(135deg, #F25C27 0%, #ff7849 100%);
        color: white;
        padding: 20px;
        border-bottom: none;
    }

    .offcanvas-custom .offcanvas-title {
        font-weight: 700;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .offcanvas-custom .btn-close {
        filter: brightness(0) invert(1);
        opacity: 1;
    }

    .offcanvas-custom .offcanvas-body {
        padding: 0;
    }

    /* Mobile Sidebar Menu Styles */
    .mobile-sidebar-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #mobileToolsMenu .offcanvas-body::-webkit-scrollbar {
        width: 6px;
    }

    #mobileToolsMenu .offcanvas-body::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    #mobileToolsMenu .offcanvas-body::-webkit-scrollbar-thumb {
        background: #FF5E29;
        border-radius: 10px;
    }

    #mobileToolsMenu .offcanvas-body {
        scrollbar-width: thin;
        scrollbar-color: #FF5E29 #f1f1f1;
    }

    .mobile-sidebar-heading {
        padding: 15px 20px 10px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 700;
        color: #000;
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
        margin-top: 0;
    }

    .mobile-sidebar-heading:first-child {
        border-top: none;
    }

    .mobile-menu-item-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        color: #555;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
        border-left: 3px solid transparent;
    }

    .mobile-menu-item-link:hover {
        background-color: #fff1ed;
        color: #F25C27;
    }

    .mobile-menu-item-link.active {
        color: #F25C27;
        background-color: #fff1ed;
        border-left: 3px solid #F25C27;
        font-weight: 700;
    }

    .mobile-menu-item-link i {
        font-size: 16px;
        margin-right: 8px;
    }

    /* ================= MOBILE RESPONSIVE STYLES ================= */

    /* Mobile Navigation (for screens < 992px) */
    @media (max-width: 991.98px) {
        .uber-sidebar {
            display: none;
        }

    }

    /* Very Small Screens (< 400px) */
    @media (max-width: 400px) {
        .btn-back-modern span {
            display: none;
        }

        .btn-back-modern:after {
            content: "Back";
        }

        .navbar-brand img {
            height: 20px;
        }
    }