header {
  padding: 1.25rem 0 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
}

header .navbar {
  display: none;
}

.main-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  margin: 0 1.875rem 0 1rem;
}

.mobile-menu-btn img {
  width: 24px;
  height: 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 36px;
}

.mobile-menu {
  display: none;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 19.18px;
  z-index: 10;
}
.mobile-menu.show {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 5.375rem 0 0 1.0625rem;
}

.mobile-menu ul li {
  margin: 3.125rem 0;
}

.mobile-link {
  text-decoration: none;
  color: var(--body-text-color);
  font-weight: bold;
}

.close-button {
  float: right;
  width: 24px;
  height: 24px;
  margin: 2.0625rem 1rem 0 0;
}

.close-button:hover,
.close-button:focus {
  cursor: pointer;
}

/*------------------------------------responsive design for large screens---------------------------------------------*/

/* Desktop screen */
@media (min-width: 1024px) {
  header {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 6.3125rem 1.25rem 6.3125rem;
    
  }

  .main-header {
    justify-content: space-between;
    width: 100%;
  }

  .logo img {
    width: auto;
    height: 44px;
  }

  .mobile-menu-btn {
    display: none;
  }

  header .navbar {
    display: flex;
    flex-direction: row;
  }
  header .navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
  }

  .desktop-navbar-link {
    text-decoration: none;
    color: var(--body-text-color);
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 1rem;
    line-height: 19.18px;
    margin-left: 3.75rem;
  }
}
/*-----------------------------------------------------------------for very large desktop-----------------------------------------------*/

@media (min-width:1260px){
header{
  padding: 1.25rem 10.3125rem 1.25rem 10.3125rem;

}
}

/*------------------------------------responsive design for medium screens---------------------------------------------*/

/*-----------------------------Tablets and medium devices------------------------------------------------------------*/
@media (min-width: 648px) and (max-width: 1023px) {
  header {
    padding: 2rem 2rem;
  }

  .main-header {
    justify-content: space-between;
    width: 100%;
  }

  .mobile-menu-btn {
    display: none;
  }

  .logo img {
    width: auto;
    height: 42px;
  }

  header .navbar {
    display: flex;
  }

  header .navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
  }

  .desktop-navbar-link {
    text-decoration: none;
    color: var(--body-text-color);
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 1rem;
    line-height: 19.18px;
    margin-left: 1.5rem;
  }
}

/* Premium Link Styling - Reusable */
.premium-link {
  color: white !important;
  background: linear-gradient(135deg, #D90166, #764ba2) !important;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(217, 1, 102, 0.3);
  transform: translateY(-1px);
}

.premium-link:hover {
  background: linear-gradient(135deg, #d34286, #ad4a78) !important;
  color: white !important;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(217, 1, 102, 0.15);
}

/* Desktop version with left margin */
.premium-link.desktop {
  margin-top: 0;
  margin-left: 35px;
}

/* Mobile version without margin */
.premium-link.mobile {
  margin-left: 0 !important;
}