/* Style for the Banner Section */
.banner {
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .banner .text-white {
    color: white;
  }
  
  .banner .btn {
    margin-top: 20px;
  }
  .text h1{
    font-size: 50px;
    color: rgb(255, 255, 255);
  }  
  .text p{
    font-size: 30px;
    color: rgb(255, 255, 255);
  }  
  /* Style for the Learn More Button */
.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: 40px; /* Rounded corners */
    text-transform: uppercase; /* Uppercase text */
    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 */
  }
  
  .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 */
  }
  
  .btn-custom:focus, .btn-custom:active {
    outline: none; /* Remove outline on focus/active */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Subtle shadow when focused */
  }
  .fixed-form {
    position: absolute;
    top: 50%;
    right: 20px; /* Form stays on the right */
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9); /* White background with slight transparency */
    padding: 20px; /* Reduced padding */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    width: 450px; /* Increased width for more space */
    z-index: 10; /* Ensure it's above the carousel */
    height: auto; /* Adjust height to fit content */
}

.fixed-form h3 {
    font-size: 24px; /* Larger heading */
    font-weight: bold;
    color: #164F53; /* Match button color */
    margin-bottom: 15px;
    text-align: center;
}

.fixed-form .form-group {
    margin-bottom: 15px; /* Reduced spacing between fields */
}

.fixed-form label {
    font-size: 16px; /* Larger label text */
    font-weight: bold;
    color: #333; /* Label color */
}

.fixed-form .form-control {
    width: 100%;
    padding: 10px; /* Adjusted padding for compact look */
    border: 1px solid #ccc;
    border-radius: 8px; /* Rounded inputs */
    font-size: 14px;
}

.fixed-form .btn-custom {
    width: 100%;
    margin-top: 10px;
    padding: 12px; /* Adjusted button padding */
    font-size: 16px;
}

.text {
    position: absolute;
    left: 20px; /* Align text to the left */
    bottom: 30%;
    text-align: left;
}

.text h1 {
    font-size: 50px;
    color: white;
    margin-bottom: 10px;
}

.text p {
    font-size: 24px;
    color: white;
}

.text .btn-custom {
    margin-top: 20px;
}
/* Additional styles for the new form layout */
/* Ensure guests fields (Adults and Children) appear side by side */

.guests-fields {
    display: flex;
    justify-content: space-between;
}

.guest-field {
    width: 48%; /* Give space for both fields */
}

.guest-field input {
    width: 100%; /* Full width for inputs */
}

/* Ensure check-in and check-out fields appear side by side */
.dates-fields {
    display: flex;
    justify-content: space-between;
}

.date-field {
    width: 48%; /* Each date input takes up 48% of the space */
    margin-right: 4%; /* Space between the fields */
}

.date-field input {
    width: 100%; /* Full width for inputs */
}

.date-field:last-child {
    margin-right: 0; /* Remove margin for the last field */
}

/* Adjust the message textarea for proper size */
.form-group textarea {
    width: 100%;
    height: 100px; /* Adjust height for the message box */
}

/* For devices with max-width of 576px (Extra small screens, phones) */
@media (max-width: 576px) {
    /* Stack check-in and check-out fields on mobile */
    .dates-fields {
        flex-direction: column;
    }

    .date-field {
        width: 100%;
        margin-bottom: 10px; /* Space between fields on mobile */
    }

    /* Stack the adults and children fields on mobile */
    .guests-fields {
        flex-direction: column;
    }

    .guest-field {
        width: 100%;
        margin-bottom: 10px; /* Space between fields on mobile */
    }

    /* Adjust the message textarea for mobile */
    .form-group textarea {
        height: 120px;
    }
}

/* Base styles for the form are already defined above */

/* For devices with max-width of 1200px (Large screens) */
@media (max-width: 1200px) {
    .fixed-form {
        width: 400px; /* Slightly reduce the width */
        padding: 15px; /* Adjust padding */
    }
}

/* For devices with max-width of 992px (Medium screens, tablets) */
@media (max-width: 992px) {
    .fixed-form {
        width: 350px; /* Further reduce width */
        right: 10px; /* Adjust position */
    }

    .fixed-form h3 {
        font-size: 20px; /* Slightly smaller heading */
    }

    .fixed-form .form-control {
        font-size: 13px; /* Reduce font size for inputs */
    }

    .fixed-form .btn-custom {
        font-size: 14px; /* Reduce button size */
        padding: 10px;
    }
}

/* For devices with max-width of 768px (Small screens, portrait tablets) */
@media (max-width: 768px) {
    .fixed-form {
        width: 300px; /* Narrower width */
        right: 5px; /* Bring closer to the edge */
    }

    .fixed-form h3 {
        font-size: 18px; /* Smaller heading */
    }

    .fixed-form .form-control {
        font-size: 12px; /* Smaller font for inputs */
        padding: 8px;
    }

    .fixed-form .btn-custom {
        font-size: 13px;
        padding: 8px;
    }
}

/* Base styles for the form are already defined above */
/* Hide the form on mobile screens */
@media (max-width: 576px) {
    .fixed-form {
        display: none; /* Hide the form on mobile */
    }
}



/* Light Gradient Navbar */
.bg-light-gradient {
    background: linear-gradient(to right, #ffffff, #eeeeee,#f5f5f5);
    padding: 18px 22px;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

/* Brand Logo */
.navbar-brand img {
    max-height: 70px;
    width: auto;
    transition: transform 0.3s ease-in-out;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #000000;
    width: 0;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -3px;
    left: 0;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #164F53;
    font-weight: bold;
    border-bottom: 2px solid #164F53;
}

/* Call-to-Action Button */
.btn-cta {
    background-color: #164F53;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background-color: #164F53;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Toggler Icon */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
        margin-top: 10px;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .btn-cta {
        margin-top: 10px;
        width: 100%;
    }
}




/*/* Form Container */
/* Form Container */
/* Form Container */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #ffffff !important;
    height: 80vh;
    margin-top: 150px;
    margin-bottom: 130px;
}

/* Form Styling */
.booking-form {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px;
}

/* Label Styling */
.form-group label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}

/* Input and Textarea Styling */
.form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #164F53;
    outline: none;
}

/* People Fields and Stay Dates Fields (side-by-side) */
.people-fields, .stay-dates {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.people-field, .stay-date {
    flex: 1;
}

/* Message Textarea */
.form-control#special-message {
    height: 120px;
    resize: vertical;
}

/* Submit Button */
.submit-btn {
    background-color: #164F53;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #164F53;
}

/* Default - Hide the form for desktop */
.form-container {
    display: none;
}

/* Responsive adjustments - Display form only on mobile */
@media (max-width: 768px) {
    .form-container {
        display: flex;
    }

    .people-fields, .stay-dates {
        flex-direction: column;
    }

    .people-field, .stay-date {
        flex: none;
        width: 100%;
    }
}




/*About*/
/* About Section */
.about-section {
    padding: 40px 0; /* Add padding for top and bottom */

  }
  
  .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 */
    font-weight: bold;
    color: #333; /* 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: 50px; /* Rounded corners */
    text-transform: uppercase; /* Uppercase text */
    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: #ffffff; /* 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 */
    font-weight: bold;
    color: #333; /* Dark color for the heading */
    margin-bottom: 15px;
  }
  
  .about-sections p {
    font-size: 1rem; /* Slightly larger text for description */
    color: #555; /* 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: 50px; /* Rounded corners */
    text-transform: uppercase; /* Uppercase text */
    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 */
  }
  
  @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 */
    }
}



  /*rooms*/
/* Room Card Styling */
.room-card {
    flex: 1 1 calc(23% - 20px); /* Ensures equal width and spacing */
    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: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added 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 */
}

.room-card img {
    height: 200px;
    object-fit: cover;
}

.room-card .card-body {
    padding: 15px;
}

.room-card .card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.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 .price {
    color: #333;
}

/* Button Styling */
.btn-deluxe,
.btn-luxury,
.btn-family,
.btn-classic {
    background-color: #164F53;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 5px;
    text-transform: uppercase;
    text-align: center; /* Align to the right */
    display: block; /* Ensure block alignment */
    width: 80%; /* Full width for precise alignment */
    max-width: 150px;
    margin-left: auto; /* Push button to the right */
    transition: all 0.3s ease;
}

/* Hover Effect on Button */
.btn-deluxe:hover,
.btn-luxury:hover,
.btn-family:hover,
.btn-classic:hover {
    background-color: #164F53;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .room-card {
        flex: 1 1 100%; /* Full width for small screens */
    }

    .btn-deluxe,
    .btn-luxury,
    .btn-family,
    .btn-classic {
        max-width: none; /* Remove max-width for buttons on mobile */
        width: 100%; /* Ensure full width for buttons on small screens */
    }
}


  /*amenities*/
 /* Amenities Section Styles */
.amenities-card {
    background-color: #F2F0EB;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 90%; /* Decrease card width */
    margin: 0 auto; /* Center the cards */
}

.amenities-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.amenities-card .icon {
    font-size: 40px;
    color: #164F53; /* Matching primary color */
}

.amenities-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

/* Add row gap between rows */
.row.g-3 {
    row-gap: 30px; /* Increase row gap */
}


/* Updated button styles */
.btn-outline-dark {
    color: #fff;
    background-color: #164F53; /* Button background */
    border: 2px solid #164F53;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px; /* Rounded corners */
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    color: #164F53;
    background-color: #fff;
    border-color: #164F53;
}
@media (max-width: 767px) {
    .boss h2 {
        text-align: left;
    }
}


/* Attraction Card Styling */
/* Attraction Card Styling */
.attraction-card {
    flex: 1 1 calc(23% - 20px); /* Ensures equal width and spacing */
    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: 300px;
    object-fit: cover;
    opacity: 0.8; /* Slightly decrease opacity */
    transition: opacity 0.3s ease;
}

/* Hover Effect on Image */
.attraction-card:hover img {
    opacity: 1; /* Increase opacity on hover for a clearer image */
}

.attraction-card .top-right-icon {
    font-size: 24px;
    color: #ffffff;
    right: 10px;
    top: 10px;
    position: absolute;
}

.attraction-card .card-body {
    padding: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.attraction-card .attraction-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .attraction-card {
        flex: 1 1 100%; /* Full width for small screens */
    }
}

/* Button Styling */
.btn-view-more {
    background-color: #164F53;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-view-more:hover {
    background-color: #5a5175;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .btn-view-more {
        font-size: 14px;
        padding: 8px 20px;
    }
}



/* Testimonial Card Styling */
/* Testimonial Card Styling */
.testimonial-card {
    background-color: #ffffff;
    padding: 40px 20px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
    height: 350px; /* Increased height for the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transition for hover effect */
}

/* Hover Effect on Testimonial Card */
.testimonial-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.testimonial-text {
    padding-top: 60px; /* Ensure space for the rounded image */
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

/* Guest Image Styling */
.guest-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 300px; /* Half outside the card */
    left: 80%;
    transform: translateX(-50%);
    border: 5px solid #fff; /* Adds a border to make it stand out */
}

/* Additional Guest Image Styling */
.guest-images {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: -30px; /* Half outside the card */
    left: 80%;
    transform: translateX(-50%);
    border: 5px solid #fff; /* Adds a border to make it stand out */
}

/* Button Styling */
.btn-view-more {
    color: #000;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease; /* Smooth transition for hover */
}

/* Hover Effect on Button */
.btn-view-more:hover {
    color: #fff;
    background-color: #164F53;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }

    .guest-image {
        width: 60px;
        height: 60px;
    }
    .guest-images {
        width: 60px;
        height: 60px;
        top: 300px; /* Half outside the card */
        left: 80%;
    }

    .btn-view-more {
        font-size: 14px;
        padding: 8px 15px;
    }
}

/*footer*/
/* Footer Styling */
.footer {
    background-color: #164F53; /* Dark background */
    color: #fff;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
    position: relative;
    z-index: 1;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-img {
    width: 250px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #ecf0f1;
    text-align: justify;
    margin-bottom: 15px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #ecf0f1;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.footer-headings {
    font-size: 12px;
    font-weight: 600;
    color: #ecf0f1;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}


.footer-links {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ecf0f1;
    font-size: 14px;
    display: block;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f3b50b; /* Golden hover effect */
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
    color: #ecf0f1;
    margin-bottom: 15px;
}

.footer-social-media {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.footer-social-icon {
    margin: 0 15px;
    font-size: 15px;
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: #f3b50b; /* Golden hover effect */
}

.footer-dark-line {
    background-color: #ffffff !important; /* Dark line color */
    height: 2px;
    margin: 30px 0;
}

.footer-bottom {
    margin-top: 30px;
}

.footer-bottom-text {
    font-size: 13px;
    color: #95a5a6;
    margin-top: 15px;
}

.footer-bottom-text a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-bottom-text a:hover {
    color: #f3b50b; /* Hover effect */
}

@media (max-width: 1200px) {
    .footer-logo-img {
        width: 140px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-address {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer .row {
        text-align: center;
    }

    .footer-logo-img {
        width: 200px; /* Smaller logo */
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-links {
        text-align: center;
        margin-top: 10px;
    }

    .footer-address {
        text-align: center;
    }
}



/*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;
}





/* 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: center;
}

/* 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: 10px;
    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;
}
/* Default styling (for larger screens) */
.col-md-6 iframe {
    width: 450px;
    height: 550px;
    border: #000;
}

/* Tablet (between 600px and 992px) */
@media (max-width: 992px) {
    .col-md-6 iframe {
        width: 100%;
        height: 450px;
    }
}

/* Mobile (between 480px and 600px) */
@media (max-width: 600px) {
    .col-md-6 iframe {
        width: 100%;
        height: 300px;
        margin-bottom: 25px;
    }
}

/* Small screens (below 480px) */
@media (max-width: 480px) {
    .col-md-6 iframe {
        width: 100%;
        height: 250px;
    }
}


/* Responsive Styles */
@media (max-width: 767px) {
    .contact-section .container {
        padding: 15px;
    }

    .contact-image {
        max-height: 350px;
    }

    .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;
    }
    .map{
        max-height: 300px;
    }
}



/*rooms*/
/* General Section Styling */
.room-section-bg {
    background-color: #f7f6f2;
    padding: 50px 0;
}

.room-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
}

.room-subheading {
    font-size: 1rem;
    color: #777777;
}

/* Room Row Styling */
.room-row {
    
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.room-row:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.room-image {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* Text and Details */
.room-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 10px;
}

.room-description {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 15px;
}

.room-info {
    font-size: 0.9rem;
    color: #666666;
}

.room-icon {
    font-size: 1rem;
    color: #164F53;
}

.room-price {
    font-size: 1rem;
    font-weight: 600;
    color: #164F53;
}

/* Button Styling */
.room-btn {
    background-color:#164F53;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.room-btn:hover {
    background-color: #ffffff;
    color: #ff8c00;
    border: 2px solid #164F53;
}

@media (max-width: 576px) {
    .room-btn {
        display: block; /* Makes the button block-level on mobile */
        width: 100%; /* Full width on mobile */
        padding: 15px 0; /* Adjust padding for better appearance */
    }
    .room-title {
        margin-top: 10px;
    }
}
@media (max-width: 767px) {
    .room-row{
        margin: 5px;
    }
    .room-title {
        font-size: 18px;
    }
    .room-description {
        font-size: 12px;
    }
}

/* Aligning Button to the Right */
.text-end {
    text-align: end;
}
