
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Merriweather', serif; */
}

body {
    background-color: rgb(248, 246, 243);
    margin: 1.5rem 0;
}
body, html {
    overflow-x: hidden;
}

.top-bar {
    background-color: #384edf;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 0.9em;
    position: fixed;
    top: 0;
    left: 0;  
    right: 0; 
    width: 100%; 
    z-index: 1001;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

header {
    background-color: #f1f3f6;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;  
    right: 0; 
    width: 100%; 
    z-index: 1000;
    margin-bottom: 10px;
    
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height:80px;
}


/* Logo and Company Name */
.logo-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
    animation: slideInLeft 1.5s ease-out;
}

.logo-container img {
    height: 70px;
    width: auto;
    margin-right: 15px;
    margin-top: 15px;
    animation: bounce 2s infinite alternate;
}

/* .company-name {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: linear-gradient(45deg, #2d7c9b, #40a800);
    font-family: 'Roboto', sans-serif;
    animation: fadeInUp 2s ease-in-out;
    line-height: 1.1;
    text-align: center;
} */
.company-name {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #2d7c9b, #40a800);  /* Apply gradient to background */
    -webkit-background-clip: text;  /* Clip the background to the text for Webkit browsers */
    background-clip: text;  /* Standard version */
    color: transparent;  /* Make the text transparent so the gradient shows through */
    font-family: 'Roboto', sans-serif;
    animation: fadeInUp 2s ease-in-out;
    line-height: 1.1;
    text-align: center;
    text-decoration: none; 
}


/* Add hover effect */
.company-name:hover {
    color: #007BFF; /* Change color on hover */
    cursor: pointer; /* Show pointer cursor */
}
/* Separate company name into two lines */
.company-name span {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}
.hamburger-menu {
    display: block;
    cursor: pointer;
    font-size: 30px;
    color: #333;
    padding: 5px 10px;
    position: absolute; /* Absolute position to control exact placement */
    top: 50%;
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Offset by half of the element's size */
}
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .company-name {
        font-size: 24px;
    }

   /* Navigation Menu (Mobile Styles) */

   nav {
    position: fixed;
    top: 0;
    left: -250px; /* Initially hide off-screen */
    width: 250px;
    height: 100vh;
    background-color: #f1f3f6;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    padding-top: 60px;
    z-index: 1001;
    transition: transform 0.3s ease-in-out;
}

/* When 'active' class is added, slide the sidebar in */
/* nav.active {
    transform: translateX(100%); /* Move the sidebar to its normal position */
/* } */ 


nav.active {
    left: 0;
    transform: translateX(0%); /* Show the sidebar */
}

.hamburger-menu {
    display: block; /* Show hamburger on mobile */
    cursor: pointer;
    font-size: 30px;
    color: #333;
    padding: 5px 10px;
    position: absolute;
    top: 70%;
    left: 95%;
    transform: translate(-50%, -50%);
}
    .call-now-button {
        font-size: 16px;
        /* padding: 8px 16px; */
        align-items: center;
    }

    .call-icon {
        width: 20px;
        height: 20px;
    }
}

/* Desktop View */
@media (min-width: 769px) {
    nav {
        display: flex;
        gap: 20px;
        list-style: none;
        justify-content: center;  /* Horizontally center the menu items */
        margin-left: auto;
    }

    nav a {
        color: #101010;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 5px;
        transition: all 0.3s ease;
    }

    nav a:hover {
        color: #6ee04f;
    }

    nav a::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #b7d572;
        left: 0;
        bottom: 0;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.3s ease;
    }

    nav a:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .hamburger-menu {
        display: none;  /* Hide hamburger menu on desktop */
    }
}



/* Navigation Menu */
nav {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav a {
    color: #101010;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #6ee04f;
}

nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #b7d572;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/* call now  */

.call-now-button {
    display: inline-flex;
    align-items: center;
    
    flex-direction: column;  /* Stack the text and number vertically */
    justify-content: center;
    padding: 10px 20px;
    background-color: #3bd7f6;  /* Bright color for the button */
    color: rgb(13, 13, 13);
    font-size: 10px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100px;  
    height: 30px;
    padding-top: 10px;
    padding-left: 20PX;
}

/* Styling the Image inside the Button */
.call-icon {
    width: 18px;  /* Adjust the size of the phone icon */
    height: 15px;
    margin-right: 8px;  /* Space between the icon and text */
}

/* Hover and Active Effects for the Button */
.call-now-button:hover {
    background-color: #daf7f4;  /* Change to a darker color on hover */
    transform: scale(1.05);  /* Slight scaling effect */
}

.call-now-button:active {
    background-color: #b2dfd8;  /* Darker color when button is pressed */
}



nav ul li a:hover {
    color: #ff6347;
}


#close-btn {
    display: none; /* Hide by default */
    font-size: 30px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Show Close Button in Mobile View */
@media (max-width: 768px) {
    #close-btn {
        display: block;
    }
}



/* Hero Section  home section*/



.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;

    
    animation: slideShow 20s infinite;
}

@keyframes slideShow {
    0% {
        background-image: url('../images/slideshow/slideshow10.jpeg');
    }
    25% {
        background-image: url('../images/home4.jpeg');
    }
    50% {
        background-image: url('../images/slideshow/slideshow8.jpeg');
    }
    75% {
        background-image: url('../images/slideshow/slideshow7.jpeg');
    }
    100% {
        background-image: url('../images/slideshow/slideshow9.jpeg');
    }
}




.hero div {
    position: relative;
    z-index: 10;
}

/* Title Animation (Typing Effect) */
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    animation: typing 2s steps(30) 1s 1 normal forwards, fadeIn 1s ease-out forwards, loopTyping 5s infinite;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    border-right: 4px solid #fff;
}

/* Paragraph Animation (Scale-In) */
.hero p {
    font-size: 1.25rem;
    margin-top: 20px;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1.5s ease-out 3s forwards, loopScale 5s infinite;
}

/* Button Animation (Floating) */
.hero button {
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    background-color: #f39c12;
    color: white;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: floatIn 2s ease-out 4s forwards, loopFloat 5s infinite;
}

.hero button:hover {
    background-color: #e67e22;
    transform: translateY(-5px);
}

/* Keyframe Animations */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Infinite Loop Animations */
@keyframes loopTyping {
    0% {
        opacity: 1;
        width: 0;
    }
    50% {
        opacity: 1;
        width: 100%;
    }
    100% {
        opacity: 0;
        width: 0;
    }
}

@keyframes loopScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes loopFloat {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

* {box-sizing:border-box}






@media (max-width: 768px) {
    .hero {
        background-position: center center; /* Ensure the image stays centered */
        height: 80vh; /* Reduce height to avoid excessive scrolling on mobile */
        padding: 20px;
    }

    /* Adjust the title (h1) for smaller screens */
    .hero h1 {
        font-size: 2.5rem; /* Smaller font size for mobile */
        animation: typing 2s steps(30) 1s 1 normal forwards, fadeIn 1s ease-out forwards;
    }

    /* Adjust the paragraph text (p) for mobile screens */
    .hero p {
        font-size: 1rem;
        margin-top: 15px;
        animation: scaleIn 1.5s ease-out 3s forwards;
    }

    /* Adjust button size and position on mobile */
    .hero button {
        margin-top: 20px;
        padding: 12px 25px;
        font-size: 1rem;
        animation: floatIn 2s ease-out 4s forwards;
    }

    /* Mobile-specific styling for the background image */
    .hero {
        background-size: cover; /* Ensure image always covers the section */
        background-position: center center; /* Center the background image */
    }
}


.section-title {
    text-align: center;
    margin: 30px 0;
    font-size: 3rem; 
    color:#800020; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    position: relative; 
    margin-top: 0;
    line-height: 1.3;
    padding: 10px 20px;
    /* display: inline-block;  */
    /* background: linear-gradient(45deg, #024504, #40a800);  */
    background: #208ce4;
    color: transparent;
    -webkit-background-clip: text; 
    background-clip: text;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, color 0.3s ease; 
}

.section-title:hover {
    color: #151313; 
    transform: translateY(-5px); 
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

.section-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px; 
    background-color:#8B4513; 
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease;
}

.section-title:hover::before {
    transform: scaleX(1); 
    transform-origin: bottom left;
}



/* DESTINATION
 */



/* Hover effect */
.destination:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.destination:hover img {
    transform: scale(1.1);
}

.destination img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.destination h3 {
    margin-top: 15px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.destination p {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
}



@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}



 #destinations{
 margin:20px;
 /* background-image: url("../images/desti2.jpg"); */
 background-image: url("../images/paint2.png");
 background-size: cover;
 background-position: center center; 
 background-repeat: no-repeat;
 height: 100%;
 padding: 200px;
 margin: 20px;
 font-family: 'Dancing Script', cursive;
 }
 
 
.destinations, .Gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.destination, .service {
    background-color: rgba(255, 255, 255, 0.8); 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.destination img, .service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.destination h3, .service h3 {
    margin-top: 15px;
    font-size: 1.8rem;
}

.destination p, .service p {
    margin-top: 10px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    /* Destinations Section Title */
    #destinations-title {
        font-size: 2rem; /* Adjust title font size for mobile */
        margin-bottom: 20px;
    }

    /* Adjust the number of columns in the grid */
    .destinations {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Adjust to fit mobile screens */
        gap: 15px;
    }

    /* Adjusting the image height for mobile */
    .destination img {
        height: 180px; /* Reduce image height for better fit */
    }

    /* Adjust the text sizes */
    .destination h3 {
        font-size: 1.4rem; /* Slightly smaller font size */
    }

    .destination p {
        font-size: 0.9rem; /* Smaller paragraph text */
    }

    /* Padding and Margin Adjustments */
    #destinations {
        padding: 60px 10px; /* Reduced padding on mobile */
    }
}



/* gallery ....................................*/
:root {
    --bg-color: #fffeff;
    --font-color: #fff;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


#Gallery {
    margin: 10px;
    
}

.hover-gallery {
    transform: translate3d(0, 0, 0);
    background-color: var(--bg-color);
    padding: 50px;
    min-height: 600px;
    text-align: center;
}

.gallery-container {
    padding: 0;
    margin: 0;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.gallery-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 600px;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.item {
    flex: 1;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: flex 0.8s ease;
    transition-delay: 0.25s;
    border-radius: 5px;
    padding: 10px;
    margin: 5px; 
}

.item:hover {
    flex: 14;
}
/* phone item enlargemnt making sure */



/* end */
.item p {
    position: absolute;
    top: 0;
    margin: 2rem;
    padding: 1rem;
    display: none;
    color: var(--font-color);
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.item:hover p {
    display: block;
    animation: fade-in 2.5s ease;
}

.more-button {
    background: linear-gradient(45deg, #4315cc, #7d72d1); /* Gradient effect */
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.more-button:hover {
    background: linear-gradient(45deg, #ff7eb3, #ff6ec7); /* Reverse gradient on hover */
    transform: scale(1.1); /* Slight zoom effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.more-button:active {
    background: linear-gradient(45deg, #4315cc, #7d72d1); /* Darker gradient when clicked */
    transform: scale(1); /* No zoom when clicked */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-wrap {
        flex-direction: column; /* Stack items vertically on medium screens */
    }

    .item {
        flex: 1 1 45%; /* Allow items to take up more space but maintain flexibility */
        margin: 10px;
    }
}

/* @media (max-width: 768px) {
    .hover-gallery {
        padding: 30px; 
    }

    .gallery-wrap {
        flex-direction: column; 
    }

    .item {
        flex: 1 1 100%; 
        height: auto; 
        margin: 10px 0; 
    }

    .more-button {
        width: 100%; 
        padding: 15px;
        font-size: 16px;
    }
} */

@media (max-width: 768px) {
    .item {
        flex: 1 1 100%;
        height: auto;
        margin: 10px 0;
    }

    .item.active {
        flex: 14; /* Simulate hover on click/tap */
    }

    .item p {
        font-size: 14px;
        margin: 1rem;
    }

    .more-button {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .hover-gallery {
        padding: 20px; /* Even less padding for very small screens */
    }

    .gallery-wrap {
        flex-direction: column; /* Stack items vertically on very small screens */
    }

    .item {
        flex: 1 1 100%; /* Make each image full width */
        height: 250px; /* Set a fixed height for images on small screens */
        background-size: cover; /* Ensure images cover the space */
        margin: 10px 0; /* Vertical spacing */
    }

    .item p {
        font-size: 14px; /* Adjust text size */
        margin: 1rem; /* Adjust margins */
    }

    .more-button {
        width: 100%; /* Full-width button on small screens */
        padding: 12px;
        font-size: 14px;
    }
}


  /* contact us */
  #contact {
    /* background: linear-gradient(45deg, rgba(127, 255, 212, 0.7), rgba(135, 206, 250, 0.7));  */
    /* background-size: 400% 400%; */
    /* animation: waterFlow 6s ease infinite; Animation to create flowing effect */
    /* height: 100vh; */
    background-image: url("../images/paint1.png");
    background-size: cover;
    background-position: center center; 
    background-repeat: no-repeat;
    height: 100%;
    padding: 200px;
    /* margin: 20px; */
    margin: auto;
    width: 100%;
    position: relative;
    z-index: 3;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
}

@keyframes waterFlow {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    /* max-width: 1200px; */
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px); 
}

.contactrow {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.contact-info, .contact-form {
    width: 48%; /* Each box takes 48% of the width */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* margin:10px; */
}

.contact-info h2 {
    font-size: 2em;
    color: #1da9c0;
    margin-bottom: 10px;
    text-align: center;
}

.contact-info p {
    font-size: 1.2em;
    color: #333;
    text-align: center;
    padding: 10PX;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: #e0f7fa; /* Default background color */
    border-radius: 50%;
    text-align: center;
    padding: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition for color and scaling */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-icon:hover {
    background-color: #00bcd4; /* Change to a different color on hover */
    transform: scale(1.1); /* Slight scaling effect on hover */
}

.contact-info-icon img {
    width: 30px; /* Fixed width for all icons */
    height: 30px; /* Fixed height for all icons */
    border-radius: 50%;
    object-fit: contain; /* Ensures the image maintains aspect ratio inside the circle */
    transition: transform 0.3s ease; /* Smooth transition for scaling image */
}

.contact-info-icon:hover img {
    transform: scale(1.1); /* Slightly enlarge the image on hover */
}



.contact-info-content {
    margin-left: 15px;
}

.contact-info-content h4 {
    font-size: 1.2em;
    color: #333;
}

.contact-info-content p {
    font-size: 1em;
    color: #555;
}
.contact-form {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* margin: 50px 20px; */
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    /* margin: 10px 0; */
    border-radius: 5px;
    border: 1px solid #ccc;
}
.contact-form h2 {
    font-size: 2em;
    color: #1da9c0;
    margin-bottom: 10px;
}

.contact-form .input-box {
    position: relative;
    margin-bottom: 20px;
}

.contact-form .input-box input:focus ~ span,
  .contact-form .input-box textarea:focus ~ span{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
  }

  .contact-form .input-box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    /* margin: 10px 0; */
    pointer-events: none;
    transition: 0.5s;
    color: #666;
  }

  
.contact-form .input-box input[type="submit"]:hover
  {
    background: #FFF;
    color: #00bcd4;
  }
  .contact-form .input-box input[type="submit"]
  {
    width: 100%;
    background: #00bcd4;
    color: #FFF;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #00bcd4;
    transition: 0.5s;
  }

  @media screen and (max-width: 1000px) {
    #contact {
        background-image: url("../images/paint1.png");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        height: auto;
        padding: 100px 0;  /* Adjusted for better spacing on small screens */
        /* margin: 20px; */
        margin: auto;
        width: 100%;
        position: relative;
        z-index: 3;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 90%;
        max-width: 1000px;
        background-color: rgba(255, 255, 255, 0.9); /* Slightly more opaque for readability */
        padding: 30px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }
    
    .contactrow {
        display: flex;
        flex-direction: column; /* Stack elements vertically on small screens */
        width: 100%;
        align-items: center;
        margin-top: 20px; /* Adjusted margin for alignment */
    }
    
    .contact-info, .contact-form {
        width: 100%; /* Full width for both sections on mobile */
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.8em;
        color: #1da9c0;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .contact-info p, .contact-form .input-box input, .contact-form .input-box textarea {
        font-size: 1em;
        color: #333;
        text-align: center;
        padding: 10px;
    }
    
    .contact-info-item {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
        background-color: #e0f7fa;
        border-radius: 50%;
        text-align: center;
        padding: 8px;
        margin-right: 10px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    .contact-info-icon:hover {
        background-color: #00bcd4;
        transform: scale(1.1);
    }
    
    .contact-info-icon img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }
    
    .contact-info-content h4 {
        font-size: 1.1em;
        color: #333;
    }
    
    .contact-info-content p {
        font-size: 1em;
        color: #555;
    }
    
    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border-radius: 5px;
        border: 1px solid #ccc;
    }
    
    .contact-form .input-box input[type="submit"] {
        background: #00bcd4;
        color: #fff;
        border: none;
        cursor: pointer;
        padding: 15px;
        font-size: 18px;
        width: 100%;
        transition: background-color 0.3s ease;
    }
    
    .contact-form .input-box input[type="submit"]:hover {
        background-color: #0288d1;
    }
    
    .contact-info, .contact-form {
        width: 100%;
        padding: 20px;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.6em; /* Smaller heading size */
    }

    .contact-info p, .contact-form .input-box input, .contact-form .input-box textarea {
        font-size: 1em; /* Slightly smaller text */
    }

    .contact-info-item {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }

    .contact-info-icon {
        width: 35px;
        height: 35px;
        padding: 7px;
    }

    .contact-form .input-box input[type="submit"] {
        padding: 12px;
        font-size: 16px; /* Adjust button size */
    }
}


 
@media screen and (max-width: 768px) {
    #contact {
        background-image: url("../images/paint1.png");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        height: auto;
        padding: 100px 0;  /* Adjusted for better spacing on small screens */
        /* margin: 20px; */
        margin: auto;
        width: 100%;
        position: relative;
        z-index: 3;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 90%;
        max-width: 1000px;
        background-color: rgba(255, 255, 255, 0.9); /* Slightly more opaque for readability */
        padding: 30px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }
    
    .contactrow {
        display: flex;
        flex-direction: column; /* Stack elements vertically on small screens */
        width: 100%;
        align-items: center;
        margin-top: 20px; /* Adjusted margin for alignment */
    }
    
    .contact-info, .contact-form {
        width: 100%; /* Full width for both sections on mobile */
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.8em;
        color: #1da9c0;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .contact-info p, .contact-form .input-box input, .contact-form .input-box textarea {
        font-size: 1em;
        color: #333;
        text-align: center;
        padding: 10px;
    }
    
    .contact-info-item {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
        background-color: #e0f7fa;
        border-radius: 50%;
        text-align: center;
        padding: 8px;
        margin-right: 10px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    .contact-info-icon:hover {
        background-color: #00bcd4;
        transform: scale(1.1);
    }
    
    .contact-info-icon img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }
    
    .contact-info-content h4 {
        font-size: 1.1em;
        color: #333;
        text-align: center;
    }
    
    .contact-info-content p {
        font-size: 1em;
        color: #555;
    }
    
    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border-radius: 5px;
        border: 1px solid #ccc;
    }
    
    .contact-form .input-box input[type="submit"] {
        background: #00bcd4;
        color: #fff;
        border: none;
        cursor: pointer;
        padding: 15px;
        font-size: 18px;
        width: 100%;
        transition: background-color 0.3s ease;
    }
    
    .contact-form .input-box input[type="submit"]:hover {
        background-color: #0288d1;
    }
    
    .contact-info, .contact-form {
        width: 100%;
        padding: 20px;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.6em; /* Smaller heading size */
    }

    .contact-info p, .contact-form .input-box input, .contact-form .input-box textarea {
        font-size: 1em; /* Slightly smaller text */
    }

    .contact-info-item {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }

    .contact-info-icon {
        width: 35px;
        height: 35px;
        padding: 7px;
    }

    .contact-form .input-box input[type="submit"] {
        padding: 12px;
        font-size: 16px; /* Adjust button size */
    }
}




/* Responsive Design */

/* memory gallery */
.memory-gallery {
    padding: 3rem 1rem;
   
    background: linear-gradient(to bottom, #76c893, #c4d6b0, #f4e285); /* Green to golden hues */
    color: #333;
    text-align: center;
  }
  
  .memory-gallery header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Segoe Print', cursive;
  }
  
  .memory-gallery header p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .memory-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 0px;
    position: relative;
  }
  
  .memory {
    position: relative;
    transform: translate(calc(var(--x, 0) * 1%), calc(var(--y, 0) * 1%)) rotate(var(--rotate, 0));
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  
  .memory img {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
  }
  
  .memory p {
    margin: 0.5rem 0 0;
    text-align: center;
    font-size: 1rem;
    color: #333;
  }
  
  .memory:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  
  .memory:hover {
    z-index: 2;
    transform: translate(calc(var(--x, 0) * 1%), calc(var(--y, 0) * 1%)) rotate(0);
  }
  /* For screens 768px and smaller (tablet and below) */
@media (max-width: 768px) {
    .memory-gallery {
        padding: 2rem 1rem;
    }

    .memory-gallery header h2 {
        font-size: 1.5rem; /* Smaller title font for tablets */
    }

    .memory-gallery header p {
        font-size: 1rem; /* Smaller text for description */
    }

    .memory-wall {
        display: flex;
        justify-content: center;
        overflow-x: auto; /* Allow horizontal scrolling if the content overflows */
        width: 100%; /* Ensure the container takes full width */
    }


    .memory {
        width: 150px; /* Smaller width for memory items */
    }

    .memory img {
        width: 100%; /* Ensure images fit properly */
        height: auto;
    }

    .memory p {
        font-size: 0.9rem; /* Adjust font size of text inside memory */
    }
}

/* For screens 480px and smaller (mobile) */
@media (max-width: 480px) {
    .memory-gallery {
        padding: 1.5rem 0.5rem;
    }

    .memory-gallery header h2 {
        font-size: 1.3rem; /* Even smaller title font for mobile */
    }

    .memory-gallery header p {
        font-size: 0.9rem; /* Adjust font size for description */
    }
    .memory-wall {
        display: flex;
        justify-content: center;
        overflow-x: auto; /* Allow horizontal scrolling if the content overflows */
        width: 100%; /* Ensure the container takes full width */
    }


    .memory {
        width: 120px; /* Smaller memory items on mobile */
    }

    .memory img {
        width: 100%;
        height: auto;
    }

    .memory p {
        font-size: 0.8rem; /* Smaller text inside memory items */
    }
}

/* For very small screens, like portrait phones */
@media (max-width: 375px) {
    .memory-gallery {
        padding: 1rem 0.5rem;
    }

    .memory-gallery header h2 {
        font-size: 1.2rem; /* Further reduce title size */
    }

    .memory-gallery header p {
        font-size: 0.8rem; /* Adjust font size for description */
    }

    /* .memory-wall {
        justify-content: center;
   
        
    } */
    .memory-wall {
        display: flex;
        justify-content: center;
        overflow-x: auto; /* Allow horizontal scrolling if the content overflows */
        width: 100%; /* Ensure the container takes full width */
    }

    .memory {
        width: 100px; /* Very small width for memory items */
    }

    .memory img {
        width: 100%;
        height: auto;
    }

    .memory p {
        font-size: 0.7rem; /* Very small text for mobile devices */
    }
}
  /* 
  about us */
  /* About Us Section */
/* General Styling */
.about-us-section {
    margin: 20px;
    padding: 50px;
    background-color: #f4f4f4;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.about-us-intro h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1da9c0;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}

.about-us-intro p {
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    line-height: 1.6;
}

.about-us-experience {
    margin-top: 50px;
    text-align: center;
}

.about-us-experience h3 {
    font-size: 2rem;
    color: #1da9c0;
    margin-bottom: 30px;
}

.experience-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.experience-item {
    width: 300px;
    margin-bottom: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    font-family: 'Lobster', cursive;
}

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

.experience-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.experience-item h4 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 20px;
}

.experience-item p {
    font-size: 1rem;
    color: #777;
}

.about-us-mission {
    margin-top: 60px;
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-us-mission h3 {
    font-size: 2rem;
    color: #1da9c0;
    margin-bottom: 20px;
}

.about-us-mission p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

.our_services {
    margin-top: 50px;
    text-align: center;
}

.our_services h3 {
    font-size: 2rem;
    color: #1da9c0;
    margin-bottom: 30px;
}

.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Lobster', cursive;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

.service-box .icon {
    font-size: 50px;
    color: #3498db;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}
.service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}
.service-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1d6fa5;
}

/* Responsive Design */

/* Mobile and Small Devices (max-width 768px) */
@media screen and (max-width: 768px) {
    .about-us-section {
        padding: 20px;
    }

    .about-us-intro h2 {
        font-size: 2rem;
    }

    .about-us-intro p {
        font-size: 1rem;
    }

    .about-us-experience h3, .about-us-mission h3, .our_services h3 {
        font-size: 1.8rem;
    }

    .experience-items {
        flex-direction: column;
        align-items: center;
    }

    .experience-item {
        width: 90%;
        margin-bottom: 20px;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
        margin-bottom: 20px;
    }

    .service-box h3 {
        font-size: 1.3rem;
    }

    .service-box p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (max-width 480px) */
@media screen and (max-width: 480px) {
    .about-us-intro h2 {
        font-size: 1.8rem;
    }

    .about-us-intro p {
        font-size: 0.9rem;
    }

    .experience-item h4 {
        font-size: 1.2rem;
    }

    .experience-item p {
        font-size: 0.9rem;
    }

    .about-us-mission h3 {
        font-size: 1.7rem;
    }

    .about-us-mission p {
        font-size: 1rem;
    }

    .service-box h3 {
        font-size: 1.2rem;
    }

    .service-box p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Tablets (min-width 768px and max-width 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .experience-items {
        flex-direction: row;
        justify-content: space-between;
    }

    .experience-item {
        width: 45%;
        margin-bottom: 20px;
    }

    .services {
        flex-direction: row;
        justify-content: space-around;
    }

    .service-box {
        width: 45%;
        margin-bottom: 30px;
    }
}

 
 


  
/* Footer */
footer {
   
    background-image: url("../../images/footer.jpg");
    /* background-image: url(../../images/Kerala-tourism.jpg); */

    background-size: cover;
    background-position: center center; 
    background-repeat: no-repeat; 
    padding: 40px 0;
    color: white;
    font-family: Arial, sans-serif;
    margin:10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    padding: 10px 20px;
}

.footer-section h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: white;
}

.footer-section p,
.footer-section a {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.footer-section a:hover {
    color: #f39c12;
}

.footer-section ul {
    list-style: none;
}

.social-icons a {
    font-size: 24px;
    margin-right: 10px;
    color: white;
    text-decoration: none;
}

.social-icons a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 18px;
    color:white;
}
/* Default link style */
.footer-bottom a {
    color: white; /* White color by default */
    text-decoration: none; /* Removes the underline */
    transition: color 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect */
.footer-bottom a:hover {
    color: #208ce4; /* Change to a new color, e.g., blue */
    text-decoration: underline; /* Optional: underline on hover */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between the icons */
    color:white;
}

.social-icon {
    width: 30px; /* Set the size of each icon */
    height: 30px; /* Set the size of each icon */
    border-radius: 50%; /* This makes the icon circular */
    object-fit: cover; /* Ensures the image fits nicely inside the circle */
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* border: 2px solid #fff; Optional: Add a border to make the circle stand out */
}

.social-icon:hover {
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
    opacity: 0.8; /* Reduce opacity on hover */
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }
}



/* gallery.html page style and boating.html and group travel.html and rent_bike.html */

/* Gallery Section */
#gallery {
    padding: 50px 0;
    text-align: center;
    background-color: #fff;
    margin:30px;
}


.subpage-section-subtitle    {
    font-size: 18px;
    color: #777;
    margin-bottom: 50px;
    font-family: 'Lobster', cursive;
}

.GalleryPage-row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal GalleryPage-columns that sits next to each other */
.GalleryPage-column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.GalleryPage-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two GalleryPage-column-layout instead of four GalleryPage-columns */
@media screen and (max-width: 800px) {
  .GalleryPage-column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two GalleryPage-columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .GalleryPage-column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

/* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Ensure it appears above the header */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9); /* Black with opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}



/* VEDIO SECTION IN WEBSITE */
.video-gallery-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.video-item {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.video-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    padding: 10px 0;
}
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust grid columns */
    }

    .video-item iframe {
        height: 180px; /* Adjust iframe height for smaller screens */
    }

    .video-title {
        font-size: 1em; /* Adjust font size for video titles */
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile devices */
    }

    .video-item iframe {
        height: 160px; /* Adjust iframe height */
    }

    .section-title {
        font-size: 2em; /* Adjust section title for smaller screens */
    }

    .section-description {
        font-size: 1em; /* Adjust description text */
    }

    .video-title {
        font-size: 0.9em; /* Adjust video title font size */
    }
}

@media (max-width: 480px) {
    .video-item iframe {
        height: 140px; /* Reduce iframe height even further on very small screens */
    }

    .section-title {
        font-size: 1.8em; /* Further reduce section title size */
    }

    .section-description {
        font-size: 0.9em; /* Further reduce section description size */
    }

    .video-title {
        font-size: 0.85em; /* Further reduce video title size */
    }
}
.Vmodal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.Vmodal-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    text-align: center;
}

.Vmodal-content iframe {
    width: 100%;
    height: 300px;
}

.Vmodal-content h3 {
    margin: 15px 0;
    color: #222;
}

.Vmodal-content .watch-more-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.Vmodal-content .watch-more-button:hover {
    background-color: #0056b3;
}

.Vmodal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    color: #333;
}
/* END OF VEDIO SECTION*/


/* our facilities menu style */
    /* General Styles */
    .slideshow-container {
        position: relative;
        max-width: 100%;
        margin: auto;
        overflow: hidden;
       
    }

    /* Slideshow Images */
    .slides {
        display: none;
        width: 100%;
        
    }

    /* Navigation Arrows */
    .arrow {
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        color: white;
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        user-select: none;
        z-index: 10;
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }

    /* Indicators */
    .indicators {
        text-align: center;
        position: absolute;
        bottom: 20px;
        width: 100%;
    }

    .indicator {
        height: 15px;
        width: 15px;
        margin: 0 5px;
        display: inline-block;
        cursor: pointer;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        transition: background-color 0.3s;
    }

    .indicator.active {
        background-color: white;
    }

    /* dvsdvgfrgsdr */

    /* Cozy Bed & Services Section */
.cozy-bed-section {
background: linear-gradient(to right, #f5f5f5, #ffffff); /* Soft gradient background */
padding: 100px 20px;
text-align: center;
position: relative;
background-image: url("../images/boating/boating16.jpeg");
background-size: cover;
background-position: center center; 
background-repeat: no-repeat;
height: 100%;
}

.cozy-bed-section .container {
max-width: 1200px;
margin: 0 auto;
}

.section-title {
font-size: 3em;
color: #4a4a4a;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 600;
}

.section-description {
font-size: 1.2em;
color: #6c6c6c;
margin-bottom: 50px;
font-style: italic;
}

.cozy-bed-content {
display: flex;
flex-direction: column;
gap: 30px;
}

/* Cozy Item Style */
.cozy-item {
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.cozy-item:hover {
transform: scale(1.05);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cozy-item-img {
width: 100%;
height: 300px;
background-size: fill;
background-position: center;
background-repeat: no-repeat;
transition: transform 0.4s ease;
}

.cozy-item:hover .cozy-item-img {
transform: scale(1.1);
}

.cozy-item-text {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
background: rgba(0, 0, 0, 0.5);
color: white;
padding: 20px;
border-radius: 10px;
text-align: left;
}

.cozy-item-text h3 {
font-size: 1.8em;
margin-bottom: 10px;
font-weight: 700;
}

.cozy-item-text p {
font-size: 1.2em;
font-style: italic;
margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
.cozy-bed-content {
    flex-direction: column; /* Stack items vertically */
}

.section-title {
    font-size: 2.5em; /* Slightly smaller title on mobile */
}

.section-description {
    font-size: 1.1em;
}

.cozy-item-text h3 {
    font-size: 1.5em;
}

.cozy-item-text p {
    font-size: 1em;
}
}

.welcome{
 text-align: center;
 margin:20px;

}
/* end of our faciliteis page */