/* Base reset (keep yours) */
* {
    box-sizing: border-box;
}

.mobile-navbar {
    display: none;
}

@media only screen and (max-width:768px) {
    .navigation-bar {
        display: none;
    }

    .mobile-navbar {
        display: block;
    }
}

/* nav bar */
.navigation-bar {
    width: 100%;
    background-color: #fff;
    box-shadow: 5px 0px 10px #18181815;
    min-height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}

.navigation-bar .nav-Container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.navigation-bar .brand-logo img {
    width: 200px;
    height: auto;
}

/* main nav links */
.nav-nav-bar-links>ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-nav-bar-links ul li {
    position: relative;
}

.nav-nav-bar-links ul li a {
    font-size: 1.1rem;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-nav-bar-links ul li a:hover {
    color: #5b2525;
}

/* DROPDOWN - Smooth & buttery */
.nav-nav-bar-links .dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 9999;
}

/* Dropdown links styling */
.nav-nav-bar-links .dropdown a {
    display: block;
    padding: 12px 18px;
    color: #181818 !important;
    font-size: 1rem;
    background: transparent;
    text-decoration: none;
    position: relative;
    transition: all 0.25s ease;
}

.nav-nav-bar-links .dropdown a:hover {
    background: #f5f5f5;
    color: #5b2525 !important;
    transform: translateX(4px);
}

/* Hover / Active State - buttery smooth */
.portfolio-link:hover .dropdown,
.portfolio-link.active .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Icon rotation for dropdown */
.portfolio-link i {
    font-size: 1.1rem;
    margin-left: 5px;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-link:hover i,
.portfolio-link.active i {
    transform: rotate(45deg);
}

/* Responsive hiding (keep your media query) */
@media only screen and (max-width: 768px) {
    .navigation-bar {
        display: none;
    }

    .mobile-navbar {
        display: block;
    }
}


/* CTA button */
.d-nav-cta a {
    padding: 10px 20px;
    color: #181818;
    background: linear-gradient(90deg, #d6b13a, #e4c45a);
    border-radius: 15px;
    border: none;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.d-nav-cta a:hover {
    transform: scale(1.05);
}