.heroaboutus{
    background-image: url("../images/about.jpg");
    height: 90vh;
    width:100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.styleicon {
    background-color: #252525;
    color: white;
    font-size: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex; /* Enables flexbox */
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
    margin: 5px; /* Adds space between icons */
    transition: 0.3s ease-in-out; /* Smooth hover effect */
    cursor: pointer;
}



/* Hover Effect - Change color on hover */
.styleicon:hover {
    background-color: #d49b6f; /* Gold-like hover color */
    color: black;
    
}

/* Align all icons in a row */
.align {
    display: flex;
    gap: 10px; 
    justify-content: center; 
}
.boxshadow{
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 10px;
}
.boxshadow:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border-radius: 10px;
}
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------contact us page */
.heroacontact{
    background-image: url("../images/contact.jpg");
    height: 90vh;
    width:100%;
    background-repeat: no-repeat;
    background-size: cover;
}


.map-wrapper {
    position: relative;
    width: 400px; /* Adjust based on your requirement */
    height: 500px;
    margin: auto;
}

.orange-box {
    position: absolute;
    top: 90px;  /* Adjusted to match image */
    left: 90px;
    width: 100%;
    height: 90%;
    background-color: #f58242; /* Orange background */
    z-index: 1;
}

.map-container {
    position: relative;
    z-index: 2;
    background: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: 450px; /* Adjust height */
    border: none;
}

/* ================================================================================================================================================faqs page */
.heroafaqs{
    background-image: url("../images/faq.jpg");
    height: 90vh;
    width:100%;
    background-repeat: no-repeat;
    background-size: cover;
}



.accordion {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    
    padding: 10px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-top: 3%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.accordion-title {
    background: #fff;
    padding: 35px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.accordion-title.active {
    color: #f58242;
}

.accordion-title i {
    color: #f58242;
    transition: transform 0.3s ease;
}

.accordion-content {
    display: none;
    padding: 15px;
    font-size: 18px;
    color: #555;
    background: #fff;
    border-top: 1px solid #ddd;
}

.accordion-title.active i {
    transform: rotate(180deg);
}
/* ===================================================================================================================================gallery */

.heroagallry{
   
        background-image: url("../images/gallery.jpg");
        height: 90vh;
        width:100%;
        background-repeat: no-repeat;
        background-size: cover;
  
    
}


.slideshow-container {
    width: 100%;
  
    overflow: hidden;
    position: relative;
}


.slides {
    display: flex;
    transition: transform 1s ease-in-out;
   
}


.slide {
    min-width: 50%;
    position: relative;
}


.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    margin: 2%;
}
/* ..............slideshow2....... */
.slideshow-container2 {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.slides2 {
    display: flex;
    gap: 10px; /* Space between images */
    animation: marquee 15s linear infinite;
}
.slide2 {
    flex: 0 0 auto;
}
.slide2 img {
    height: auto;
    width: 250px; /* Adjust width as needed */
    object-fit: cover;
}

/* Marquee animation for continuous scrolling */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* =============================================================================================================--------------------------------------------------------------blog page */
.heroblog{
    background-image: url("../images/blog.jpg");
    height: 90vh;
    width:100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.boxshadowblog{
    box-shadow: #f581426b 0px 2px 8px 0px;
    padding:4% !important;
  border-radius: 10px;
}
.backgroundcolor{
    background-color: #f581426b;
    
}
.zero{
    padding: 0;
    margin: 0;;
}

/* -------------------------------------------------------------------------------------------single room page */
.container2 {
    display: flex;
    gap: 20px;
    align-items: start;
 
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.image-section {
    flex: 1;
}
.main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}
.thumbnails img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.thumbnails img:hover {
    transform: scale(1.1);
}
.arrow {
    cursor: pointer;
    font-size: 20px;
    color: #ff914d;
    transition: 0.3s;
}
.arrow:hover {
    color: #ff6200;
}
.details {
    flex: 1;
}
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.stars {
    color: #ffcc00;
    font-size: 16px;
}
.reviews {
    font-size: 14px;
    color: gray;
}
.price {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
}
.book-now {
    background: #ff914d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}
.book-now:hover {
    background: #ff6200;
}
.back-link {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
}
.back-link a {
    text-decoration: none;
    color: #ff6200;
    font-weight: bold;
}
/* ----------------------------------------------------------------------------------------------------------packages  pages*/
.heroapackges{
    background-image: url("../images/packghes.jpg");
    height: 90vh;
    width:100%;
    background-repeat: no-repeat;
    background-size: cover;
}


.end{
    display: flex;
    justify-content: end;
    align-items: end;
    flex-direction: column;
}

.heroaccomodation{
    background-image: url("../images/accomodatrion.jpg");
    height: 90vh;
    width:100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.herodateseelction {
    position: relative;
    background-image: url("../images/group-business-people-having-meeting_53876-14819.png");
    height: 50vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Ensure text is visible */
    text-align: center;
}

.herodateseelction::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.644); /* Adjust opacity as needed */
    z-index: 1;
}

.herodateseelction * {
    position: relative;
    z-index: 2; /* Ensure content appears above the overlay */
}


.herodateblog {
    position: relative;
    background-image: url("../images/surfer-blue-wave_72229-1375_1.jpg");
    height: 50vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Ensure text is visible */
    text-align: center;
}

.herodateblog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.644); /* Adjust opacity as needed */
    z-index: 1;
}

.herodateblog * {
    position: relative;
    z-index: 2; /* Ensure content appears above the overlay */
}
.end{
    display: flex;
    justify-content: end;
    align-items: end;
    flex-direction: column;
}