/* Navbar Link Styling */
.custom-nav .nav-link {
    font-weight: 500;
    color: #555;
    padding: 8px 10px;
    position: relative;
    transition: all 0.3s ease;
}

/* Navbar Link Spacing & Style */
.custom-nav .nav-item {
    margin-left: 40px; /* increased space between items */
}

.custom-nav .nav-item:first-child {
    margin-left: 0;
}


.custom-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1b17ce;
    transition: width 0.3s ease;
}

.custom-nav .nav-link:hover::after,
.custom-nav .nav-link.active::after {
    width: 100%;
}

.custom-nav .nav-link:hover,
.custom-nav .nav-link.active {
    color: #1b17ce;
    transform: translateY(-2px);
}

/* Brand Text */
.navbar-brand .brand-text {
    font-size: 1.25rem;
    color: #1b17ce;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-download {
    background-color: #1b17ce;
    border-color: #1b17ce;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-download:hover {
    background-color: #140fa3;
    border-color: #140fa3;
    transform: translateY(-2px);
    color: white;
}

.btn-outline-primary {
    color: #1b17ce;
    border-color: #1b17ce;
}

.btn-outline-primary:hover {
    background-color: #1b17ce;
    color: #fff;
}

/* Navbar Shrink */
.navbar.shrink {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.navbar.shrink .navbar-brand img {
    height: 32px;
}

/* Responsive */
@media (max-width: 991px) {
    .custom-nav .nav-item {
        margin-left: 0;
        margin-bottom: 10px;
        text-align: center;
    }
}

