/* Custom Navigation Styles */
.navbar-custom {
    padding: 15px 0;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 0;
}

.navbar-custom .navbar-brand .logo-dark {
    display: none;
}

.navbar-custom .navbar-brand .logo-light {
    display: block;
}

.navbar-custom .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    color: #3b82f6;
}

.navbar-custom .navbar-nav .btn-primary {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    background-color: #3b82f6;
    border-color: #3b82f6;
    transition: all 0.3s ease;
}

.navbar-custom .navbar-nav .btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
}

.navbar-custom .dropdown-menu {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 10px;
}

.navbar-custom .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar-custom .dropdown-item:hover {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

.navbar-custom .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

/* Custom Footer Styles */
.footer {
    background-color: #161c2d;
    position: relative;
}

.footer .footer-head {
    margin-bottom: 30px;
}

.footer .footer-head .footer-logo {
    margin-bottom: 20px;
}

.footer .footer-head p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.6;
}

.footer .footer-list {
    margin-bottom: 0;
}

.footer .footer-list li {
    margin-bottom: 12px;
}

.footer .footer-list li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer .footer-list li a:hover {
    color: #3b82f6;
    margin-left: 5px;
}

.footer .footer-list li a i {
    font-size: 12px;
    margin-right: 5px;
}

.footer .social-icon li {
    margin-right: 8px;
}

.footer .social-icon li a {
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer .social-icon li a:hover {
    color: #ffffff;
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.footer-bar {
    background-color: #0f131f;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bar p {
    margin-bottom: 0;
    font-size: 14px;
}

.footer-bar .text-reset {
    color: #3b82f6 !important;
}

.footer-bar .text-reset:hover {
    color: #2563eb !important;
}

.footer-bar .avatar {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-bar .avatar:hover {
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-nav {
        padding: 15px 0;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .navbar-custom .navbar-nav .btn-primary {
        margin-top: 10px;
    }
    
    .footer .footer-head {
        text-align: center;
    }
    
    .footer .footer-head .social-icon {
        justify-content: center;
    }
    
    .footer-bar .text-sm-start,
    .footer-bar .text-sm-end {
        text-align: center !important;
    }
    
    .footer-bar .text-sm-end {
        margin-top: 15px;
    }
} 