
/* =================== Splash Screen =================== */
#splash-screen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
  }

  #splash-screen.hide {
    opacity: 0;
    pointer-events: none;
  }


/* =================== Promo bannner =================== */
.promo-banner {
    background-color: var(--primary-color);
    overflow: hidden;
    position: relative;
    height: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    color: #fff;
    z-index: 9999;
}
.scroll-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
    /* animation-delay: 1s; */
}
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}
/* =================== navbarCustom =================== */
.nav-container {
    width: 100%;
    margin: 0 auto;
    height:100px;
     min-height:80px;
}
.navbarCustom {
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:100px;
    position: relative;
    z-index: 1000;
    min-height:80px;
    width: 85%;
    margin: 0 auto;
}
h1,
h2,
h3,
nav a {
    line-height: 1.2;
    letter-spacing: 0;
}
/* .navbarCustom-brand {
    margin-top: 16px;
  } */
.navbarCustom-brand img {
    width: 220px;
    height: 50px; 
}
.navbarCustom-nav {
    display: flex;
    gap: var(--padding-medium);
    height: 100%;
    align-items: center;
}
.nav-link-custom {
    padding: 40px 0 30px;
    font-size: var(--font-size-l);
    font-weight: 500;
    color: var(--black-color);
    text-decoration: none;
    position: relative;
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
}
.nav-item-custom {
    align-items: center;
    height: 100%;
    display: flex;
}
.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary-color);
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after,
.nav-item-custom.dropdown-custom:hover>.nav-link-custom::after {
    width: 100%;
}
.navbarCustom-item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.icon img {
    height: var(--icon-size-xlarge);
}
.details .number a {
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-color);
    margin-top: -4px;
}
.details .timing {
    font-size: var(--font-size-small);
    color: var(--black-color);
}
.details hr {
    height: 1px;
    margin: -2px;
    background: var(--black-color);
    border: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 1px;
    cursor: pointer;
    z-index: 1002;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white-color);
}
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    pointer-events: none; /* Prevent interaction when hidden */
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 30px;
    z-index: 999;
    min-height: 200px;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease, padding 0.5s ease;
    transform: translateY(-10px);
}

.nav-item-custom.dropdown-custom:hover .dropdown-menu-custom {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 1000px;
    padding: 10px 20px;
    transform: translateY(0);
}

/* .dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 97%;
    background: #fff;
    opacity: 0;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 30px;
    z-index: 999;
    min-height: 200px;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden ;
    transition: all 0.5s ease;
    transform: translateY(-10px);
}

.nav-item-custom.dropdown-custom:hover .dropdown-menu-custom {
  display: grid;
    opacity: 1;
    visibility: visible ;
    max-height: 1000px;
    padding: 10px 20px;
    transform: translateY(0);
} */

.dropdown-column-custom {
    display: flex;
    flex-direction: column;
    width: var(--logo-size-xlarge);
}

.region-title {
    font-size: var(--font-size-medium);
    font-weight: 500;
    color: var(--tertiary-color);
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    width: var(--logo-size-xlarge);
}
.submenu-column-custom {
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    width: 125px;
}
.submenu-column-custom a {
    display: block;
    color: var(--black-color);
    font-size: var(--font-size-default);
    line-height: 1.4;
    font-weight: 400;
    padding: 6px 0;
    text-decoration: none;
}
.submenu-column-custom a:hover {
    color: var(--primary-color);
}
.submenu-toggle-icon {
    font-size: 12px;
    margin-left: 5px;
}
.has-submenu.submenu-active .submenu-toggle-icon {
    transform: rotate(180deg);
}
.submenu-column-custom .has-submenu-wrapper {
    padding: 0px;
    cursor: pointer;
}
.submenu {
    display: none;
}
.submenu.submenu-active {
    display: block;
}

@media (max-width:1080px) {
    .navbarCustom-brand img {
        width: 200px;
        height: 45px; 
    }
    .navbarCustom-nav {
        gap: 10px;
    }
    .details .number a {
        font-size: 22px;
    }
}
@media (max-width:990px) {
    /* ===================== MOBILE navbarCustom STYLE ===================== */
    .navbarCustom {
        width: 90%;
    }
    /* Hamburger Icon */
    .hamburger {
               display: flex
;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        align-items: center;
        width: 40px;
        height: 35px;
        background: var(--primary-color);
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        z-index: 1002;
    }
    .hamburger span {
        width: 24px;
        height: 3px;
        color: var(--white-color);
        border-radius: 3px;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);

    }
  
    .navbarCustom-nav {
  visibility: hidden;
}

    /* Nav Drawer */
    .navbarCustom-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0px;
        width: 80%;
        height: 100vh;
        background-color: var(--white-color);
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        padding: 80px 20px 20px;
        overflow-y: auto;
        gap: 10px;
        align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  will-change: transform;
  
    }
    /* .navbarCustom-nav.no-transition {
  transition: none !important;
} */

  .navbarCustom-nav.active {
  transform: translateX(0);
  backdrop-filter: blur(10px);
  visibility: visible;
}
    /* Nav Links */
    .nav-link-custom {
        font-size: 17px;
        padding: 12px 16px;
        color: var(--black-color);
        text-decoration: none;
        font-weight: 500;
        border-radius: 6px;
    }
    .nav-link-custom:hover {
        background-color: #f5f5f5;
    }
    /* Contact Info Hidden in Mobile (Optional) */
    .navbarCustom-item {
        display: none;
    }
    /* Dropdown Menu */
    .dropdown-menu-custom {
        margin-top: 5px;
        display: none !important;
        flex-direction: column;
        background: var(--white-color);
        padding: 10px 15px;
        border-radius: 8px;
        position: static !important;
        width: 100%;
        z-index: 1002;
        visibility: hidden !important;
    }
    .dropdown-menu-custom.submenu-active {
        display: flex !important;
        visibility:visible;
    }
    /* Region Title Toggle */
    .region-title {
        font-size: 16px;
        font-weight: 400;
        color: var(--black-color);
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 0px !important;
        margin-bottom: -20px !important;
        height: auto !important;
        width: 150px !important;
    }
    .region-title::after {
        content: "▼";
        font-size: 12px;
        margin-left: auto;
    }
    /* Submenu Cities */
    .region-title:hover {
        color: var(--primary-color);
    }
    .submenu-column-custom .has-submenu-wrapper {
        display: flex;
    }
    .has-submenu-wrapper {
        display: flex;
        flex-direction: column;
    }
    .has-submenu {
        padding: 8px 0;
        font-weight: 500;
        color: var(--black-color);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .submenu {
        display: none;
        flex-direction: column;
        padding-left: 15px;
        margin-top: 5px;
    }
    .submenu.submenu-active {
        display: flex;
    }
    .submenu a {
        font-size: 15px;
        padding: 4px 0;
        text-decoration: none;
        color: var(--black-color);
    }
    .submenu a:hover {
        color: var(--primary-color);
    }
    .submenu-column-custom {
        display: none;
    }
    .submenu-column-custom.show {
        display: flex;
    }
    .submenu-column-custom a {
        font-size: 15px;
        color: var(--black-color);
        text-decoration: none;
        padding: 0px;
        border-radius: 4px;
        font-weight: 100;
        line-height: 1.8;
    }
    .submenu-column-custom a:hover {
        color: var(--primary-color);
    }
    .nav-container {
        position: sticky;
        top: 0;
        z-index: 999;
        background-color: white;
        margin: 0 auto;
        padding: 0 10px;
    }
    .navbarCustom-brand img {
        width: 140px;
        height: 35px; 
    }
 

    .nav-item-custom {
        align-items: flex-start;
        height: auto;
        display: flex;
        padding-top: 0px;
        flex-direction: column;
    }
}