 :root {
     --primary: #168ba7;
     --primary-dark: #10738b;
     --secondary: #2e3a59;
     --accent-green: #10b981;
     --accent-yellow: #f59e0b;
     --accent-red: #ef4444;
     --background-light: #f8fafc;
     --background-dark: #101922;
 }

 .nav-brand img {
     width: 200px;
     position: relative;
 }

 .nav-menu>li>a {
     padding: 12px 20px;
     display: inline-block;
     transition: color 0.3s, background 0.3s;
     font-weight: 500;
     letter-spacing: 0.2px;
     text-transform: capitalize;
     font-size: 15px;
 }

 .skin-dark-footer {
     background: rgba(var(--bs-dark-rgb)) !important;
 }

 .text-primary-custom {
     color: var(--primary) !important;
 }

 .bg-primary-custom {
     background-color: var(--primary) !important;
 }

 .btn-primary-custom {
     background-color: #7fbc02;
     color: white;
     border: none;
 }

 .btn-primary-custom:hover {
     background-color: #7fbc02;
     color: white;
 }

 .text-accent-green {
     color: var(--accent-green) !important;
 }

 .bg-accent-green {
     background-color: var(--accent-green) !important;
 }

 .text-accent-yellow {
     color: var(--accent-yellow) !important;
 }

 .bg-accent-yellow {
     background-color: var(--accent-yellow) !important;
 }

 .text-accent-red {
     color: var(--accent-red) !important;
 }

 .bg-accent-red {
     background-color: var(--accent-red) !important;
 }

 .material-symbols-outlined {
     font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
     vertical-align: middle;
 }

 .filled-icon {
     font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
 }

 .hover-scale {
     transition: transform 0.3s ease;
 }

 .hover-scale:hover {
     transform: scale(1.05);
 }

 .hover-translate-up {
     transition: transform 0.3s ease;
 }

 .hover-translate-up:hover {
     transform: translateY(-5px);
 }

 .card-img-overlay-gradient {
     background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
 }

 .category-card {
     border: none;
     overflow: hidden;
     transition: all 0.3s ease;
     height: 100%;
     background-color: #fff;
     border-radius: 1rem;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     display: flex;
     align-items: center;
     padding: 1rem;
     text-decoration: none;
 }

 .category-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
     text-decoration: none;
 }

 .category-card .card-img-wrapper {
     position: relative;
     width: 80px;
     height: 80px;
     overflow: hidden;
     border-radius: 0.75rem;
     flex-shrink: 0;
     margin-right: 1.5rem;
 }

 .category-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .category-card:hover img {
     transform: scale(1.1);
 }

 .category-card .icon-overlay {
     display: none;
 }

 .category-card .card-body {
     padding: 0;
     display: flex;
     flex-direction: column;
     justify-content: center;
     flex-grow: 1;
 }

 .category-card .card-title {
     font-weight: 700;
     margin-bottom: 0.25rem;
     font-size: 1.1rem;
     color: #212529;
     transition: color 0.3s;
 }

 .category-card:hover .card-title {
     color: var(--primary);
 }

 .category-card .card-text {
     color: #6c757d;
     font-size: 0.85rem;
     margin-bottom: 0;
 }

 .category-card .card-footer-custom {
     padding-top: 0;
     border-top: none;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-left: 1rem;
     flex-shrink: 0;
 }

 .category-card .explore-text {
     display: none;
 }

 .category-card .arrow-btn {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #f8f9fa;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #adb5bd;
     transition: all 0.3s;
 }

 .category-card:hover .arrow-btn {
     background-color: var(--primary);
     color: white;
     transform: translateX(5px);
 }

 .navbar-custom .nav-link {
     font-weight: 700;
     color: #495057;
     padding: 1rem 0;
     margin-right: 2rem;
     border-bottom: 2px solid transparent;
     transition: all 0.2s;
 }

 .navbar-custom .nav-link:hover {
     color: var(--primary);
     border-bottom-color: var(--primary);
 }

 [data-overlay]:before {
     position: absolute;
     content: "";
     background: #020d16ad;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     z-index: 1;
 }

 .active>.page-link,
 .page-link.active {
     background-color: #d42d35 !important;
 }

 ::placeholder {
     color: #9ca3af;
     /* Light gray */
     opacity: 1;
 }

 /* Chrome, Safari */
 ::-webkit-input-placeholder {
     color: #9ca3af !important;
 }

 /* Firefox */
 ::-moz-placeholder {
     color: #9ca3af !important;
 }

 /* IE / Edge legacy */
 :-ms-input-placeholder {
     color: #9ca3af !important;
 }


 .citiesCard-bottomcaps {
     transition: all ease 0.5s;
     transform: translateY(210px);
 }

 .bg-primary {
     --bs-bg-opacity: 1;
     background-color: rgb(22 139 167) !important;
 }

 .text-primary {
     --bs-text-opacity: 1;
     color: rgb(22 139 167) !important;
 }


 .mobilenone {
     display: none;
 }

 .desktopnone {
     display: block !important;
 }

 @media(max-width: 993px) {

     /*.thisone, #navigation {*/
     /*    display: none!important;*/
     /*}*/
     .mobilenone {
         display: block !important;
     }

     .desktopnone {
         display: none !important;
     }

     #navigation {
         padding-top: 5px;
         padding-bottom: 10px;
     }

 }

 .nav-menus-wrapper-close-button {
     position: relative;
     z-index: 99999999 !important;
 }

 #preloader {
     position: fixed;
     inset: 0;
     background: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
 }

 .fade-out {
     opacity: 0;
     transition: opacity 0.6s ease;
 }

 .text-white-50 {
     --bs-text-opacity: 1;
     color: rgb(255 255 255 / 80%) !important;
 }



 /* ===== MEGA MENU ===== */
 .mega-dropdown {
     position: static;
 }

 .mega-menu {
     width: 100%;
     padding: 20px 30px;
     border-radius: 0;
     border: none;
 }

 /* keep open while clicking tabs */
 .mega-menu {
     margin-top: 0;
 }

 /* LEFT TABS */
 .mega-tabs .nav-link {
     text-align: left;
     border-radius: 0;
     font-weight: 500 ;
     color: #000000 !important;
     background: white !important;
 }

 .mega-tabs .nav-link.active{
    background:#168BA7 !important;
    color: white;
 }

 /* LISTS */
 .mega-menu h6 {
     font-weight: 600;
     margin-bottom: 10px;
 }

 .mega-menu ul {
     list-style: none;
     padding: 0;
 }

 .mega-menu ul li {
     padding: 4px 0;
     font-size: 14px;
     cursor: pointer;
 }

 .mega-menu ul li:hover {
     color: #0d6efd;
 }

 /* DESKTOP HOVER */
 @media (min-width: 992px) {
     .mega-dropdown:hover>.dropdown-menu {
         display: block;
     }
 }

 /* MOBILE */
 @media (max-width: 991px) {
     .mega-menu {
         max-height: 70vh;
         overflow-y: auto;
     }

     .mega-menu .border-end {
         border: none !important;
     }
 }

 .mega-menu {
     height: 450px;
     overflow-y: scroll;
 }

 .masonry {
     column-count: 4;
     /* same as col-lg-3 */
     column-gap: 1rem;
 }

 .masonry2 {
     column-count: 2;
     /* same as col-lg-3 */
     column-gap: 1rem;
 }

 .masonry2 .item {
     break-inside: avoid;
     margin-bottom: 1rem;
 }

 .masonry .item {
     break-inside: avoid;
     margin-bottom: 1rem;
 }

 .home-slider {
     height: 386px;
     width: 100%;
 }

 .foot-socials2 ul li a {
     width: 25px;
     height: 25px;
     display: inline-flex;
     align-items: center;
     justify-content: end;
     border-radius: 0.2rem;
     background: rgba(255, 255, 255, 0.1);
     font-size: 15px !important;
     transition: all ease 0.4s;
 }

 .foot-socials2 ul li {
     list-style: none;
     display: inline-block;
     position: relative;
     margin-right: 0px;
     margin-left: 10px;
 }

 .foot-socials2 ul li a:hover {
     background: inherit;
     color: var(--primary);
 }

 .partner-logo {
     filter: grayscale(100%);
     opacity: 0.6;
     transition: all 0.3s ease;
     max-width: 140px;
     height: auto;
 }

 .partner-logo:hover {
     filter: grayscale(0%);
     opacity: 1;
 }

 @media (max-width: 991.98px) {
     .process-connector {
         display: none;
     }

     .hero-section {
         min-height: 400px;
     }

     .visa-card-header {
         border-bottom-right-radius: 0;
         border-bottom-left-radius: 0;
     }
 }


 /* ===== OFFER CAROUSEL ===== */
 .offer-carousel {
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }

 .offer-slide {
     height: 420px;
     background-size: cover;
     background-position: center;
     position: relative;
 }

 .offer-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right,
             rgba(0, 0, 0, 0.9),
             rgba(0, 0, 0, 0.6),
             rgba(0, 0, 0, 0.15));
 }

 .offer-content {
     position: relative;
     z-index: 2;
 }

 .offer-tag {
     display: inline-block;
     border-left: 2px solid #ffb111;
     padding-left: 10px;
     margin-bottom: 10px;
     font-weight: 600;
     color: #fff;
 }

 .offer-title {
     font-size: 2.4rem;
     font-weight: 700;
     color: #ffb111;
     line-height: 1.2;
 }

 .offer-places {
     font-size: 0.95rem;
     opacity: 0.9;
     margin-top: 8px;
     color: white;
 }

 .offer-info {
     margin: 15px 0;
     font-size: 1rem;
     color: white;
 }

 .price {
     color: #ffb111;
     font-weight: 700;
 }

 /* arrows */
 .carousel-control-prev,
 .carousel-control-next {
     width: 5%;
 }

 .carousel-control-prev-icon,
 .carousel-control-next-icon {
     background-size: 60% 60%;
 }

 /* indicators */
 .carousel-indicators button {
     width: 30px;
     height: 3px;
     border-radius: 2px;
 }

 .inputIicon {
     display: flex;
     align-items: center;
     justify-content: flex-start;
     gap: 0.7rem;
     border-radius: 0.375rem;
     padding-left: 0.5rem;
     margin-left: 10px;
     background: #ffffff;
     border: 1px solid var(--bs-bordercolor);
 }

 .searchModern {
     background: #ffffff;
     border-radius: 50px;
     padding: 0.2rem;
 }

 .cart-icon {
     display: inline-block;
 }

 .mycart {
     position: absolute;
     top: -15px;
     right: -10px;
     font-size: 10px;
     min-width: 18px;
     height: 18px;
     padding: 0 5px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 600;
 }


 .vibrant-blob {
     position: absolute;
     border-radius: 50%;
     filter: blur(100px);
     opacity: 0.15;
     pointer-events: none;
     z-index: 0;
 }

 /* ===== TOP BAR ===== */
 .top-bar {
     background: #168ba7;
     color: #fff;
     font-size: 13px;
 }

 .top-bar a {
     color: #fff;
     text-decoration: none;
 }

 .top-bar i {
     margin-right: 4px;
 }

 .top-bar .top-item {
     margin-right: 15px;
 }

 /* Mobile hide extras */
 @media (max-width: 767px) {
     .top-hide-mobile {
         display: none;
     }
 }

 button.d-none.d-md-flex.btn.btn-dark.fw-bold.d-flex.align-items-center.gap-2.shadow.hover-translate-up.px-3.py-2 {
     background: #767676 !important;
     border-color: #767676 !important;
 }

 button.d-none.d-md-flex.btn.btn-dark.fw-bold.d-flex.align-items-center.gap-2.shadow.hover-translate-up.px-3.py-2:hover {
     background: #767676 !important;
     border-color: #767676 !important;
 }