body {
    margin: 0;
    font-family: 'Jost', sans-serif !important;
    background: #fff;
    overflow-x: hidden;
}

/* -----------------------------
            TOPBAR
------------------------------*/
.topbar {
    background-color: #ec6325;
    font-size: 17px;
    color: #fff;
    padding: 12px 40px;
    border-bottom: 1px solid #eee;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.3s;
}

.topbar a:hover {
    color: #0f172a;
}

.topbar .social-icons a {
    font-size: 17px;
}

/* -----------------------------
            NAVBAR
------------------------------*/
.navbar {
    background-color: #fff;
    padding: 15px 40px;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
    position: sticky !important;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: #000;
}

/*.navbar-brand img {*/
/*    height: 70px;*/
/*    margin-right: 10px;*/
/*    transition: transform 0.3s ease;*/
/*}*/

.navbar-brand:hover img {
    transform: scale(1.1);
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
}

.navbar-nav .nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-item.dropdown.show>.nav-link i {
    transform: rotate(180deg);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ec6325;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #ec6325;
}

/* -----------------------------
           TOGGLER
------------------------------*/
.navbar-toggler {
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    z-index: 10000;
}

.bar1,
.bar2,
.bar3 {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s;
}

.open .bar1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.open .bar2 {
    opacity: 0;
}

.open .bar3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* -----------------------------
       MOBILE SLIDE-IN MENU
------------------------------*/
.navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease-in-out;
    padding-top: 80px;
    text-align: left;
}

.navbar-collapse.show {
    right: 0;
}

.navbar-nav {
    flex-direction: column;
    padding-left: 20px;
}

.nav-item {
    margin: 10px 0;
}

/* -----------------------------
       DROPDOWN ANIMATION
------------------------------*/
.dropdown-menu {
    display: block;
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    margin-top: 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
}

@media (max-width: 991.98px) {
    .navbar-collapse .dropdown-menu {
        position: static !important;
        float: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: .25rem;
    }

    .navbar-collapse .dropdown-item {
        padding-left: .5rem;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding-top: 0;
    }

    .navbar-nav {
        flex-direction: row;
        align-items: center;
    }

    .nav-item {
        margin: 0;
    }
}

.navbar-brand img {
    max-height: 55px;
    width: auto !important;
}

/* Default hamburger icon */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280,0,0, 0.7%29' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
    display: inline-block;
}

/* REMOVE BORDER ALWAYS (normal + open) */
.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* When OPEN → change icon + move only the icon */
#toggleBtn.open .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280,0,0, 0.8%29' stroke-width='2' stroke-linecap='round' d='M7 7L23 23M23 7L7 23'/%3E%3C/svg%3E");

    /* move only the icon */
    transform: translateY(-70px);
}
