
    /* ---------- Base Styles ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;

    }

    body {
      background-color: #fff6f8;
      color: #2b2b2b;
    }

    /* ---------- Navbar Container ---------- */
    .nav-header-section{
      margin-top: 40px;
    }
    .navbar {
      background: #fff6f8;
      border: 1px solid #f3d9e2;
      border-radius: 40px;
      padding:12px;
      margin-bottom: 14px;
      /* margin: 15px auto; */
      /* max-width: 1000px; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* box-shadow: 0 1px 4px rgba(243, 21, 89, 0.1); */
    }

    /* ---------- Logo Section ---------- */
    .logo {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .logo img {
      width: 94px;
    }

    .logo span {
      font-size: 18px;
      font-weight: 500;
      color: #f31559;
    }

    /* ---------- Desktop Menu ---------- */
    .menu {
      position: relative;
      right: -52px;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .menu a {
      text-decoration: none;
      font-size: 17px;
    font-weight: 500;
    color: #75213e;
    }

    .menu a.active {
      font-weight: 600;
      color: black;
    }

    .plus {
      color: #e50050;
      font-size: 22px;
      font-weight: 400;
      margin: 0 4px;
    }

    /* ---------- CTA Button ---------- */
    .cta-btn {
      text-decoration: none;
      background: #e50050;
      color: white;
      border: none;
      border-radius: 30px;
      padding: 19px 25px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s;
      display: flex;
      gap: 8px;
      letter-spacing: 0.5px;
    }

    .cta-btn:hover {
      background: #d8144f;
    }

    /* ---------- Mobile Menu Icon ---------- */
    .menu-icon {
      display: none;
      background: #f31559;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      color: white;
      font-size: 20px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    /* ---------- Sidebar (Mobile Menu) ---------- */
    .sidebar {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background: rgba(229, 0, 80, 0.958);
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 50px;
      transition: 0.4s ease-in-out;
      z-index: 99;
      padding: 30px;
    }

    .sidebar.active {
      right: 0;
    }

    .sidebar a {
      color: white;
      font-size: 18px;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s;
    }

    .sidebar a:hover {
      text-decoration: underline;
    }

    .sidebar .cta-btn {
      background: white;
      color: #f31559;
      margin-top: 20px;
    }

    .close-btn {
      display: flex;
      justify-content: center;
      position: absolute;
      top: 20px;
      right: 20px;
      background: white;
      color: #f31559;
      border: none;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      font-size: 18px;
      cursor: pointer;
    }

    /* ---------- Profile Dropdown ---------- */
    .profile-dropdown-container {
      position: relative;
      display: inline-block;
      margin-left: 5px;
    }

    .profile-icon-btn {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .profile-icon-btn img {
      transition: transform 0.2s ease;
    }

    .profile-icon-btn:hover img {
      transform: scale(1.1);
    }

    .profile-dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      background: white;
      border: 1px solid #f3d9e2;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      min-width: 160px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.2s ease;
      z-index: 1000;
      overflow: hidden;
    }

    .profile-dropdown-menu.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-item {
      display: block;
      padding: 12px 20px;
      color: #75213e;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: background-color 0.2s ease;
      border: none;
      width: 100%;
      text-align: left;
      background: none;
      cursor: pointer;
    }

    .dropdown-item:hover {
      background-color: #fff6f8;
      color: #e50050;
    }

    .dropdown-item.logout-item {
      border-top: 1px solid #f3d9e2;
    }

    .dropdown-item span {
      display: block;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 768px) {
      .menu, .cta-btn {
        display: none;
      }

      .menu-icon {
        display: flex;
      }
      .logo img {
        /* height: 36px; */
        width: 60px;
      }
      .mobile-sidebar-button{
        position: relative;
        top: 60px;
        background-color: white;
        padding: 15px 20px;
        border-radius: 56px;
        color: #e50050!important;
        font-size: 12px!important;
        font-weight: 500!important;
        text-decoration: none!important;
        transition: 0.3s!important;
        border: none;
        display: flex;
        gap: 7px;
      }
      .nav-header-section{
        margin-top: 15px;
      }
      .search-outer-layout .search-outer-box{
        padding: 25px 25px 1px 25px;
      }
      .search-outer-layout .search-outer-title{
        line-height: 30px;
        font-size: 23px;
      }
      .search-outer-layout .search-outer-subtitle{
        color: rgb(255 255 255);
        width: initial;
        font-size: 18px;
        line-height: 16px;
      }

    }
