/* Global */
body, .navbar {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.custom-navbar {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Logo */
.logo-text {
    font-weight: 700;
    font-size: 1.4rem;
    color: #6d28d9;
}

/* Links */
.navbar .nav-link {
    font-weight: 500;
    color: #374151;
    padding: 0.6rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: #14b8a6;
}

/* Animated underline */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    left: 0;
    bottom: 2px;
    background: linear-gradient(90deg, #14b8a6, #6d28d9);
    border-radius: 3px;
    transition: width 0.35s ease;
}
.navbar .nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-main {
    background: linear-gradient(135deg, #6d28d9, #14b8a6);
    color: #fff !important;
    font-weight: 600;
    border-radius: 0.6rem;
    padding: 0.45rem 1rem;
    box-shadow: 0 4px 10px rgba(109, 40, 217, 0.25);
    transition: all 0.3s ease;
}
.btn-main:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(109, 40, 217, 0.35);
}

.btn-alt {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    font-weight: 600;
    border-radius: 0.6rem;
    padding: 0.45rem 1rem;
    transition: all 0.3s ease;
}
.btn-alt:hover {
    background: #f3f4f6;
    transform: scale(1.03);
}

/* Custom Toggler */
.custom-toggler {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.toggler-icon {
    width: 25px;
    height: 3px;
    background: #6d28d9;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.custom-toggler:hover .toggler-icon {
    background: #14b8a6;
}

/* Mobile Sidebar */
.custom-offcanvas {
    width: 270px;
    background: #ffffff;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    animation: slideIn 0.4s ease;
}
.custom-offcanvas .nav-link {
    padding: 0.6rem 0;
    font-size: 1rem;
}
.custom-offcanvas .nav-link:hover {
    padding-left: 12px;
    color: #14b8a6;
}

/* Slide animation */
@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}


