 /* ===== GLOBAL ===== */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 body {
     font-family: 'Lato', sans-serif;
     overflow-x: hidden;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 a:hover {
     text-decoration: none;
 }

 section {
     padding: 60px 0;
 }

 .header-fix {
     position: fixed;
     top: 0;
     z-index: 99999;
     width: 100%;
 }

 .top-bar-text {
     font-size: 13px;
     color: #fff;
     font-weight: 900;
 }

 .navbar-header {
     height: 80px;
 }

 .brand-logo {
     width: 90px;
     height: 80px;
     overflow: hidden;
     padding: 10px 0px;
 }

 .brand-logo img {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 h2.section-title {
     font-family: 'Lato', sans-serif;
     font-size: 38px;
     font-weight: 600;
     letter-spacing: 3px;
     text-transform: uppercase;
     text-align: center;
     color: #8dc63f;
     padding: 0 20px;
     margin-bottom: 0px;
 }

 .section-overlay {
     height: 1px;
     position: relative;
     -webkit-box-flex: 1;
     -webkit-flex: 1 1 auto;
     -ms-flex: 1 1 auto;
     /* flex: 1 1 auto; */
     min-width: 10%;
 }

 .vc_sep_line {
     height: 1px;
     border-top: 1px solid #ebebeb;
     display: block;
     position: relative;
     top: 1px;
     width: 100%;
 }

 .section-divider {
     width: 50px;
     height: 3px;
     background: #8dc63f;
     margin: 0 auto 40px;
 }

 #brands .section-divider {
     width: 50px;
     height: 3px;
     background: #f08818;
     margin: 0 auto 40px;
 }

 /* ===== TOP BAR ===== */
 #top-bar {
     background: #000;
     color: #aaa;
     font-size: 12px;
     padding: 6px 0;
 }

 #top-bar .fa {
     margin-right: 5px;
     color: #fff;
 }

 #top-bar .search-icon {
     float: right;
     color: #aaa;
     cursor: pointer;
     font-size: 14px;
     line-height: 1.8;
 }

 #top-bar .search-icon:hover {
     color: #fff;
 }

 /* ===== NAVBAR ===== */
 .navbar-custom {
     min-height: 80px;
     height: auto;
     background-color: rgba(0, 0, 0, 0.6) !important;
     position: relative;
     z-index: 9999;
     margin: 0px;
     border-radius: 0;
     padding: 0;
 }

 .navbar-custom .navbar-brand {
     font-family: 'Lato', sans-serif;
     font-size: 22px;
     font-weight: 900;
     color: #fff !important;
     letter-spacing: 1px;
     display: flex;
     align-items: center;
     padding: 0;
 }

 .navbar-custom .navbar-brand span {
     color: #8dc63f;
 }

 .navbar-custom .navbar-nav .nav-link {
     color: #fff !important;
     font-size: 13px;
     font-weight: 900;
     letter-spacing: 1px;
     text-transform: uppercase;
     padding: 20px 12px;
     transition: color 0.3s;
 }

 /* .navbar-custom .navbar-nav .nav-link:hover,
        .navbar-custom .navbar-nav .nav-link.active,
        .navbar-custom .navbar-nav .active .nav-link {
            color: #8dc63f !important;
            background: transparent !important;
        } */

 .navbar-custom .navbar-toggler {
     border-color: rgba(255, 255, 255, 0.25);
     padding: 0.4rem 0.6rem;
 }

 .navbar-custom .navbar-toggle {
     border-color: #555;
 }

 .navbar-custom .navbar-collapse {
     justify-content: flex-end;
 }

 @media (max-width: 991.98px) {
     .navbar-custom {
         padding: 10px 0;
     }

     .navbar-custom .navbar-collapse {
         background: rgba(0, 0, 0, 0.95);
         margin-top: 10px;
         padding: 10px 15px;
         border-radius: 6px;
     }

     .navbar-custom .navbar-nav {
         width: 100%;
     }

     .navbar-custom .navbar-nav .nav-link {
         padding: 10px 0;
         border-bottom: 1px solid rgba(255, 255, 255, 0.12);
     }

     .navbar-custom .navbar-nav .nav-item:last-child .nav-link {
         border-bottom: 0;
     }
 }

 /* .navbar-custom .navbar-nav>li>a:hover,
        .navbar-custom .navbar-nav>li.active>a {
            color: #8dc63f !important;
            background: transparent !important;
        } */

 .navbar-custom .navbar-toggle {
     border-color: #555;
 }

 .navbar-custom .icon-bar {
     background: #ccc;
 }

 #hero {
     position: relative;
     min-height: 800px;
     background-color: #111;
     background-image: url('./images/heroimg.jpg');
     background-position: center center;
     background-size: cover;
     background-repeat: no-repeat;
     display: flex;
     align-items: flex-end;
 }

 /* #hero .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
 } */

 #hero .hero-content {
     position: relative;
     z-index: 2;
     padding-bottom: 40px;
     width: 100%;
 }

 /* ===== FEATURED EVENTS ===== */
 #featured-events {
     background-image: url('./images/featured.jpg');
     min-height: 400px;
     background-position: center center;
     background-size: cover;
     background-repeat: no-repeat;
 }

 #featured-events .event-card {
     background: #fff;
     border: 1px solid #e0e0e0;
     padding: 20px;
     margin-bottom: 20px;
     transition: box-shadow 0.3s;
 }

 #featured-events .event-card:hover {
     box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
 }

 #featured-events .event-card h4 {
     font-size: 1em;
     margin: 0;
     line-height: 1.3;
     font-weight: bold;
     letter-spacing: 1px;
     margin-bottom: 10px;
     text-align: center;
 }

 #featured-events .event-card .event-meta {
     font-size: 15px;
     color: #666;
     margin-bottom: 10px;
     text-align: center;
     font-weight: 500;
 }

 #featured-events .event-card .event-meta .fa {
     margin-right: 5px;
     color: #8dc63f;
 }

 .btn-book {
     display: block;
     text-align: center;
     background: #222;
     color: #fff;
     font-size: 16px;
     font-weight: 500;
     letter-spacing: 1px;
     text-transform: uppercase;
     padding: 15px 15px;
     margin-top: 14px;
     transition: background 0.3s;
     width: max-content;
 }

 /* ===== FEATURES STRIP ===== */
 #features-strip {
     background: #fff;
     padding: 40px 0;
     border-top: 1px solid #eee;
     border-bottom: 1px solid #eee;
 }

 #features-strip .feature-item {
     text-align: center;
     padding: 10px 20px;
 }

 #features-strip .feature-item .fa {
     font-size: 36px;
     color: #73bb67;
     margin-bottom: 12px;
 }

 #features-strip .feature-item h5 {
     font-size: 1em;
     text-transform: uppercase;
     margin: 0;
     line-height: 1.3;
     font-weight: bold;
     letter-spacing: 1px;
 }

 #features-strip .feature-item p {
     font-size: 14px;
     color: #999;
     margin: 0;
 }

 /* ===== COMBINED DARK BG SECTION (Stats + Simplified Ticketing) ===== */
 #dark-section {
     background: url('./images/events-category.jpg') center center / cover no-repeat;
     position: relative;
 }

 #dark-section .dark-overlay {
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.30);
     /* Lightened overlay to show more image */
 }

 #dark-section .dark-content {
     position: relative;
     z-index: 2;
 }

 /* Stats inside dark section */
 #dark-section .stats-block {}

 #dark-section .stat-item {
     text-align: center;
     color: #fff;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
     padding: 40px 0 40px;
 }

 .stat-border {
     border-left: 1px solid rgba(255, 255, 255, 0.1);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .stat-border:last-child {
     border-right: 1px solid rgba(255, 255, 255, 0.1);
 }

 #dark-section .stat-number {
     font-family: 'Lato', sans-serif;
     font-size: 32px;
     font-weight: 900;
     color: #fff;
     line-height: 1;
     font-weight: 900;
 }

 #dark-section .stat-label {
     font-size: 13px;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: #eee;
     /* Brighter label */
     margin-top: 8px;
     font-weight: 900;
 }

 .stat-item .fa {
     font-size: 32px;
     margin-top: 5px;
 }

 .stat-item .svg {
     font-size: 32px;
     margin-top: 5px;
 }

 /* Simplified Ticketing inside dark section */
 #dark-section .ticketing-block {
     padding: 100px 0 70px;
 }

 #dark-section h2.section-title {
     color: #fff;
     text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
 }

 #dark-section .section-divider {
     background: #f36e0c;
     box-shadow: 0 0 10px rgba(141, 198, 63, 0.3);
 }

 #dark-section .ticketing-step {
     text-align: center;
     color: #fff;
     padding: 20px 10px;
 }

 #dark-section .ticketing-step .fa {
     font-size: 36px;
     color: #fff;
     margin-bottom: 15px;
     text-shadow: 0 0 15px rgba(141, 198, 63, 0.4);
 }

 #dark-section .ticketing-step h5 {
     font-size: 14px;
     font-weight: 900;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: #fff;
     margin-bottom: 12px;
 }

 #dark-section .ticketing-step p {
     font-size: 14px;
     line-height: 1.8;
     color: #f0f0f0;
     /* Brighter paragraph */
 }

 /* ===== MOBILE APPS ===== */
 #mobile-apps {
     background: #6fbe4a;
     padding: 50px 0;
 }

 #mobile-apps .devices-img {
     max-width: 100%;
     margin: 0 auto;
     display: block;
 }

 #mobile-apps .app-content {
     color: #fff;
 }

 #mobile-apps .app-content h2 {
     font-family: 'Lato', sans-serif;
     font-size: 32px;
     font-weight: 900;
     letter-spacing: 2px;
     margin-bottom: 14px;
 }

 #mobile-apps .app-content p {
     font-size: 14px;
     color: #fff;
     line-height: 1.8;
     margin-bottom: 24px;
 }

 .btn-store {
     display: inline-block;
     background-color: rgba(0, 0, 0, 0.3);
     color: #fff;
     border: 1px solid rgba(255, 255, 255, 0.4);
     border-radius: 4px;
     padding: 9px 18px;
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
     margin-right: 8px;
     margin-bottom: 8px;
     transition: background 0.3s;
 }

 .btn-store p {
     line-height: normal;
 }

 .btn-store .fa {
     margin-right: 6px;
     font-size: 14px;
 }

 /* ===== BRANDS SLIDER ===== */
 #brands {
     background: #fff;
     padding: 55px 0;
 }

 #brands h2.section-title {
     color: #333;
 }

 .Brands-title {
     font-size: 18px;
     text-transform: uppercase;
     color: #333333;
     font-weight: 400;
     text-align: center;
 }

 /* Owl Carousel overrides */
 #brands-carousel {
     margin-top: 30px;
 }

 #brands-carousel .brand-logo {
     text-align: center;
     padding: 10px 20px;
     opacity: 0.65;
     transition: opacity 0.3s;
 }

 #brands-carousel .brand-logo:hover {
     opacity: 1;
 }

 #brands-carousel .brand-logo img {
     max-height: 80px;
     max-width: 140px;
     object-fit: contain;
     margin: 0 auto;
     filter: grayscale(100%);
     transition: filter 0.3s;
 }

 #brands-carousel .brand-logo:hover img {
     filter: grayscale(0%);
 }

 /* Owl Nav */
 .owl-controls .owl-nav .owl-prev,
 .owl-controls .owl-nav .owl-next {
     display: none;
 }

 .owl-controls .owl-dots {
     text-align: center;
     margin-top: 20px;
 }

 .owl-controls .owl-dots .owl-dot span {
     display: inline-block;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #ccc;
     margin: 0 4px;
 }

 .owl-controls .owl-dots .owl-dot.active span {
     background: #8dc63f;
 }

 /* ===== FOOTER ===== */
 footer {
     background: #223d54;
     padding: 22px 0;
     position: relative;
 }

 footer .footer-copy {
     color: #b1c6d8;
     font-size: 14px;
     font-weight: 900;
 }

 footer .footer-social {
     text-align: right;
 }

 footer .footer-social a {
     display: inline-block;
     width: 36px;
     height: 36px;
     line-height: 34px;
     text-align: center;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 3px;
     -webkit-border-radius: 3px;
     color: #95acc0;
     background-color: transparent;
     transition: all 0.1s ease-in-out;
 }

 footer .footer-social a:hover {
     background: #1b3143;
     color: #fff;
 }

 footer .footer-pagination {
     text-align: center;
     margin-bottom: 10px;
 }

 footer .footer-pagination .page-dot {
     display: inline-block;
     width: 30px;
     height: 30px;
     line-height: 28px;
     border-radius: 50%;
     border: 1px solid #444;
     color: #777;
     font-size: 12px;
     text-align: center;
     margin: 0 3px;
     cursor: pointer;
     transition: all 0.3s;
 }

 footer .footer-pagination .page-dot.active,
 footer .footer-pagination .page-dot:hover {
     background: #8dc63f;
     border-color: #8dc63f;
     color: #fff;
 }

 /* ===== BRAND LOGO SVGs (inline fallback) ===== */
 .brand-svg-wrap {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 90px;
     width: 90px;
 }

 .brand-svg-wrap svg {
     max-width: 120px;
     max-height: 70px;
 }

 .up-arrow {
     width: 48px;
     height: 48px;
     text-align: center;
     background: #f08818;
     position: absolute;
     left: 50%;
     margin-left: -24px;
     top: -24px;
     color: #fff;
     border-radius: 50%;
     -webkit-border-radius: 50%;
     z-index: 1;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Responsive */
 @media(max-width: 767px) {
     #hero {
         min-height: 300px;
     }

     #stats .stat-item {
         margin-bottom: 30px;
     }

     #mobile-apps .devices-img {
         margin-bottom: 30px;
     }

     footer .footer-social {
         text-align: center;
         margin-top: 10px;
     }
 }