.dropdown-menu {
    background-color: var(--primary) !important; /* Bootstrap primary color */
    color: #fff !important;
    border: none !important;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Base link styling */
.nav-item .nav-link {
    position: relative;
    display: inline-block; /* important for centering the underline */
    color: var(--dark) !important;
}

/* Animated underline */
.nav-item .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -3px; /* adjust spacing */
    left: 50%;
    transform: translateX(-50%);

    width: 40%;       /* underline width (adjust as needed) */
    height: 2px;
    background: var(--dark);
    border-radius: 2px;

    animation: oscillate 1.4s infinite ease-in-out;
}

/* Keyframes for left-right-left motion */
@keyframes oscillate {
    0% {
        transform: translateX(-50%) translateX(-10px); /* move slightly left */
    }
    50% {
        transform: translateX(-50%) translateX(10px);  /* move slightly right */
    }
    100% {
        transform: translateX(-50%) translateX(-10px); /* back left */
    }
}


/* Dropdown items */
.dropdown-item {
    color: #fff !important;
    background-color: transparent !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover and active states */
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

/* Divider line inside dropdown */
.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Optional: caret / toggle icon */
.dropdown-toggle::after {
    color: #fff !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Top Nav ***/
#topnav{
    background-color: var(--primary) !important;
}

/*** Navbar ***/
.navbar-nav .nav-link {
    color: white;
    outline: none;
}
#togglerbtn{
    background-color: var(--warning) !important;
}
.navbar-toggler {
    background: transparent;
    border: 0;
    outline: 0;
    padding: 0.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.navbar-toggler .toggler-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--warning);
    border-radius: 2px;
}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--warning);
}

/* @media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
} */

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: black;
}
.breadcrumb-item a {
    /* color: black; */
    text-decoration: none;
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}

a{
    text-decoration: none;
}
a:hover{
    color: #FEA116;
}


@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: -110px;
    padding-top: 180px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.auth-container {
    height: 75vh;
}

.image-container {
    height: 0;
    padding: 56.25% 0 0 0;
    overflow: hidden;
}

.image-container img {
    position: absolute;
    display: block;
    max-width: 100%;
    max-height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
/*Drop Down*/
.dropdown-item{
    color: white;
}
.dropdown-item:hover{
    /*color: white;*/
    background-color: var(--warning);
}

/*Alert Container*/
.alert { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; }
.alert .iq-alert-icon { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 0 1.30rem 0 0; }
.alert .iq-alert-icon i { font-size: 2.441em; line-height: normal; }
.alert .iq-alert-text { -ms-flex-item-align: center; align-self: center; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; }
.alert .close { float: right; font-size: 20px; font-weight: 400; line-height: 1; color: var(--iq-white); text-shadow: none; opacity: 1; }
.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover { outline: none; }


/* ==========================================
   PRIMARY
========================================== */

/* Text */
.text-primary,
.page-link,
.btn-outline-primary {
    color: var(--primary) !important;
}

/* Background */
.bg-primary,
.btn-primary,
.page-link:hover,
.page-item.active .page-link,
.bg-nav-light {
    background-color: var(--primary) !important;
}

/* Border */
.border-primary,
.btn-primary,
.btn-outline-primary,
.page-link,
.page-link:hover,
.page-item.active .page-link {
    border-color: var(--primary) !important;
}

/* White text on primary backgrounds */
.btn-primary,
.page-link:hover,
.page-item.active .page-link {
    color: #fff !important;
}


/* ==========================================
   SECONDARY
========================================== */

.text-secondary,
.btn-outline-secondary {
    color: var(--secondary) !important;
}

.bg-secondary,
.btn-secondary {
    background-color: var(--secondary) !important;
}

.border-secondary,
.btn-secondary,
.btn-outline-secondary {
    border-color: var(--secondary) !important;
}

.btn-secondary {
    color: #fff !important;
}


/* ==========================================
   SUCCESS
========================================== */

.text-success,
.btn-outline-success {
    color: var(--success) !important;
}

.bg-success,
.btn-success {
    background-color: var(--success) !important;
}

.border-success,
.btn-success,
.btn-outline-success {
    border-color: var(--success) !important;
}

.btn-success {
    color: #fff !important;
}


/* ==========================================
   INFO
========================================== */

.text-info,
.btn-outline-info {
    color: var(--info) !important;
}

.bg-info,
.btn-info {
    background-color: var(--info) !important;
}

.border-info,
.btn-info,
.btn-outline-info {
    border-color: var(--info) !important;
}

.btn-info {
    color: #fff !important;
}


/* ==========================================
   WARNING
========================================== */

.text-warning,
.btn-outline-warning {
    color: var(--warning) !important;
}

.bg-warning,
.btn-warning {
    background-color: var(--warning) !important;
}

.border-warning,
.btn-warning,
.btn-outline-warning {
    border-color: var(--warning) !important;
}

.btn-warning {
    color: #212529 !important;
}


/* ==========================================
   DANGER
========================================== */

.text-danger,
.btn-outline-danger {
    color: var(--danger) !important;
}

.bg-danger,
.btn-danger {
    background-color: var(--danger) !important;
}

.border-danger,
.btn-danger,
.btn-outline-danger {
    border-color: var(--danger) !important;
}

.btn-danger {
    color: #fff !important;
}


/* ==========================================
   LIGHT
========================================== */

.text-light,
.btn-outline-light {
    color: var(--light) !important;
}

.bg-light,
.btn-light {
    background-color: var(--light) !important;
}

.border-light,
.btn-light,
.btn-outline-light {
    border-color: var(--light) !important;
}

.btn-light {
    color: #212529 !important;
}


/* ==========================================
   DARK
========================================== */

.text-dark,
.btn-outline-dark {
    color: var(--dark) !important;
}

.bg-dark,
.btn-dark {
    background-color: var(--dark) !important;
}

.border-dark,
.btn-dark,
.btn-outline-dark {
    border-color: var(--dark) !important;
}

.btn-dark {
    color: #fff !important;
}