.navbar {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.navbar-light {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
}

.sticky-top.navbar-light {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
}

/* Button Theme */
.btn-primary {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
    border-color: #2c3e50 !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50) !important;
    border-color: #34495e !important;
}

/* Primary Color Theme */
:root {
    --bs-primary: #2c3e50 !important;
}

.text-primary {
    color: #2c3e50 !important;
}

.bg-primary {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
}

/* Mobile Menu Theme */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, #2c3e50, #34495e) !important;
        border-radius: 10px;
        margin-top: 10px;
        padding: 15px;
    }
    
    .navbar-nav .nav-link {
        color: white !important;
        padding: 10px 15px !important;
        border-radius: 5px;
        margin: 2px 0;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255,255,255,0.1) !important;
        color: #fff !important;
    }
    
    .dropdown-menu {
        background: #34495e !important;
        border: none;
    }
    
    .dropdown-item {
        color: white !important;
    }
    
    .dropdown-item:hover {
        background: rgba(255,255,255,0.1) !important;
        color: white !important;
    }
}

/* Back to Top Arrow Mobile Fix */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px !important;
        height: 45px !important;
        right: 15px !important;
        bottom: 15px !important;
        font-size: 18px !important;
        border-radius: 50% !important;
        background: #2c3e50 !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4) !important;
        position: fixed !important;
        z-index: 9999 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: white !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        max-width: 45px !important;
        min-width: 45px !important;
        flex-shrink: 0 !important;
    }
    
    .back-to-top:hover {
        background: #34495e !important;
        transform: scale(1.1) !important;
        color: white !important;
    }
    
    .back-to-top i {
        margin: 0 !important;
        line-height: 1 !important;
    }
}