* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #fff;
}

/* slider code */


.slider {
    position: relative;
    top: 0;
    z-index: 1;
    max-width: 1000px; /* Set a max width for laptop screens */
    height: 40vh;
    margin: 1vh;
    overflow: hidden;
    border-radius: 8px; /* Rounded corners */
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 40vh;
    border-radius: 8px; /* Rounded corners for images */
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
/* slider end */


/* overview */

.overview1 h2 {
    font-size: 1.4rem;
    font-weight: 600;
}
.overview1 p{
    margin: 1rem;
}

.overview1 ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
    margin: 0 2rem;
}

.overview1 li {
    margin: 10px 0; /* Add some space between list items */
}

.container {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
}

.header h1 {
    font-size: 1.5em;
    font-weight: 500;
    margin: 0;
}

.rating {
    font-size: 1.2em;
}

.rating-star {
    background-color: green;
    color: #fff;
    padding: .2rem;
    border-radius: 4px;
}

.claimed {
    color: black;
    font-weight: 500;
}

.claimed-tick {
    font-size: .9rem;
}

.claimed-tick img {
    position: relative;
    top: 2px;
    margin-right: .1rem;
}


.location-time {
    display: flex;
    position: relative;
    top: 3px;
    height: 3rem;
    padding: 2px;
    align-items: center;
}

.location {
    font-weight: 400;
    font-size: 1rem;
}

.location-mark img {
    position: relative;
    bottom: 2px;
}

.location,
.status,
.service {
    margin: 8px 10px;
    position: relative;
    top: 13px;
}

.buttons-reting-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.buttons .show-number {
    width: 8.5rem;
    height: 2rem;
    background-color: green;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
}

.show-number:hover {
    opacity: .8;
}

.buttons .whatsapp {
    width: 8.5rem;
    height: 2rem;
    background-color: none;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
}

.buttons .share {
    height: 2rem;
    width: 3rem;
    background-color: white;
    border-radius: 4px;
    padding: 3px;
}

.buttons .share img {
    height: 1.2rem;
}

.buttons .edit {
    height: 2rem;
    width: 3rem;
    background-color: white;
    border-radius: 4px;
    padding: 3px;
}

.buttons .edit img {
    height: 1.2rem;
}


.rating-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
}

.rating-section-star span {
    height: 20px;
    width: 20px;
    border: 1px solid black;
    padding: 8px;
    margin-right: 5px;
    border-radius: 10px;
}

.rating-section-star .star {
    font-size: 1.9rem;
}

.rating-section-star .star:hover {
    background-color: #ff6e00;
    border: none;
    color: #fff;
}


/* Navbar section */
.nav-section {
    background: white;
    padding: 7px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-section {
    display: flex;
    flex-wrap: wrap;
    width: 40vw;
    gap: 30px;
    margin: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.navbar-section a {
    text-decoration: none;
    color: black;
}

.navbar-section a:hover {
    color: #0076d7;
    border-bottom: 4px solid #0076d7;
}
#photos h1{
    font-size: 1.4rem;
    font-weight: 600;
}

.nav-section-photo{
    margin: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.photo1{
    height: 30vh;
    width: 18vw;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.photo1 img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: all ease 1s;
    flex-wrap: wrap;
}

.photo1 img:hover{
    transform: scale(1.2);
    overflow: hidden;
}

.upload-photo-button{
    color: #fff;
    background-color: #0076D7;
    border: none;
    padding: 10px;
    border-radius: 5px;
    margin: 1rem;
    font-size: 1rem;
}

/* review section */
.reviews-section {
    width: 90vw;
    text-align: left; /* Align text to the left */
}

.reviews-section h1 {
    font-size: 1.4rem;
    font-weight: 600;;
}

.review-section {
    margin: 1rem;
    border-bottom: 1px solid #e0e0e0; /* Add a bottom border for separation */
    padding: 10px 0; /* Add padding for spacing */
}

.review-section:last-child {
    border-bottom: none; /* Remove border for the last review */
}

.review-section p {
    margin: 5px 0; /* Add some margin for spacing */
}

.review-stars {
    color: #FFD700; /* Gold color for stars */
}

.star {
    font-size: 20px; /* Size of the stars */
}

.star.filled {
    color: #FFD700; /* Gold color for filled stars */
}

.star {
    color: #e0e0e0; /* Gray color for empty stars */
}

/* Responsive */
@media (max-width: 780px){
    .location-time{
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        align-items:flex-start;
        height: auto;
    }

    .buttons-reting-section .buttons{
        display: flex;
        flex-direction: column;
    }

    .buttons-reting-section .buttons .edit-share .edit{
        /* display: flex; */
        margin-left: 1.2rem;
    }
    .navbar-section{
        gap: 30px;
        width: 100%;
        font-weight: 600;
    }

    .nav-section{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    
    .nav-section-photo .photo1{
        width: 80vw;
        height: 40vw;
    }
}
.fade:not(.show) {
    opacity: 1;
}