﻿/* Navbar Gradient */
.custom-navbar {
    background: linear-gradient(90deg, #7b2ff7, #f107a3);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    padding: 12px 0;
}

/* Brand */
.navbar-brand {
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.brand-highlight {
    color: #ffd700;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: all 0.3s ease;
}

    /* Hover underline animation */
    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background-color: #ffd700;
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

    /* Active Link */
    .navbar-nav .nav-link.active {
        background-color: rgba(255,255,255,0.2);
        border-radius: 20px;
        padding: 6px 14px;
    }

/* Contact Button Style */
.contact-btn {
    background-color: #ffd700;
    color: #000 !important;
    border-radius: 25px;
    padding: 6px 18px !important;
    font-weight: 600;
}

    .contact-btn:hover {
        background-color: #fff;
        color: #000 !important;
    }
