* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}
.nav-container {
    width: 100%;
    background: white;
    color: black;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    z-index: 1000;
}
.nav-logo img {
    height: 57px;
    width: 165px;
}
.nav-menu {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}
.nav-items {
    display: flex;
    align-items: center;
}
.nav-item {
    margin: 5px 10px;
}
.nav-item a {
    color: black;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
}
.contact-us a {
      background: darkred;  
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
.contact-us a:hover {
    transform: scale(1.2);
}
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
}
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        height: 70px;
        padding: 0 10px;
    }
    .hamburger {
        display: block;
        order: 2;
        margin-right: 0px;
        color: black;
    }
    .nav-logo-container {
        order: 1;
        margin-right: auto;
    }
    .nav-logo img {
        margin-left: 0;
        height: 50px;
    }
    .contact-us {
        order: 3;
        margin-left: auto;
        white-space: nowrap; /* Prevents text from wrapping */
        padding: 5px 12px; /* Adjust padding */
        font-size: 12px; /* Reduce font size slightly */         
        flex-shrink: 0; /* Prevents the button from shrinking */      
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
        text-align: center;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-item {
        margin: 10px 0;
        color: white;
    }
}

 /* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */
/* body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}
.nav-container {
    width: 100%;
    background: white;
    color: black;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    z-index: 1000;
}
.nav-logo img {
    height: 57px;
    width: 165px;
}
.nav-menu {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}
.nav-items {
    display: flex;
    align-items: center;
}
.nav-item {
    margin: 5px 10px;
}
.nav-item a {
    color: black;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
}
.contact-us a {
    background: #ff9800;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
.contact-us a:hover {
    transform: scale(1.2);
}
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
}
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        height: 70px;
        padding: 0 10px;
    }
    .hamburger {
        display: block;
        order: 2;
        margin-right: 30px;
    }
    .nav-logo-container {
        order: 1;
        margin-right: auto;
    }
    .nav-logo img {
        margin-left: 0;
    } */
     /* .contact-us {
        order: 3;
        margin-left: auto;
         white-space: nowrap; 
        padding: 5px 12px; 
        font-size: 12px;        
        flex-shrink: 0;       
    } 
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: black;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
        text-align: center;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-item {
        margin: 10px 0;
    } */


 /* Image Slider */
 .image-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* Slider Container */
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slides */
.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Slider Images */
.slider-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Text Overlay */
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 10px;
    z-index: 3;
}

/* Title and Subtitle */
.title {
    font-size: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.subtitle {
    font-size: 50px;
    margin-top: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Call Now Button */
.slider-btn {
    background-color: #ffcc00;
    color: #000;
    font-size: 30px;
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    z-index: 4;
    position: relative;
}

.slider-btn:hover {
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.9);
}

@media (max-width: 768px) {
    .image-slider {
        height: 60vh;
    }
    .slider-image {
        height: 60vh;
    }
    .text-overlay {
        top: 40%;
        width: 90%;
    }
    .title {
        font-size: 20px;
    }
    .subtitle {
        font-size: 30px;
    }
    .slider-btn {
        font-size: 18px;
        padding: 8px 15px;
    }
}


/* Sub-navigation styling */
.sub-nav-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px 16px;
    background-color: white;
}

.sub-nav {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.sub-nav a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: bold;
}
.sub-nav a:hover {
    color: #d4a017; /* Adjust hover color if needed */
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .sub-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
        padding: 10px 0;
    }
    
    .sub-nav a {
        font-size: 14px;
        padding-bottom: 5px ;
       
    }

    .sub-nav-container {
        padding: 16px 10px;
        height: 190px;
    }
}

/* SECTION-3 */

.scrollable-section {
    position: absolute; /* Keep it positioned relative to the parent */
    bottom: 10; /* Stick to the bottom of the sub-nav */
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* Adjust width */
    height: 200px; /* Set a height to allow scrolling */
    overflow-y: auto; /* Enable vertical scrolling */
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: justify; /* Proper text alignment */
    line-height: 1.5; /* Improve readability */
    font-size: 16px; /* Adjust font size for better look */
}



/* Make sure the content inside is long enough to scroll */
.scrollable-section .sec3-content {
    height: auto;
    max-height: none; 
    overflow-y: auto;
}
.heading-1{
    font-size: 40px;
    font-family: 'parisian_icgregular';
    display: flex;
    justify-content: center;
    align-items: center;
    color: darkred;
}

.heading-2{ 
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: darkred;
}


@media (max-width: 768px) {
    .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        height: 70px;
        padding: 0 10px;
    }
    .scrollable-section {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 200px;
        overflow-y: auto;
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }
    .heading-1{
        font-size: 20px;
        font-family: Arial, Helvetica, sans-serif;
    }
    
.heading-2{ 
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.sec3-content{
    width: 100%;
    text-align: center;
    background-color: whitesmoke;
}
}


/* SECTION-4  */
 /* Section 4 Styling */
 .new-section-4 {
    width: 100vw;
    margin-top: 0px;
    padding: 0px;
    background-color: white;
    text-align: center;
    box-sizing: border-box;
    height: auto;
}

.sec4-text-content {
    margin-bottom: 40px;
    padding-top: 20px;
}
.sec4-text-content h2 {
    font-size: 35px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    justify-content: center;
    text-align: center;
}
.sec4-text-content p {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 10px;
}

.room-section-4 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
}
.room {
    background: white;
    color: black;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    padding: 5px;
    height: 480px;
}
.room img {
    width: 80%;
    height: 50%;
    border-radius: 5px;
}
.room h3 {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0;
    color: black;
}
.room p {
    font-size: 16.8px;
    color: #070707;
    line-height: 1.4;
    margin-bottom: 15px;
}
.sec4-button {
    margin-bottom: 10px;
    text-align: center;
    width: 200px;
    justify-content: center;
    margin-left: 60px;
}
.sec4-button a {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #ff9900;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}
.sec4-button a:hover {
    transform: scale(1.1);
    background-color: #e68a00;
}
.additional-info {
    margin-top: 15px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .room-section-4 {
        flex-direction: column;
        align-items: center;
    }
    .room {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .sec4-text-content{
        flex-direction: column;
        text-align: left;
        padding-left: 20px;
        padding-top: 20px;
    }
    .new-section-4 {
        margin-left: 0px;
    }
}

/* SECTION-5 */

.section-5 {
    background-color: #B5BDBC;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.sec5-content-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #B5BDBC;
    border-radius: 1px;
}
.sec5-image-box img {
    border-radius: 1px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 539px;
    height: 359.78px;
}
.section5-title {
    font-size: 39.9px;
    color: white;
    margin-bottom: 10px;
}
.sec5-text-box p {
    font-size: 16px;
    color: black;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .sec5-content-container {
        flex-direction: column;
        text-align: left;
    }
    .sec5-image-box img {
        width: 100%;
        height: auto;
    }
}

/* SECTION=6 */

.section-6 {
    width: 100%;
    padding: 50px 0;
    background-color: #f9f9f9;
}

.sec6-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* Desktop View */
.sec6-text-content {
    width: 50%;
}

.section6-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: darkred;
}

.sec6-text-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #0b0b0b;
}

.sec6-image-content {
    width: 50%;
}

.sec6-image-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Mobile View */
@media (max-width: 768px) {
    .sec6-content-wrapper {
        flex-direction: column;
        text-align: left;
        gap: 30px;
    }

    .sec6-text-content {
        width: 80%;
       
    }

    .sec6-image-content {
        width: 80%;
        order: 1; /* Ensure image is at the bottom */
    }

    .sec6-image-box img {
        border-radius: 5px;
    }
}

/* SECTION-7 */

.section-7 {
    height: 1744.16px;
    background-color: #f9f9f9;
    padding: 50px 0;
}

.section-7 .sec7-container {
    height: 1667.36px;
    width: 80%;
    margin: auto;
    text-align: center;
}

.section-7 h2 {
    font-size: 45px;
    height: 96px;
    margin-bottom: 20px;
    color: darkred;
}

.section-7 p {
    text-align: left;
    font-size: 18px;
    margin-bottom: 30px;
}

.sec7-image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 1280px;
    height: 400px;
}

.sec7-image-box {
    width: 400px;
    height: 400px;
    overflow: hidden;
}

.sec7-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION-7 room featurers */

#section-7 {
    width: 100%;
    
   
}

 /* .section7-features {
    width: 1270px; 
    height: 472.01px;
    margin-top: 20px;
    padding: 30px;
    background-color: #a5b1b7; 
    border-radius: 10px;
   
}

.section7-features p {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.6;
    color: #000;
    margin-bottom: 10px;
}

.section7-features p strong {
    font-weight: bold;
    color: #000; 
}  */

/* sector-7 virtual visit  */

.sec7-bottom {
    text-align: center;
    padding: 20px 0;
}

.sec7-bottom h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-top: 25px;
}

.sec7-virtual-visit {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
   
}

.sec7-virtual-visit figure {
    width: 1248px;
    height: 400px;
    overflow: hidden; /* Ensures no overflow issues */
}

.sec7-virtual-visit img {
    width: 1248px;
    height: 400px;
    object-fit: cover; /* Ensures the image maintains aspect ratio and covers the area */
}
/* Mobile View: Make section-7 responsive */
@media (max-width: 767px) {
    .section-7 {
        height: auto; /* Allow height to adjust dynamically */
        padding: 30px 0;
    }

    .section-7 .sec7-container {
        height: auto;
        width: 80%; /* Slightly more width for better spacing */
        flex-direction: column;
        text-align: left;
    }

    .section-7 h2 {
        font-size: 27px; /* Reduce font size for mobile */
        height: auto;
        justify-content: center;
        text-align: center;
    }

    .section-7 p {
        font-size: 16px;
    }

    /* Image Gallery: Stack images vertically */
    .sec7-image-gallery {
        flex-direction: column;
        width: 100%; /* Full width */
        height: auto;
        gap: 15px;
    }

    .sec7-image-box {
        width: 100%; /* Full width */
        height: auto;
    }

    .sec7-image-box img {
        width: 100%;
        height: auto;
    }

    /* Features Section */
    .section7-features {
        width: 100%; /* Reduce width to fit mobile screens */
        height: auto;
        padding: 20px;
        flex-direction: column;
        text-align: left;
    }

    /* Virtual Visit */
    .sec7-virtual-visit {
        flex-direction: column;
        
    }

    .sec7-virtual-visit figure {
        width: 100%;
        height: auto;
    }

    .sec7-virtual-visit img {
        width: 100%;
        height: auto;
    }
}

/* SECTION-8 */

.sec8 {
    width: 100%;
    
    height: 535px;
    margin: 0 auto;
    text-align: center;
    background-color: #d3d3d3;
    padding: 20px 0;
}

.sec8 h2 {
    height: 48;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.sec8-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.sec8-card {
    width: 23%;
    background-color: #000;
    color: white;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 10px;
    text-align: center;
    height: 350px;
}

.sec8-card img {
    width: 100%;
    height: auto;
    display: block;
}

.sec8-card h3 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.sec8-card p {
    font-size: 1rem;
    padding: 0 10px;
}
/* SECTION-8 - Responsive Design */

@media (max-width: 768px) {

    .sec8-container {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
       
    }

    .sec8-card {
        width: 80%;
    }
    .sec8 h2{
        flex-direction: row;
        text-align: center;
        font-size: 34.9px;
    }
    .sec8{
        height: 850px;
        background-color: white;
    }
}

/* SECTION-9 */

.sec9 {
    width: 100%;
   
    margin: 0 auto;
    background-color: #f4f4f4;
    padding: 40px 0;
    text-align: center;
}

.sec9-policy-container {
    width: 95%;
   
    margin: 0 auto;
}

.sec9 h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: darkred;
}

.sec9 p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.sec9-policy-features1 {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.policy-box{
    width: 23%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.policy-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.policy-box strong {
    font-size: 1.1rem;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.policy-box p {
    font-size: 1rem;
    color: #666;
}
.sec9-policy-features2 {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
}
/* SECTION-9 - Responsive Design */
@media (max-width: 768px) {
    .sec9 {
        margin-top: 0px; /* Ensures no negative margin pushing it up */
        padding-top: 20px; /* Adds some spacing from Section 8 */
    }

    .sec9-policy-container {
        width: 80%;
    }

    .sec9-policy-features1,
    .sec9-policy-features2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .policy-box {
        width: 100%;
        background-color: white;
        color: black;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    .policy-box h3 {
        font-size: 1.2rem;
    }

    .policy-box p {
        font-size: 1rem;
        color: #000;
    }

    .sec9 h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .sec9 p {
        font-size: 1rem;
        text-align: left;
    }
}

 /* SECTION-10 */

 .sec10 {
    width: 100%;
   
    margin: 0 auto;
    background-color: white;
    padding: 40px 0;
}

.sec10-container {
    width: 97%;
    max-width: 1248px;
    margin: 0 auto;
    text-align: center;
}

.sec10 h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.sec10-content {
    text-align: left;
    margin-bottom: 30px;
}

.sec10-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.sec10-content strong {
    font-weight: bold;
    color: #000;
}

.sec10-map {
    width: 100%;
    max-width: 1248px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.sec10-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
}
/* SECTION-10 - Responsive Design */
@media (max-width: 768px) {
    .sec10-container {
        width: 90%;
        text-align: center;
    }

    .sec10 h2 {
        font-size: 1.8rem; /* Slightly smaller for better fit */
        margin-bottom: 10px;
    }

    .sec10-content {
        text-align: center; /* Center-align text for mobile */
        margin-bottom: 20px;
        width: 90%;
        padding-left: 20px;
    }

    .sec10-content p {
        font-size: 1rem;
        text-align: justify; /* Improves readability */
        
    }

    .sec10-map {
        width: 100%;
        border-radius: 8px;
    }

    .sec10-map iframe {
        width: 100%;
        height: 300px; /* Reduce height for better fit */
        border-radius: 8px;
    }
}

 /* section-11 */

 .section-11 {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.container {
    max-width: 1248px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.offer-inquiry,
.contact-details {
    background: #d3d3d3;
    padding: 20px;
    border-radius: 8px;
    width: 48%;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form textarea {
    height: 80px;
    resize: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #ffcc00;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-details p {
    margin: 10px 0;
}

.contact-details a {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .offer-inquiry,
    .contact-details {
        width: 90%;
    }

    form input,
    form select,
    form textarea {
        font-size: 1rem;
    }

    button {
        font-size: 1rem;
    }
    .contact-details {
        text-align: left ;
    }
}


.booking-section {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
   
    width: 80%;
    margin-top: 200px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
  margin-left: 150px;
}

.booking-section input, .booking-section select {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
}

.sec4-button a {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #ff9900;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.sec4-button a:hover {
    transform: scale(1.1);
    background-color: #e68a00;
}
/* @media (max-width: 768px) { 
.booking-section {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    max-width: 400px;
    margin-top: 80px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;

}

.booking-section input, .booking-section select {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
} */
@media (max-width: 768px) { 
    .booking-section {
        text-align: center;
        padding: 20px;
        background: #f8f8f8;
        border-radius: 10px;
        max-width: 400px;
        margin-top: 30px;
        margin-left: 30px;
        margin-right: 10px;
        margin-bottom: 10px;
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
    
    }
    
    .booking-section input, .booking-section select {
        width: 100%;
        padding: 8px;
        margin: 8px 0;
    }
.sec4-button a {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #ff9900;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.sec4-button a:hover {
    transform: scale(1.1);
    background-color: #e68a00;
}
}


  /* FOOTER */
  .site-footer {
    background-color:white;
    color: black;
    padding: 40px 0;
}

.footer-container {
    max-width: 1248px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo, .footer-links, .footer-contact, .footer-social {
    width: 23%;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding-top: 20px;
    margin-top: 10px;
}

.footer-links li {
    margin-top: 10px;
}

.footer-links a, .footer-contact a {
    color: blueviolet;
    text-decoration: none;
}

.footer-social .social-icons {
    display: flex;
    gap: 10px;
}

.footer-social .social-icons img {
    width: 24px;
    height: 24px;
}


html {
    scroll-behavior: smooth;
}


/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-left: 20px;
    }

    .footer-logo {
        width: 100%;
        text-align: left;
    }

    .footer-links, .footer-contact {
        width: 100%;
    }
}


.section7-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* always 2 per row */
  gap: 15px;
  padding: 20px;
}

.feature-box {
  background: white;
  padding: 20px 10px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.feature-box i {
  font-size: 28px;
  color: #e67e22;
  margin-bottom: 10px;
}

.feature-box h3 {
  font-size: 16px;
  color: #333;
  margin: 0;
}


/* whatsapp and phone */
/* Container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px; /* space between buttons */
  z-index: 9999; /* stay above all */
}

/* Common Button Styles */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

/* Hover effect */
.float-btn:hover {
  transform: scale(1.1);
}

/* Phone Button */
.phone-btn {
  background-color: #f7931e; /* orange */
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366; /* whatsapp green */
}
