 /* Top Bar Styles */
 .crrt-top-bar {
     background: #1a1a1a;
     padding: 8px 0;
     font-size: 14px;
     position: fixed;
     width: 100%;
     top: 0;
     left: 0;
     z-index: 1030;
     transition: transform 0.3s ease-in-out;
 }

 .crrt-top-bar.hidden {
     transform: translateY(-100%);
 }

 .crrt-top-bar-item {
     color: #fff;
     text-decoration: none;
     padding: 0 15px;
     transition: 0.3s ease;
     display: inline-flex;
     align-items: center;
     position: relative;
 }

 .crrt-top-bar-item:not(:last-child)::after {
     content: '|';
     position: absolute;
     right: 0;
     color: #555;
 }

 .crrt-top-bar-item:hover {
     color: #ffc107;
 }

 /* Main Header Styles */
 .crrt-header {
     background: #fff;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     position: relative;
     width: 100%;
     top: 36px;
     left: 0;
     z-index: 1020;
     transition: top 0.3s ease-in-out;
 }

 .crrt-header.top-position {
     top: 0;
 }

 .crrt-logo {
     max-height: 60px;
     width: auto;
 }

 .navbar-brand {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 /* Navigation Styles */
 .crrt-nav-item {
     position: relative;
     padding: 0 5px;
 }

 .crrt-nav-link {
     color: #333;
     padding: 1.5rem 1rem;
     display: flex;
     align-items: center;
     text-decoration: none;
     transition: 0.3s ease;
     position: relative;
 }

 .crrt-nav-link:hover {
     color: #2E7D32;
 }

 /* Dropdown Icon */
 .has-dropdown::after {
     content: '\f107';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     margin-left: 8px;
     font-size: 12px;
     transition: transform 0.3s ease;
 }

 .crrt-nav-item:hover .has-dropdown::after {
     transform: rotate(-180deg);
 }

 /* Dropdown Base Styles */
 .crrt-dropdown {
     position: absolute;
     top: 100%;
     left: 0;
     min-width: 350px;
     background: #fff;
     border-radius: 8px;
     /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transform-origin: top center;
     animation: dropdownHide 0.3s ease forwards;
 }

 .crrt-nav-item:hover .crrt-dropdown {
     animation: dropdownShow 0.4s ease forwards;
     pointer-events: auto;
 }

 .crrt-dropdown-item {
     display: block;
     padding: 12px 20px;
     color: #333;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
 }

 .crrt-dropdown-item:hover {
     background: #f8f9fa;
     padding-left: 25px;
     color: #2E7D32;
     border-radius: 8px;
 }

 @keyframes dropdownShow {
     0% {
         opacity: 0;
         transform: rotateX(-60deg);
         visibility: hidden;
     }

     100% {
         opacity: 1;
         transform: rotateX(0deg);
         visibility: visible;
     }
 }

 @keyframes dropdownHide {
     0% {
         opacity: 1;
         transform: rotateX(0deg);
         visibility: visible;
     }

     100% {
         opacity: 0;
         transform: rotateX(-60deg);
         visibility: hidden;
     }
 }

 /* Book Ticket Button */
 .crrt-book-ticket {
     background: #1976D2!important;
     color: #fff;
     padding: 10px 20px;
     border-radius: 4px;
     font-weight: 500;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
 }

 .crrt-book-ticket:hover {
     background: #ffb300;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }

 /* Hamburger Menu */
 .hamburger-menu {
     width: 30px;
     height: 20px;
     position: relative;
     cursor: pointer;
     display: none;
 }

 .hamburger-menu span {
     display: block;
     position: absolute;
     height: 2px;
     width: 100%;
     background: #333;
     border-radius: 2px;
     transition: all 0.3s ease;
     transform-origin: center;
 }

 .hamburger-menu span:nth-child(1) {
     top: 0;
 }

 .hamburger-menu span:nth-child(2) {
     top: 9px;
 }

 .hamburger-menu span:nth-child(3) {
     top: 18px;
 }

 .hamburger-menu.active span:nth-child(1) {
     transform: rotate(45deg);
     top: 9px;
 }

 .hamburger-menu.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger-menu.active span:nth-child(3) {
     transform: rotate(-45deg);
     top: 9px;
 }


 @media (max-width:1024px) {
     .hamburger-menu {
         display: block;
     }

     .crrt-nav-link {
         padding: 0.9rem 1rem;
     }

     .crrt-book-ticket {
         margin-bottom: 10px;
     }

 }

 /* Mobile Styles */
 @media (max-width: 991px) {
     /* body {
         padding-top: 98px;
     } */

     /* .crrt-top-bar-item:not(:last-child)::after {
         display: none;
     } */

     .crrt-top-bar-item {
         padding: 0 10px;
     }

     .hamburger-menu {
         display: block;
     }

     .crrt-top-bar {
         overflow-x: auto;
         white-space: nowrap;
         -webkit-overflow-scrolling: touch;
     }

     .crrt-top-bar::-webkit-scrollbar {
         display: none;
     }

     .navbar-toggler {
         border: none;
         padding: 0.75rem;
         background: transparent;
     }

     .navbar-toggler:hover {
         background: rgba(0, 0, 0, 0.05);
         border-radius: 4px;
     }

     .navbar-toggler:focus {
         box-shadow: none;
     }

     .crrt-dropdown {
         position: static;
         display: none;
         opacity: 1;
         visibility: visible;
         box-shadow: none;
         border-radius: 0;
         animation: none !important;
     }

     .crrt-dropdown.show {
         display: block;
     }

     /* .crrt-nav-item {
         border-bottom: 1px solid #eee;
     } */

     .crrt-nav-link {
         padding: 1rem;
     }

     .crrt-book-ticket {
         display: block;
         text-align: center;
         margin: 10px;
     }

     .navbar-collapse {
         background: #fff;
         padding: 1rem;
         border-radius: 8px;
         /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
         margin-top: 10px;
     }
 }

 /* Ticket Button Styles */
 .crrt-book-ticket {
     background: #1976D2!important;
     color: #fff;
     padding: 10px 20px;
     border: none;
     border-radius: 4px;
     font-weight: 500;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .crrt-book-ticket:hover {
     background: #1976D2!important;
     color: #fff!important;
 }

 /* Dropdown Styles */
 .dropdown-menu {
     min-width: 200px;
     padding: 8px 0;
     margin-top: 8px;
 }

 .dropdown-item {
     padding: 8px 16px;
 }

 .dropdown-item:hover {
     background-color: #f8f9fa;
 }

 /* Mobile Styles */
 @media (max-width: 991px) {
     .dropdown-menu {
         width: 100%;
         text-align: center;
     }
 }

 /* Active state styles */
 .crrt-nav-item.active .crrt-nav-link {
     position: relative;
     color: #2E7D32;
     /* Using your yellow theme color */
 }



 .crrt-nav-item.active .crrt-nav-link:hover::after {
     width: 40px;
 }

 /* Active state for dropdown items */
 .crrt-dropdown-item.active {
     /* background: #fff5d9; */
     /* Light yellow background */
     color: #2E7D32;
     padding-left: 25px;
 }

 /* Mobile styles for active state */
 @media (max-width: 991px) {
     .crrt-nav-item.active .crrt-nav-link {
         /* background-color: #fff5d9; */
         border-radius: 4px;
     }

     .crrt-nav-item.active .crrt-nav-link::after {
         width: 4px;
         height: 100%;
         left: 0;
         top: 0;
         transform: none;
         border-radius: 0 2px 2px 0;
     }

     .crrt-dropdown-item.active {
         border-left: 3px solid #ffc107;
     }
 }



 @media (max-width: 425px) {

     /* .crrt-header {
        top: 56px!important;

     } */
 }