/* ////////////////////// */
/* //////// Header ///// */
/* //////////////////// */

.div-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header-main-container {
  display: flex;
  align-items: center;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Top Bar Styles */
.top-bar {
  background-image: linear-gradient(136deg, #ff6701 0%, #ffab03 100%);
  color: #fff;
  padding: 10px 0;
}

.top-bar .div-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-info-main-container {
  /* flex-grow: 1; */
}

.icons-info-container {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons .social-icons-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.appointment-info {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  font-weight: bold;
  flex: 0 1 auto;
}

.appointment-info span {
  font-family: "Jost", Sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.appointment-info a {
  font-family: "Jost", Sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}

.appointment-info a:hover {
  color: #f0f0f0;
}

.sanskrit-badge-btn-container {
  max-width: 655px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.sanskrit-text {
  font-family: "Jost", Sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-align: center;
}

.badge-btn-container {
  display: flex;
  align-items: center;
  gap: 28px;
}

.trusted-badge {
  display: flex;
  align-items: center;
  gap: 5px;

  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
}

.trusted-badge span {
  fill: #ffd700;
  color: #ffd700;
  border-color: #ffd700;
  font-size: 24px;
}

.trusted-badge span svg {
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}

.booking-btn .btn {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.booking-btn .btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Main Navigation Styles */
.main-nav {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.main-nav .div-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 22%;
  flex: 0 0 auto;
}

.logo-img {
  /* max-height: 80px; */
  width: 100%;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-icon span,
.menu-icon span::before,
.menu-icon span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}

.menu-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon span::before {
  content: "";
  top: -8px;
}

.menu-icon span::after {
  content: "";
  bottom: -8px;
}

.nav-menu .nav-menu-list {
  display: flex;
  gap: 20px;
}

.nav-menu .nav-menu-list-link {
  font-family: "Jost", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  word-spacing: 1px;
  color: #1b1b1b;
  padding: 0px 0px 0px 0px;
}

.nav-menu .nav-menu-list-link.active,
.nav-menu .nav-menu-list-link:hover {
  color: #ff5500;
}

.nav-menu .nav-menu-list-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff5500;
  transition: width 0.3s ease;
}

.nav-menu .nav-menu-list-link.active::after,
.nav-menu .nav-menu-list-link:hover::after {
  width: 100%;
}

.has-dropdown {
  position: relative;
}

.has-dropdown .fa-chevron-down {
  font-size: 12px;
  margin-left: 5px;
}

.services-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  border-style: none;
  border-radius: 0px 0px 0px 0px;
  min-width: 220px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 400px;
  overflow-y: scroll;
  border-top: 1px solid #dadada;
  border-left: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  border-right: 1px solid #dadada;
  background-color: #f4f4f4;
  display: none;
  z-index: 999;
}

.services-dropdown li a {
  display: block;
  font-family: "Jost", Sans-serif;
  font-size: 16px;
  padding: 15px 15px 15px 15px;
  color: #000000;
  border-style: none;
  transition: all 0.3s;
}

.services-dropdown li a:hover {
  background-image: linear-gradient(
    136deg,
    #ff6701e8 0%,
    #ffab03eb 100%
  ) !important;
  color: #fff !important;
}

.services-dropdown li:last-child {
  border-bottom: none;
}

.has-dropdown:hover .services-dropdown {
  display: block;
}

/* Bottom Strip Styles */
.bottom-strip {
  background-image: linear-gradient(136deg, #ffab03 0%, #ff6701 100%);
  color: #fff;
  padding: 10px 0 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .top-bar .div-container {
    flex-direction: column;
    gap: 10px;
  }

  .social-icons,
  .appointment-info,
  .sanskrit-text,
  .trusted-badge,
  .book-btn {
    margin: 5px 0;
  }

  .nav-menu ul {
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .icon-info-main-container {
    width: 40.759%;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 100;
  }

  .menu-toggle:checked ~ .nav-menu {
    max-height: 500px;
  }

  .nav-menu .nav-menu-list {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .nav-menu .nav-menu-list li {
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu .nav-menu-list li:last-child {
    border-bottom: none;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: 20px;
  }

  .has-dropdown:hover .dropdown {
    display: none;
  }

  .menu-toggle:checked ~ .nav-menu .has-dropdown:hover .dropdown {
    display: block;
  }

  .main-nav .div-container {
    position: relative;
  }

  .icons-info-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .sanskrit-text {
    font-size: 16px;
  }

  .logo-img {
    max-height: 60px;
  }

  .trusted-badge {
    flex-direction: column;
    text-align: center;
  }

  .booking-btn {
    text-align: center;
  }
}

/* STICKY HEADER */
/* Sticky Navigation Styles */
.main-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
  width: 100%;
  z-index: 888;
}

/* Add padding to the body when nav is sticky to prevent content jump */
body.has-sticky-nav {
  padding-top: 80px; /* Adjust this value based on your nav height */
}
