.elementor-128 .elementor-element.elementor-element-b0c263e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-b0c263e.e-con{--align-self:center;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-6a5a6ac */.mainclass.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: background 0.3s ease;
  padding: 0.5rem 0;
}

/* On Scroll */
.mainclass.header.scrolled {
  background: linear-gradient(to right, #f9f9f9, #1A3D8F);
}

/*active links*/
.mainclass.nav-link {
  position: relative;
  text-decoration: none;
}

.mainclass.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #000; /* Change to your brand color */
  transition: width 0.3s ease;
}

.mainclass.nav-link.active::after {
  width: 100%;
}

.mainclass-book-btn:hover{
    background-color:rgb(64, 84, 178);
    color:white;
}

/* Container */
.mainclass.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

/* Logo */
.mainclass.logo img {
  height: 50px;
}
@media(max-width:768px){
    
    .mainclass.logo img {
  height: 38px;
}
}

/* Nav */
.mainclass.nav {
  display: flex;
}

.mainclass.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

/* Menu Links */
.mainclass.nav-link {
  color: black;
  font-weight: 500;
  transition: color 0.3s;
}

.mainclass.nav-link:hover {
  color: #f9a825;
}

.header.scrolled .nav-link,
.header.scrolled .mainclass-book-btn {
  color:white;
}


.mainclass.header.scrolled .mainclass.nav-link:hover {
  color: #ffc627;
}

a {
  text-decoration: none;
}

/* Book Button */
.mainclass-book-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 2px solid #0050c8;
  background: transparent;
  color: black;
  font-weight: 500;
  transition: 0.3s;
}

.mainclass.book-btn:hover {
  background: #2440C5;
  color: white;
}

.mainclass.header.scrolled .mainclass.book-btn {
  color: white;
  border-color: #f9a825;
}

.mainclass.header.scrolled .mainclass.book-btn:hover {
  background: white;
  color: #1a1a1a;
}

/* Hamburger */
.mainclass.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mainclass.hamburger span {
  width: 24px;
  height: 3px;
  background: black;
  transition: background 0.3s;
}

.mainclass.header.scrolled .mainclass.hamburger span {
  background: #ffc627;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.mainclass.nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 78%;
    /* background: rgba(30, 30, 30, 0.4); */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    max-height: 0; /* Initially collapsed */
    overflow: hidden;
    transition: max-height 0.4s ease, background-color 0.4s ease; /* Smooth background-color transition */
    flex-direction: column;
    background-color: transparent; /* Initially transparent to avoid yellow line */
    opacity:0;
}

.mainclass.nav.active {
    max-height: 512px; /* Adjust based on your content height */
    background-color: #ffc627;
    opacity:1;/* Apply yellow background when active */
}


  .mainclass.nav-list {
    flex-direction: column;
   gap:1.5rem;
    padding: 2.5rem 0;
  }

  .mainclass.nav-link,
  .mainclass.book-btn {
    color: black;
  }

  .mainclass.hamburger {
    display: flex;
  }
  .mainclass.nav-link:hover {
     color: black; 
}
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 0.5rem;
        margin: 0 2rem;
        transition: var(--transition);
        color: white;
    }
}/* End custom CSS */