.inner-banner1 {
  position: relative;
  width: 100%;
  height: 430px; /* Set a fixed height for desktop view */
  overflow: hidden; /* Ensure the banner does not overflow */
}

.responsive-image {
  width: 100%;
  height: 100%; /* Ensure the image covers the entire banner area */
  object-fit: cover; /* Ensure the image covers the area without distortion */
  display: block;
}

.inner-title {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
  width: 90%;
  box-sizing: border-box;
}

.headingkk {
  font-size: 34px;
  font-weight: bold;
  margin: 0;
}

.responsive-text {
  font-size: 2.175rem;
}

@media (max-width: 576px) {
  .inner-banner1 {
    height: 300px; /* Adjust the height for mobile view */
  }
  .inner-title {
    background: rgba(0, 0, 0, 0.2);
    padding: 1px;
    width: 100%;
  }
  .headingkk {
    font-size: 24px;
    padding: 2px;
  }
  .responsive-text {
    font-size: 1.875rem;
  }
}
/* Basic slider styling */
.slider {
    margin: 20px auto;
    width: 90%;
    position: relative;
}

.slider .classified-item {
    margin: 10px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.slider .classified-item:hover {
    transform: scale(1.05);
}

.slider .classified-item img {
    width: 100%;
    height: 300px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image covers the entire area */
}

.slider .classified-item .content {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slider .classified-item h3 {
    font-size: 18px;
    margin: 0;
    color: #fff;
}

.slider .classified-item p {
    font-size: 14px;
    margin: 5px 0 0;
    color: #fff;
}

.slider .classified-item .place-rating {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    align-items: center;
}

.slider .classified-item .place-rating li {
    margin-right: 5px;
    color: #FFD700; /* Gold star color */
}

.slider .classified-item .place-rating .rating-value {
    color: #fff;
}

.slick-prev, .slick-next {
    background-color: #007bff;
    border-radius: 50%;
    color: white;
    height: 40px;
    width: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: absolute;
    top: calc(50% - 20px); /* Position at the center vertically */
    transform: translateY(-50%);
}

.slick-prev:hover, .slick-next:hover {
    background-color: #0056b3;
}

.slick-prev {
    left: -50px; /* Adjust positioning */
}

.slick-next {
    right: -50px; /* Adjust positioning */
}

.social-icons {
       text-align: center;
        margin-top: 10px;
    }
    .social-icon {
        font-size: 26px; /* Increase icon size */
        color: gold;
        padding: 5px;
    }
    .social-icon:hover {
        color: #007bff;
    }

 .rating {
    margin-top: 10px;
    font-size: 14px;
}

.rating i {
    color: gold; /* Color for star icons */
    font-size: 16px; /* Adjust size of star icons */
    margin-right: 2px;
}
        .classified-item {
            position: relative;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .classified-item:hover {
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .classified-item img {
            width: 100%;
            height: auto;
        }

        .content {
            padding: 10px;
            background: white;
            text-align: center;
        }

        .slick-prev, .slick-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 18px;
            z-index: 10;
            cursor: pointer;
        }

        .slick-prev {
            left: -25px;
        }

        .slick-next {
            right: -25px;
        }

        .slick-dots {
            bottom: -25px;
        }

/* Media query for responsive design */
@media (max-width: 768px) {
    .slider .classified-item {
        margin: 5px;
    }
    .slick-prev, .slick-next {
        height: 30px;
        width: 30px;
        top: calc(50% - 15px);
    }
}
