.ul-group{
    list-style: none!important;
}
.ul-group>li>a{
    color:#fff;
    text-decoration-line: none;
}

.thumbnail .text h2{
    margin-bottom: 1.1vw!important;
}

.navbar-new-header {
    /* position: fixed;
    top:0; */
    background-color: #c1a164;
    width: 100%;
    z-index: 99999;
}

.god-img {
    margin-left: 5px;
    width:100%;
    max-width: 100px;
    border-radius: 50%;
    border: solid 0.15vw rgb(36, 84, 218);
    cursor: pointer;
    animation: border-color-animation 3s infinite;
    float: left;
}

@keyframes border-color-animation {
    0% {
      border-color: rgb(36, 84, 218);
    }
    33% {
      border-color: rgb(255, 0, 0);
    }
    66% {
      border-color: rgb(0, 255, 0);
    }
    100% {
      border-color: rgb(36, 84, 218);
    }
  }

  .header-text {
    /* white-space: nowrap; */
    margin-top: 1.3rem;
    font-size: 2.1vw;
    font-weight: bold;
  }

  .header-right-img {
    width:100%;
    max-width: 100px;
    float: right;
  }
  .row-flex-top-header {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: space-between;
    }




     /* Show submenu on hover */
    /* .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 0.1rem;
        margin-right: 0.1rem;
    } */

    /* Optional: arrow for submenu */
    /* .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.4em;
        vertical-align: 0.1em;
        transform: scale(0.7);
    } */


 /* Show dropdown and submenu on hover */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease;
    }

    /* Submenu (level 2) position */
    .dropdown-menu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }
}
ul.dropdown-menu{
    background: #c1a164!important;
    padding: 0;
}

/* Underline animation on nav-link and dropdown-item */
.nav-link,
.dropdown-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.nav-link::after,
.dropdown-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #c1a164;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.dropdown-item:hover::after {
    width: 100%;
    background-color: #0b0b0b;
}


nav.navbar.navbar-expand-lg.navbar-light.bg-light.shadow-sm {
    background: #c1a164 !important;
    border-top: 1px solid #efd097;
}
.navbar-light .navbar-nav .nav-link {
    color: rgb(0 0 0);
}

.slider{
    top:0!important;
}


#mainNavbar {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

#mainNavbar.fixed {
    position: fixed;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c1a16454; /* You can use any background */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #c1a164;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



@media (max-width: 768px) {
    .calendar-content{
        flex-direction: column!important;
    }
       
    .calendar{
        width: 100%!important;
        margin:0!important;
    }
    .days{
        gap: 2.5vw!important;
    }
    .upcoming-events li {
        margin-bottom: 5px!important;
        height: auto!important;
    }
    .Timing {
        overflow: scroll;
    }
}