
    h4 {
        color: #bce6f0;
    }

    h2 {
        margin-bottom: -1.5rem;
        color: #2d3b3e;
        text-align: center;
    }

    .search-bar {
        border-radius: 20px;
        width: 300px;
        border: 1px solid rgb(215, 230, 238);
        box-shadow: 0px 4px 10px rgba(177, 219, 237, 0.1);
        padding: 6px 15px;
        margin-left: auto;

    }

    .top-rated {
        background: #c3a574;
        padding: 6px 12px;
        border-radius: 20px;
        color: white;
        font-weight: bold;
    }

    .middle-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .salon-container {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 10px 0;
        scroll-behavior: smooth;
    }

    .salon-card {
        position: relative;
        min-width: 25%;
        min-height: 30%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
        background: white;
    }

    .salon-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
    }

    .salon-info {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        text-align: center;
        padding: 5px;
        font-size: 14px;
    }

    .services-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
        height: 120px;
        padding: 10px;
    }

    .services-card img {
        width: 80px;
        height: 100%;
        border-radius: 15px;
        object-fit: cover;
    }

    .service-text {
        flex: 1;
    }

    .service-text p {
        margin: 2px 0;
    }

    .price {
        color: #156779;
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .search-container {
            flex-direction: column;
            align-items: flex-start;
        }

        @media (min-width: 1024px) {
            .page-content {
                min-height: calc(100vh - 80px);
                /* Push content below header */
            }
        }

        .search-bar {
            width: 100%;
            margin-top: 10px;
        }

        .salon-container {
            gap: 10px;
        }

        .salon-card {
            min-width: 160px;
        }

        .services-card {
            display: flex;
            flex-direction: row; /* Display items side by side */
            align-items: center;
            text-align: left;
            gap: 15px;
            height: auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
            padding: 10px;
        }

        .services-card img {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            object-fit: cover;
        }

    }

    .full-bg {
      position: relative;
      /* background-image: url('https://mdbcdn.b-cdn.net/img/new/slides/041.webp'); */
      background-image: url('/asset/image/salon1.jpg');
      background-size: cover;
      background-position: center;
      height: 600px;
      margin-top: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .overlay {
      background-color: rgba(0, 0, 0, 0.6);
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }
    .centered-heading {
      position: relative;
      font-size: 3rem;
      color: white;
      font-weight: bold;
      text-align: center;
      z-index: 1;
    }