/* =================== Promo bannner =================== */
.promo-banner {
  
  background-color: var(--primary-color);
    overflow: hidden;
    position: relative;
    height: 40px;
    min-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 {
    /* margin: 0 100px; */
    width: 100%;
    margin: 0 auto;
    min-height: 100px;
}

.navbarCustom {
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbarCustom-height);
    position: relative;
    z-index: 1000;
     /* min-height: 80px; */
      height: var(--navbarCustom-height);
  min-height: var(--navbarCustom-height);
     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
}

.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;
    /* transition: color 0.3s ease; */
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    /* transition: width 0.3s ease; */
}

.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-mobile {
    display: none;
}

.navbarCustom-item {
    display: flex;
    align-items: center;
    gap: 4px;
    /* margin-top: 6px; */
}

.icon img {
    /* width: var(--icon-size-xlarge); */
    height: var(--icon-size-xlarge);
    /* margin-top: 5px; */
}

.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;
    /* margin: 20px 10px 10px; */
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white-color);
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 97%;
    background: #fff;
    padding: 10px 20px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); */
    
  height: 0;
  /* transition: opacity 0.3s ease, height 0.3s ease; */
    opacity: 0;
    visibility: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 30px;
    z-index: 999;
}

.nav-item-custom.dropdown-custom:hover .dropdown-menu-custom {
    display: grid;
    opacity: 1;
    visibility: visible;
  height: auto;
}

.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;
    /* height: 50px; */
    width: var(--logo-size-xlarge);
}


.submenu-column-custom {
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    /* gap: 5px; */
    width: 125px;
}

.submenu-column-custom a {
    display: block;
    color: var(--black-color);
    font-size: var(--font-size-default);
    line-height: 1.4;
    /* Ensures space between lines */
    font-weight: 400;
    padding: 6px 0;
    text-decoration: none;
    /* transition: color 0.3s; */
}

.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;
}
.submenu {
  display: none;
}

.submenu.submenu-active {
  display: block;
}

@media (max-width:1080px) {
.navbarCustom-brand img {
    width: 200px
}
.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: space-evenly;
        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: 35px;
        height: 3px;
        color: var(--white-color);
        /* background: var(--black-color); */
        border-radius: 3px;
        /* transition: all 0.4s ease; */
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 7px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    .navbarCustom-item-mobile {
        display: block;
    }

    .navbarCustom-item-mobile .icon a img {
        height: 34px;
    }

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

    .navbarCustom-nav.active {
        right: 0;
    }

    /* Nav Links */
    .nav-link-custom {
        font-size: 17px;
        padding: 12px 16px;
        color: var(--black-color);
        text-decoration: none;
        font-weight: 500;
        border-radius: 6px;
        /* transition: background 0.2s ease; */
    }

    .nav-link-custom:hover {
        background-color: #f5f5f5;
    }

    /* Contact Info Hidden in Mobile (Optional) */
    .navbarCustom-item {
        display: none;
    }

    /* Dropdown Menu */


    .dropdown-menu-custom {





        /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */

        margin-top: 5px;
        display: none !important;
        flex-direction: column;
        background: var(--white-color);
        padding: 10px 15px;
        border-radius: 8px;
        position: static !important;
        /* 🟢 THIS IS THE KEY */
        width: 100%;
        z-index: 1002;
    }

    .dropdown-menu-custom.submenu-active {
        display: flex !important;
    }

    /* 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;
        /* transition: transform 0.3s ease; */
    }

    /* 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);
  /* transition: color 0.3s ease; */
}

.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;
        /* transition: background 0.2s; */
    }

    .submenu-column-custom a:hover {
        /* background-color: #f2f2f2; */
        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;
    }

    /* Optional: backdrop blur */
    .navbarCustom-nav.active {
        backdrop-filter: blur(10px);
    }

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


}