/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Optional: For better performance, prevent excessive scroll animations */
body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Custom Banner Section */
.banner {
    position: relative;
    height: 80vh; /* Set height to 80vh */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-image: url('img1.jpg'); /* Add image URL here */
}

/* Pseudo-element for background image opacity */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0); /* No color for the image */
    background-image: inherit; /* Inherit background image */
    background-size: cover;
    background-position: center;
    opacity: 0.6; /* Reduce image opacity to 60% */
    z-index: 1; /* Make sure image is below the overlay */
}

/* Solid black background */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Solid black background with 100% opacity */
    z-index: 2; /* Make sure overlay is above the image */
}

/* Text content centered in the middle */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff; /* White text for contrast */
    z-index: 3; /* Make sure content is above the overlay */
}

/* Heading styling */
.banner h1 {
    font-size: 7rem;
    font-weight: bold;
 
}

/* Subheading styling */
.banner p {
    font-size: 1.5rem;
}

/* Beautiful Button */
.btn-explore {
    background: #164F53; /* Gradient button color */
    color: white;
    padding: 12px 26px; /* Increased padding for a more substantial button */
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600; /* Slightly bolder font for the button */
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s; /* Added transition for scaling effect */
}

.btn-explore:hover {
    background: linear-gradient(135deg, #164F53, #164F53); /* Darken gradient on hover */
    transform: scale(1.05); /* Slight scaling effect on hover */
    color: white;
}

        /* Banner Carousel */
        .carousel-item {
            position: relative;
            height: 80vh; /* Set height to 80vh */
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        /* Carousel container needs to be positioned relative */
        .carousel-inner {
            position: relative; /* Positioning context for the form */
        }

        /* Booking Bar Styling (Fixed on the carousel, not on the page) */
        .booking-bar {
            position: absolute;  /* Absolute position relative to .carousel-inner */
            bottom: 20px;        /* Position it at the bottom of the carousel */
            left: 50%;
            transform: translateX(-50%); /* Center horizontally */
            width: 90%;
            max-width: 1200px;
            background-color: #FFD700;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            gap: 10px;
            z-index: 2;  /* Ensure the form stays on top of the carousel */
        }

        /* Form Styling */
        .booking-form {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            width: 100%;
        }

        /* Input Fields Styling */
        .booking-form input {
            flex: 1;
            padding: 12px;
            border-radius: 5px;
            border: 1px solid #ddd;
            font-size: 1rem;
            background-color: #fff;
            color: #333;
        }

        /* Submit Button Styling */
        .btn-submit {
            background: #FF8C00;
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            transition: background-color 0.3s, transform 0.2s;
        }

        .btn-submit:hover {
            background: linear-gradient(135deg, #164F53, #164F53);
            transform: scale(1.05);
            cursor: pointer;
        }

        /* Media Queries for Responsive Design */
        @media (max-width: 768px) {
            /* Adjust form for smaller screens */
            .booking-bar {
                width: 100%;
                left: 0;
                transform: none; /* Remove centering */
                display: none;
            }

            /* Stack inputs vertically */
            .booking-form {
                flex-direction: column;
                display: none;
            }

            /* Adjust input fields */
            .booking-form input {
                width: 100%;
                margin-bottom: 10px;
            }
        }


        .booking-var {
            /* Absolute position relative to .carousel-inner */
            margin-top: 20px;
            width: 90%;
            max-width: 1200px;
            background-color: #FFD700;
            padding: 20px;
            display: flex;
            flex-direction: column; /* Change to column so that heading is at the top */
            justify-content: flex-start; /* Align children (heading & form) from the top */
            gap: 10px;
            z-index: 1;  /* Ensure the form stays on top of the carousel */
        }
        
        /* Added styling for heading */
        .booking-heading {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            color: white; /* Ensure it's visible on the dark background */
            margin-bottom: 15px; /* Space between heading and form */
        }
        
        /* Form Styling */
        .booking-term {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            width: 100%;
        }
        
        /* Input Fields Styling */
        .booking-term input {
            flex: 1;
            padding: 12px;
            border-radius: 5px;
            border: 1px solid #ddd;
            font-size: 1rem;
            background-color: #fff;
            color: #333;
        }
        
        /* Submit Button Styling */
        .btn-submit {
            background: #FF8C00;
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            transition: background-color 0.3s, transform 0.2s;
        }
        
        .btn-submit:hover {
            background: linear-gradient(135deg, #164F53, #164F53);
            transform: scale(1.05);
            cursor: pointer;
        }
        
        /* Media Queries for Responsive Design */
        @media (max-width: 768px) {
            /* Adjust form for smaller screens */
            .booking-var {
                width: 100%;
                left: 0;
                transform: none; /* Remove centering */
            }
        
            /* Stack inputs vertically */
            .booking-term {
                flex-direction: column;
            }
        
            /* Adjust input fields */
            .booking-term input {
                width: 100%;
            }
        }
        
        @media screen and (min-width: 1440px){
            .booking-var {
                display: none;
            }
            .booking-term{
                display: none;
            }
        }
        @media screen and (min-width: 1230px){
            .booking-var {
                display: none;
            }
            .booking-term{
                display: none;
            }
        }
        
        
    

/*fonts*/
.great-vibes-regular {
    font-family: "Great Vibes", cursive;
    font-weight: 300;
    font-style: normal;
  }
  .cormorant-sc-regular {
    font-family: "Cormorant SC", serif;
    font-weight: 400;
    font-style: normal;
  }  
  .cormorant-sc-semibold {
    font-family: "Cormorant SC", serif;
    font-weight: 600;
    font-style: normal;
  }
  


/*navbar*/
/* Basic navbar styles */
.navbar-toggler {
    border: none;
    background-color: transparent;
    padding: 0;
}

.navbar-toggler-icon {
    width: 30px; /* Make it smaller and simpler */
    height: 20px; /* Adjust the height */
    display: block;
    position: relative;
    background-color: #000000; /* Color of the hamburger lines */
    margin-right: 10px;
}

.navbar-toggler-icon::before, .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px; /* Height of the lines */
    background-color: #333; /* Dark color for the lines */
    border-radius: 2px; /* Rounded corners for the bars */
    transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
    top: 0; /* Position the top line */
}

.navbar-toggler-icon::after {
    bottom: 0; /* Position the bottom line */
}

.navbar-toggler-icon span {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    top: 50%; /* Position the middle bar */
    transform: translateY(-50%); /* Ensure it's centered vertically */
}

/* Ensure proper visibility of the navbar */
@media (max-width: 768px) {
    .navbar-toggler-icon {
        background-color: transparent; /* Ensure background remains transparent */
    }
}
@media (max-width: 767px) {
    .navbar-brand {
      margin-left: 0 !important;
    }
  }

/* Normal state of nav items */
.navbar {
    position: sticky;
    top: 0; /* Sticks the navbar to the top of the viewport */
    z-index: 1000; /* Ensures it stays above other content */
    background-color: #fff; /* Ensures a solid background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
}



.navbar-nav .nav-link {
    color: #333; /* Dark color for normal state */
    font-weight: normal;
   
}

/* Active Nav Item */
.navbar-nav .nav-item.active .nav-link {
    color: #F74102!important; /* Set the active link color */
}

/* Optional: Change color of the active link when hovered */
.navbar-nav .nav-item.active .nav-link:hover {
    color: #F74102; /* You can adjust the hover color if needed */
}
/* Active Nav Item */
.navbar-nav .nav-item.active .nav-link {
    color: #F74102 !important; /* Active link color */
    font-weight: bold; /* Optional: Make the active item bold */
    border-bottom: 2px solid #F74102; /* Optional: Add an underline effect */
}

/* Optional: Hover effect for active item */
.navbar-nav .nav-item.active .nav-link:hover {
    color: #F74102; /* Hover color for active item */
    border-bottom: 2px solid #F74102; /* Change underline color on hover */
}
/* Style for the Book Now Button */
.btn-book-now {
    background-color: #164F53; /* Sunset orange for standout effect */
    color: #fff; /* White text color */
    font-weight: bold;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-right: 20px;
}

.btn-book-now:hover {
    background-color: #164F53; /* Darker shade on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
    color: #fff; /* Maintain white text on hover */
}


/*About*/
/* About Section */
.about-section {
    padding: 40px 0; /* Add padding for top and bottom */
    background-color: #ffffff; /* Light background for the section */
  }
  
  .about-section .row {
    display: flex;
    align-items: center;
  }
  
  .about-section .col-md-6 {
    padding: 20px;
  }
  
  .about-section h1 {
    font-size: 2rem; /* Larger text for heading */
    
    color: #F74102; /* Dark color for the heading */
    margin-bottom: 15px;
  }
  
  .about-section p {
    font-size: 1rem; /* Slightly larger text for description */
    color: #555; /* Light grey for text */
    line-height: 1.6;

  }
  
  .about-section .btn-custom {
    background-color: #164F53; /* Button color */
    color: white; /* Text color */
    padding: 12px 30px; /* Padding for the button */
    font-size: 14px; /* Font size */
    font-weight: 600; /* Make text bold */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
   
    letter-spacing: 1px; /* Slight letter spacing */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  .about-section .btn-custom:hover {
    background-color: #164F53; /* Darker shade on hover */
    transform: translateY(-3px); /* Lift button on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
    text-decoration: none; /* Remove underline on hover */
  }
  
  .about-section .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for the image */
   
 
  }
  
  @media (max-width: 767px) {
    .about-section .row {
      flex-direction: column; /* Stack the image and text on smaller screens */
      text-align: center;
    }
  
    .about-section .col-md-6 {
      margin-bottom: 20px;
    }
  
    .about-section h1 {
      font-size: 2rem; /* Adjust font size for smaller screens */
      text-align: left;
    }
  
    .about-section p {
      font-size: 1rem; /* Adjust font size for smaller screens */
    }
  }
  

/*About*/
/* About Section */
.about-sections {
    padding: 40px 0; /* Add padding for top and bottom */
    background-color: #FFD700; /* Light background for the section */
  }
  
  .about-sections .row {
    display: flex;
    align-items: center;
  }
  
  .about-sections .col-md-6 {
    padding: 20px;
  }
  
  .about-sections h1 {
    font-size: 2rem; /* Larger text for heading */
    
    color:#F74102; /* Dark color for the heading */
    margin-bottom: 15px;
  }
  
  .about-sections p {
    font-size: 1rem; /* Slightly larger text for description */
    color: #000000 !important; /* Light grey for text */
    line-height: 1.6;

  }
  
  .about-sections .btn-custom {
    background-color: #164F53; /* Button color */
    color: white;  /* Text color */
    padding: 12px 30px; /* Padding for the button */
    font-size: 14px; /* Font size */
    font-weight: 600; /* Make text bold */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
   
    letter-spacing: 1px; /* Slight letter spacing */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  .about-sections .btn-custom:hover {
    background-color: #164F53; /* Darker shade on hover */
    transform: translateY(-3px); /* Lift button on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
    text-decoration: none; /* Remove underline on hover */
  }
  
  .about-sections .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for the image */
    /* filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));  Drop shadow with glowing effect */
  }
  
  @media (max-width: 767px) {
    .about-sections .row {
        flex-direction: column-reverse; /* Stack the image below the text on smaller screens */
        text-align: left;
    }

    .about-sections .col-md-6 {
        margin-bottom: 20px;
    }

    .about-sections h1 {
        font-size: 2rem; /* Adjust font size for smaller screens */
        text-align: left;
    }

    .about-sections p {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }
}



/* Custom styling for rooms */

/* Improve performance for transforms and box-shadows */
.room-card {
    will-change: transform;
}

/* Optimize for hover effect */
.room-card:hover {
    transform: translateY(-5px); /* Slightly lift the card */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

/* Use will-change to optimize transition performance */
.room-card img {
    will-change: transform;
}

.room-card {
    /* Flexbox ensures each card takes 1/3 of the row */
    flex: 1 1 calc(33.33% - 20px); 
    margin: 10px; /* Equal margins for all cards */
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    background-color: #FFD700;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover */
}

/* Hover Effect on Room Card */
.room-card:hover {
    transform: translateY(-5px); /* Slightly lift the card on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow effect */
}

/* Card image styling */
.room-card img {
    height: 200px;
    object-fit: cover;
    padding: 10px;
    width: 100%; /* Ensure the image fills the card width */
}

/* Room card content */
.room-card .card-body {
    padding: 15px;
}

/* Card title styling */
.room-card .card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Room info styling */
.room-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.room-info .guests,
.room-info .price {
    font-weight: bold;
   
}

.room-info i {
    color:#125B62 ;
}
.bro h1{
    font-size: 20px;
    
}
.bro p{
    font-size: 45px;
   
}

/* Button styling */
.btn-deluxe,
.btn-luxury,
.btn-family {
    background-color: #5C7D7E;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    font-size: 12px;
    border-radius: 5px;
    text-align: center;
    display: block;
    width: 80%; /* Adjust button width */
    max-width: 150px; /* Limit the maximum width of the button */
    margin-left: auto;
    transition: all 0.3s ease;
}

/* Hover effect on button */
.btn-deluxe:hover,
.btn-luxury:hover,
.btn-family:hover {
    background-color: #125B62; /* Darker shade on hover */
    color: #ffffff;
}
.btn-family i {
    margin-left: 8px; /* Adjust the value as needed for spacing */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    /* For smaller screens, make each card take the full width */
    .room-card {
        flex: 1 1 100%; /* Full width for small screens */
    }

    /* Ensure buttons are full width on small screens */
    .btn-deluxe,
    .btn-luxury,
    .btn-family {
        max-width: none; /* Remove max-width for buttons on mobile */
        width: 100%; /* Ensure full width for buttons */
    }
}

/* Ensure proper alignment for larger screens */
@media (min-width: 768px) {
    .room-card {
        flex: 1 1 calc(33.33% - 20px); /* 3 cards per row */
    }
}
@media (prefers-reduced-motion: reduce) {
    /* Disable animations for users who prefer reduced motion */
    .room-card {
        transition: none;
    }
}


/*amenities*/
.banners {
    position: relative;
    height: 60vh; /* Set height to 80vh */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-image: url('img1.jpg'); /* Add image URL here */
}

/* Pseudo-element for background image opacity */
.banners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0); /* No color for the image */
    background-image: inherit; /* Inherit background image */
    background-size: cover;
    background-position: center;
    opacity: 0.6; /* Reduce image opacity to 60% */
    z-index: 1; /* Make sure image is below the overlay */
}

/* Solid black background */
.banners-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Solid black background with 100% opacity */
    z-index: 2; /* Make sure overlay is above the image */
}

/* Text content centered in the middle */
.banners-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff; /* White text for contrast */
    z-index: 3; /* Make sure content is above the overlay */
}

/* Heading styling */
.banners h1 {
    font-size: 3rem;
    font-weight: bold;
 
}

/* Subheading styling */
.banners p {
    font-size: 1.5rem;
}

@media screen and (max-width: 480px) {
    .banners h1 {
        font-size: 2rem; /* Further reduced font size for very small screens */
    }
    .banners p {
        font-size: 1rem; /* Further reduced font size for very small screens */
        
    }
}


/*amenities*/
.bannert {
    position: relative;
    height: 55vh; /* Set height to 80vh */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-image: url('img1.jpg'); /* Add image URL here */
}

/* Pseudo-element for background image opacity */
.bannert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0); /* No color for the image */
    background-image: inherit; /* Inherit background image */
    background-size: cover;
    background-position: center;
    opacity: 0.6; /* Reduce image opacity to 60% */
    z-index: 1; /* Make sure image is below the overlay */
}

/* Solid black background */
.bannert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Solid black background with 100% opacity */
    z-index: 2; /* Make sure overlay is above the image */
}

/* Text content centered in the middle */
.bannert-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff; /* White text for contrast */
    z-index: 3; /* Make sure content is above the overlay */
}

/* Heading styling */
.bannert h1 {
    font-size: 5rem;
    font-weight: bold;
 
}




/* General styling for cards */
.cool {
    border: 1px solid #ddd;
    background-color: #FFD700;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    margin-top: -100px;
    z-index: 4; /* Ensure cards are above the banner */
    position: relative; /* Ensure proper stacking context */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.cool:hover {
    transform: translateY(-10px); /* Slightly lift the element */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19); /* Add a stronger shadow */
    background-color: #4a6b64; /* Slightly darker shade on hover */
}

  .card-body {
    padding: 15px;
  }
  
  /* Icon styling */
  .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #164F53; /* Change icon color as needed */
  }
  .icon:hover {
   color:#000000;
}

  
  /* Card title styling */
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* Card text styling */
  .card-text {
    font-size: 1rem;
    color: #000000;
  }
  .cool:hover {
    transform: translateY(-10px); /* Slightly lift the element */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19); /* Add a stronger shadow */
    background-color: #4a6b64; /* Slightly darker shade on hover */
}

.cool:hover .icon {
    color: #FFD700; /* Change the icon color on hover */
}

.cool:hover .card-title {
    color: #FFFFFF; /* Change the title color on hover */
}

.cool:hover .card-text {
    color: #E0E0E0; /* Change the text color on hover */
}

  
  
  /* Responsive layout */
  @media (max-width: 768px) {
    .col-sm-4 {
      margin-bottom: 20px;
    }
    .cool{
        margin-top: 10px;
    }
    .banners{
        margin-bottom: 30px;
    }

  }
  



/* Attraction Card Styling */
/* Attraction Card Styling */
.attraction-card {
    max-width: 100%;
    margin: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative; /* For positioning the icon */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added smooth transition */
}

/* Hover Effect on Attraction Card */
.attraction-card:hover {
    transform: translateY(-5px); /* Slightly lift the card */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow effect */
}

.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.8; /* Slightly decrease opacity */
    transition: opacity 0.3s ease;
}

/* Hover Effect on Image */
.attraction-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card img {
    width: 100%;

    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.attraction-card:hover img {
    opacity: 1;
}

.btn-explores {
    display: block;

    background-color: #5C7D7E;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-explores:hover {
    background-color: #5C7D7E;
}
.jos{
    font-size: 18px;
}
.jose{
    font-size: 30px;
    color:#F74102;
}

/*cta*/
.bros {
    background-color: #5C7D7E;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .bros:hover {
    background-color: #0e474d;
    color: #000000;
  }
  
/*footer*/
/* Footer Styling */
/* General Footer Styling */
.footer {
    background-color: #ffffff;
    color: #333333;
    padding: 40px 20px; /* Added padding for mobile view */
    font-family: 'Arial', sans-serif;
    box-shadow: 0px -3px 8px rgba(0, 0, 0, 0.05);
}

/* Footer Container */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Columns (Flexbox for layout) */
.footer .row {
    display: flex;
    flex-wrap: wrap; /* Ensures columns wrap on smaller screens */
    gap: 20px; /* Space between columns */
    justify-content: space-between;
}

/* Individual Footer Column Styling */
.footer .col-md-3 {
    flex: 1 1 calc(25% - 20px); /* 4 columns on larger screens */
    min-width: 200px; /* Ensure columns shrink appropriately */
    box-sizing: border-box;
}

/* Responsive Columns (Stack on mobile screens) */
@media (max-width: 768px) {
    .footer .col-md-3 {
        flex: 1 1 100%; /* Full width for each column */
        text-align: center; /* Center-align content */
    }

    .footer-description,
    .footer-address {
        text-align: center; /* Override justify-align for mobile */
    }
}

/* Logo Section */
.footer-logo-img {
    width: 140px;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease-in-out;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

/* Description Section */
.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    text-align: justify;
}

/* Footer Headings */
.footer-heading {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FF6F61;
    letter-spacing: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #FF6F61;
    padding-left: 5px;
}

/* Address Section */
.footer-address {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    font-size: 12px;
    color: #333333;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom a {
    color: #FF6F61;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    color: #FF8C00;
}




/*banner2*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');

.white {
    position: relative; /* Make the container a positioning context */
    background-image: url('img20.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Open Sans', sans-serif; /* Updated font for the banner */
}
.white2 {
    position: relative; /* Make the container a positioning context */
    background-image: url("img21.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Open Sans', sans-serif; /* Updated font for the banner */
}

.white3 {
    position: relative; /* Make the container a positioning context */
    background-image: url("image28.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Open Sans', sans-serif; /* Updated font for the banner */
}
.white2::before {
    content: ''; /* Create a pseudo-element */
    position: absolute; /* Position it absolutely */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2); /* Black with 50% opacity */
    z-index: 1; /* Ensure it sits above the background image */
}


.black {
    max-width: 800px; /* Adjust max-width as needed */
    padding: 0 20px; /* Add some padding */
    position: relative; /* Ensure content sits above the overlay */
    z-index: 2; /* Ensure it sits above the overlay */
}

 .black h1 {
    font-size: 3rem; /* Adjust font size if necessary */
    font-weight: 700; /* Bold font weight */
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif; /* Updated font for the heading */
}

.black p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif; /* Updated font for paragraphs */
}



/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem; /* Adjust font size for tablets */
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem; /* Adjust font size for mobile */
    }

    p {
        font-size: 0.9rem;
    }
}

/* General styling for the container and section */
/* General styling for the container and section */
.service {
    background-color: #f9f9f9; /* Light background for the section */
    padding: 50px 0; /* Top and bottom padding */
}

.service-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Styling for the individual cards */
.service-card {
    border-radius: 10px; /* Rounded corners for the card */
    overflow: hidden; /* Prevents image overflow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for a modern look */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effect */
}

.service-card:hover {
    transform: translateY(-10px); /* Slight raise on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

/* Image styling inside the card */
.service-card-img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Makes sure the image covers the area without stretching */
}

/* Card body styling */
.service-card-body {
    padding: 20px;
    background-color: white;
}

.service-card-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Grid and spacing adjustments for responsive layout */
.service-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Ensures the cards wrap on smaller screens */
}

.service-col {
    flex: 0 0 32%; /* Three cards per row on large screens */
    margin-bottom: 20px;
}

/* Responsive adjustments */

/* For screens larger than 768px, display 3 cards per row */
@media (min-width: 768px) {
    .service-col {
        flex: 0 0 32%; /* Three cards per row */
    }
}

/* For screens between 576px and 767px, display 2 cards per row */
@media (min-width: 576px) and (max-width: 767px) {
    .service-col {
        flex: 0 0 48%; /* Two cards per row */
    }
}

/* For screens smaller than 576px, display 1 card per row */
@media (max-width: 575px) {
    .service-col {
        flex: 0 0 100%; /* One card per row */
    }
}

/* Additional styling for the card text and titles */
.service-card-body .service-card-title {
    font-size: 1.25rem;
}

.service-card-body .service-card-text {
    font-size: 0.9rem;
}



/* testinomial Section Styling */
.testimonial-section {
    background-color: #f8f9fa;
    padding: 60px 0;
  }
  

  /* Testimonial Box Styling */
  .review-column .testimonial-box {
    border: none;
    transition: transform 0.3s ease-in-out;
  }
  
  .review-column:hover .testimonial-box {
    transform: translateY(-10px); /* Add a subtle hover effect */
  }
  
  .testimonial-body {
    padding: 20px;
  }
  
  .testimonial-text {
    font-style: italic;
    color: #6c757d;
  }
  
  .reviewer-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #343a40;
  }
  
  .reviewer-type {
    font-size: 1rem;
    color: #868e96;
  }
  
  .review-image {
    border-radius: 50%; /* Make the visitor image round */
  }
  @media (max-width: 768px) {
    .review-column {
      margin-bottom: 40px;
    }
} 



/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-section .container {
    max-width: 1000px;
}

/* Heading Style */
.contact-section .section-heading {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

/* Image Style */
.contact-image {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
     
}

/* Form Styles */
.contact-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-group label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    color: #555;
    border: 1px solid #ddd;
    width: 100%;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #7A7199;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(122, 113, 153, 0.5);
}

.contact-form .form-control::placeholder {
    color: #aaa;
}

/* Button Styles */
.contact-form .btn-submit {
    background-color: #164F53;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
    background-color: #6b5c82;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .contact-section .container {
        padding: 15px;
    }

    .contact-image {
        max-height: 300px;
    }

    .contact-form {
        padding: 15px;
    }

    .contact-form .form-group {
        margin-bottom: 12px;
    }

    .contact-form .form-control {
        padding: 10px;
        font-size: 12px;
    }

    .contact-form .btn-submit {
        font-size: 12px;
        padding: 8px 18px;
    }
    .form-label {
        text-align: left;
    }
}


/* Styling for the Amenities Section */
.amenity-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 400px; /* Set fixed height for all cards */
    display: flex;
    flex-direction: column;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.amenity-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 200px; /* Fixed image height */
    object-fit: cover;
    width: 100%;
}

.amenity-card .card-bodies {
    padding: 20px;
    flex-grow: 1; /* Make sure the text takes up the remaining space */
}

.amenity-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.amenity-card .card-text {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

.bro h1 {
    font-size: 1.5rem;
    color: #333;
}

.bro p {
    font-size: 2rem;
    color: #777;
}

.card-bodies p {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 768px) {
    .amenity-card {
        margin-bottom: 30px;
    }
}

.digi {
    filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.2));
}

