/* Navigation Container Elements
----------------------------------------*/
.nav-brand {
  position: absolute;
  left: 0;
  z-index: 1000;
}

.nav-brand img {
  height: 20px;
  max-width: 100px;
  max-height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}
.navbar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  flex-direction: row-reverse;
}
/* Hamburger Menu
----------------------------------------*/
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
  left: 0;
}

.hamburger.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1000;
  color: #fff;
}

.hamburger.active span {
  background: #fff;
}

/* Navigation Menu
----------------------------------------*/
.nav-menu {
  position: absolute;
  display: flex;
  top: 37px;
  width: 20rem;
  height: 0;
  background: #000;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  transition: height 0.5s ease;
  overflow: hidden;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  text-align: center;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.nav-menu-outer {
  gap: 0rem !important;
  text-align: left !important;
  margin: 0 0 10px 0;
}
.nav-menu-outer li {
  margin-bottom: 0px !important;
  
}
.nav-menu-outer > li {
  padding: 12px;
}
.nav-menu a {
  color: #fff;
  font-family: 'sst-light', sans-serif;
  font-size: 1.125rem;
}

/* Active States
----------------------------------------*/
.nav-menu.active {
  height: auto;
}

.nav-menu.active ul {
  transform: translateY(0);
}

.nav-menu.active ~ .nav-brand,
.nav-menu.active + .nav-brand {
  color: #fff;
}

.nav-menu.active ~ .user-button,
.nav-menu.active + .user-button {
  color: #fff;
}

/* User Interface Elements
----------------------------------------*/
.profile-icon img {
  max-width: 100px;
  max-height: 21px;
  width: auto;
  display: block;
  object-fit: contain;
}

.user-button {
  display: flex !important;
}

.user-button img {
  max-width: 100px;
  max-height: 21px;
  width: auto;
  display: block;
  object-fit: contain;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Back Button
----------------------------------------*/
.back-button {
  display: none !important;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
}

.back-button-user {
  display: none !important;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
}

/* Explore Submenu
----------------------------------------*/
.explore-submenu {
  transform: translateY(-20px);
  position: relative;
}

.explore-submenu li {
  margin: 0 !important;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  transition-delay: calc(0.1s * var(--i));
}

.explore-submenu.active li {
  opacity: 1;
  transform: translateY(0);
}

.explore-submenu a {
  color: #999999;
  padding: 0.5rem 1rem;
  display: block;
  font-size: 1rem;
  text-align: left;
}

.explore-submenu.closing {
  animation: slideOut 0.3s ease-in-out forwards;
}

@keyframes slideOut {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-100%);
  }
}

@media screen and (max-width:768px) {
  .nav-menu-outer, .explore-submenu a {
    text-align: center !important;
  }
  .navbar-container {
    flex-direction: row;
  }
  .user-button {
    right: 0rem !important;
}
}

/* Desktop Banner */
.carousel-slide .desktop-banner {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile Banner */
.carousel-slide .mobile-banner {
  width: 100%;
  height: auto;
  display: none;
}

@media screen and (max-width:768px) {
  .carousel-slide .desktop-banner {
      display: none;
  }

  .carousel-slide .mobile-banner {
      display: block;
  }
  .user-button {
    display: flex !important;
  }
}



/*Footer*/
.footer {
    background-color: #333333;
    color: white;
    padding: 20px 18px;
    text-align: center;
    position: relative;
    /*margin-top: 20px; Default Style Provided by designer:- Commented By Amit Singh on 21_04-2025 */
}

.footer-title {
  font-size: 0.6875rem;
  font-family: 'sst-roman', sans-serif;

}

.footer-content {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}

.footer-content p {
  margin: 5px 0;
  opacity: 0.9;
}

/* Optional: Add max-width to contain content */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.user-button {
  display: flex;
  gap: 16px;
}

.textLarger {
  font-size: 1.5rem;
}
.textNormal {
  font-size: 1rem;
}
.textSmaller {
  font-size: 0.875rem;
}
.font-bold {
  font-weight: bold;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 1 0 0%;
}

/* Column sizes */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Responsive columns */
@media (min-width: 576px) {
  .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Utility classes */
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}




/*Login Menu*/
.login-menu {
  position: absolute;
  display: flex;
  top: 37px;
  right: 0;
  width: 20rem;
  height: 0;
  background: #000;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  transition: height 0.5s ease;
  overflow: hidden;
}



.login-menu a {
  color: #fff;
  font-family: 'sst-light', sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
}
.login-menu .logged-in {
  display: none;
}
.login-menu .user-info {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
.login-menu .login-in {
  padding: 0.75rem 0 !important;
}
.login-menu .login-in-btn {
  background-color: #2d75c7;
  font-size: .9375rem;
  text-align: center;
  display: block;
  padding: .625rem 0;
  margin: 0 auto;
  border: .0625rem solid rgba(255, 255, 255, .4);
  border-radius: .0625rem;
}
.login-menu .login-in-btn:hover {
  background-color: #34568e !important;
}
.login-menu .login-in-btn a {
  color: #fff !important;
}
.login-menu .login-dropdown-item {
  padding: .75rem 0;
  transform: translateY(10px);
}
.login-menu .login-dropdown-content {
  padding: 15px 0;
}

.login-menu .account-icon {
  width: 17px;
  height: 17px;
  vertical-align: bottom;
  margin-right: 5px;
}
/*Hidden when logged in*/
.login-menu .wo-login {

}
/* Active States
----------------------------------------*/
.login-menu.active {
  height: auto;
}
.login-menu.active .login-dropdown-item {
  transform: translateY(0);
  -webkit-transition: height 0.5s ease, transform 0.5s ease;
  -moz-transition: height 0.5s ease, transform 0.5s ease;
  transition: height 0.5s ease, transform 0.5s ease;
}





