main {
    padding: 40px 0;
}

.slide-sec {
    display: flex;
    align-items: center;
    justify-content: center;
}


.slider-container {
    position: relative;
    width: 80%;
    height: 600px;
    margin-bottom: 35px;
    overflow: hidden;

}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
}

.slider img {
    width: 100%;
    height: fit-content;
    border-radius: 5%;
    height: auto;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 50px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}





.section-1 {

    margin-inline: 60px;
    display: flex;
    justify-content: space-between;


}

.section-1 img {
    width: 250px;
    border-radius: 5%;
}

.section-1 h3 {
    text-align: center;
    padding: 5px;
}

.section-1 div {

    border-radius: 5%;
    padding: 5px;
    border: 1px solid #ffcc00;
    color: black;
    background-color: rgb(192, 214, 228);
    box-shadow: 10px 10px 15px rgba(158, 170, 178);

}

.section-1 div:hover {
    border: 1px solid #ffcc00;
    color: rgba(255, 69, 0);
    background-color: rgb(107, 168, 199);
    box-shadow: 10px 10px 15px rgb(121, 155, 179);
    cursor: pointer;
    pointer-events: auto;
    transition: width 2s ease-in-out, background-color 1s linear;
    transition: 0.6s;
    transform-style: preserve-3d;
}

.section-0 {
    font-family: sans-serif;
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
}

#bd {
    color: #ffcc00;
}

.bdmap {
    width: 500px;
    margin-left: 150px;
}

#wc {
    color: orangered;
}

.go-gallery {
    text-decoration: none;
}


#hero {
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

#hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 40px;
}


footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.featured-section img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.section-2 {
    margin: 80px;
}

.rating {
    display: inline-block;
    font-size: 0;
    /* Remove whitespace between inline-block elements */
}

.rating input {
    display: none;
}

.rating label {
    font-size: 40px;
    color: #ccc;
    cursor: pointer;
}

.rating input:checked~label,
.rating label:hover~label {
    color: #ffcc00;
}