body, html {
    height: 100%;
    margin: 0;
    
}
.carousel-item {
    height: 100vh;
    background: no-repeat center center;
    background-size: cover;
    /* filter: brightness(60%); */
/*     
background-color: transparent;
background-image: linear-gradient(135deg, var(--e-global-color-astglobalcolor2) 0%, var(--e-global-color-astglobalcolor3) 100%);
opacity: 0.7;
transition: background 0.3s, border-radius 0.3s, opacity 0.3s */
}
.slider-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    
}



.btn-custom {
    background-color: purple;
    color: white;
    border: none;
}
.btn-custom:hover {
    background-color: white;
    color: purple;
}
.menu {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}


/* About us section*/ 

body {
    background-color: #f3e5f5; /* Light purple background */
}
.about-section {
    text-align: center;
    padding: 50px 20px;
}

.about-section h1 {
    font-size: 2.5rem;
    color: #6a1b9a; /* Dark purple for heading */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.about-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px; /* Limit the height of the image */
    border-radius: 10px;
    filter: brightness(70%);
}
.quote {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 1.5rem;
    color: #4a148c; /* Funky color for the quote */
    margin: 20px 0;
}
.description {
    color: #000000; /* Purple shade for description */
    font-size: 1.1rem;
    
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    line-height: 28px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-section h1 {
        font-size: 2rem;
    }
    .quote {
        font-size: 1.2rem;
    }
    .description {
        font-size: 1rem;
        
    }
}

@media (max-width: 576px) {
    .about-section h1 {
        font-size: 1.8rem;
    }
    .quote {
        font-size: 1rem;
    }
    .description {
        font-size: 0.9rem;
    }
}

/*  Amenties Section */
.amenties-section{
    background-color: #f3e5f5; /* Light purple background */
}


.amenties-section h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #6a1b9a; /* Dark purple for heading */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.amenties {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
    width: 100%;
}

@media ( max-width: 750px ) {
    .amenties {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        padding: 20px;
        width: 100%;  
    }
  }


.amenties-item {
    position: relative;
    overflow: hidden;
    height: 200px; /* Adjust height as needed */
}

.amenties-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image cover the tile */
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.amenties-item:hover .gallery-image {
    filter: grayscale(0%);
}

.amenties-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amenties-item:hover .amenties-overlay {
    opacity: 1;
}

.amenties-overlay a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
}

.amenties-title {
    position: absolute;
    bottom: 0; /* Dock to the bottom */
    left: 0; /* Align to the left */
    right: 0; /* Extend to the right */
    color: white;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    padding: 10px; /* Padding around text */
    font-size: 16px; /* Font size */
    text-align: center; /* Center text */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5); /* Optional: Shadow for depth */
}


.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0; /* Start with opacity 0 for fade effect */
    transition: opacity 0.5s ease; /* Transition effect */
}

.modal.fade-in {
    opacity: 1; /* Fade in to opacity 1 */
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.9s ease; /* Optional zoom effect */
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.hero-section {
    position: relative;
    height: 400px; /* Adjust height as needed */
    background-image: url('../images/hero-background.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates the scrolling effect */
    color: rgb(231, 209, 225); /* Text color */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* Center text */
}

h1 {
    font-size: 2.5em; /* Adjust as needed */
    margin: 0 0 20px; /* Space below the title */
}

p {
    font-size: 1.2em; /* Adjust as needed */
    margin: 0 0 30px; /* Space below the paragraph */
}

.button-container {
    display: flex;
    gap: 20px; /* Space between buttons */
}

.slider-button-container {
    display: flex;
    justify-content: center; /* Centers the items horizontally */
    align-items: center;
    gap: 20px; 
    z-index: 3;
}

.hero-section .btn {
    background-color: white; /* Button color */
    color: #301d53;
    padding: 10px 50px; /* Button padding */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em; /* Adjust as needed */
    transition: background-color 0.3s;
}

.hero-section .btn:hover {
    color: #e6c9f8; /* Change color on hover */
    background-color:#301d53;
}

.section-heading {
    margin-top:20px;
    font-size: 2.5rem;
    color: #6a1b9a; /* Dark purple for heading */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    text-align: center;
}



.package-tile {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    margin-bottom: 30px;
}
.package-tile:hover {
    transform: translateY(-5px);
}
.package-heading {
    background-color: black;
    color: white;
    padding: 15px;
    font-size: 1.5rem;
    text-align: center;
}
.package-image {
    width: 100%;
    height: auto;
}
.package-list {
    padding: 15px;
}
.package-item {
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
}

.package-item {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between the items */
    align-items: center; /* Center items vertically */
}

.package-details {
    flex-grow: 1; /* Allow the details to take up available space */
}

.package-price {
    text-align: right; /* Align the price text to the right */
    margin-left: 20px; /* Optional: add some space between details and price */
}

.package-item:last-child {
    border-bottom: none;
}

.package-list-inline {
    display: flex; /* Use Flexbox to align items in a row */
    justify-content: space-around; /* Distribute space evenly between items */
    padding: 0 20px 20px 20px; /* Add some padding around the list */
     /* Optional: add background color */
    border-radius: 10px; /* Optional: add rounded corners */
}

.package-item-inline {
    display: flex; /* Make each item a flex container */
    align-items: center; /* Center the icon and text vertically */
    padding: 10px 15px; /* Add some padding to each item */
    border: 1px solid #e0e0e0; /* Optional: add a border */
    border-radius: 5px; /* Optional: round corners for items */
    background-color: white; /* Optional: item background color */
    transition: transform 0.3s; /* Add a hover effect */
}

.package-item-inline i {
    margin-right: 8px; /* Space between icon and text */
}

.package-item-inline:hover {
    transform: scale(1.05); /* Slightly scale up on hover */
}





/* Gallery */
/* 
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
} */

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}


@media (max-width: 768px) {
    .category-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: stretch; /* Ensure buttons stretch to full width */
        padding-top:15px;
    }

    .category-button {
        width: 100%; /* Full width for buttons */
    }
}

.category-button.active {
   
    background-color: #6a1b9a; /* Highlight color */
    border-color: #4d1470; /* Darker border for active state */
    color: white; /* Change text color for visibility */
}
.category-button.active:hover {
    background-color: #e0e0e0;
    border-color: #999;
    color:#4d1470;
}


.category-button {
    background-color: white;
    border: 2px solid #ccc;
    margin: 0 10px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.category-button:hover {
    background-color: #e0e0e0;
    border-color: #999;
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.image-tile {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    height: 200px; /* Set a fixed height */
}

.image-tile img {
    width: 100%;
    height: 100%; /* Make images fill the height */
    object-fit: cover; /* Ensure images cover the tile without distortion */
    display: block;
}

/* 
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    opacity: 1;
    transition: opacity 0.5s ease;
}


.image-tile {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.image-tile img {
    width: 100%;
    height: auto;
    display: block;
}  */

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.image-tile:hover .image-overlay {
    opacity: 1;
}

.image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 10px;
}



/*testimonial */


.testimonial-section {
    position: relative;
    background-image: url('../images/testimonial.jpg'); /* Parallax image */
    background-attachment: fixed; /* Parallax effect */
    background-size: cover;
    background-position: center;
    height: 400px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    opacity: 0.6; 
    z-index: 1;
    /* Grayscale effect */
}

.testimonial-content {
    background: #9c00b1; /* Dark overlay for readability */
    /*background: rgba(0, 0, 0, 0.6);  Dark overlay for readability */
    padding: 20px;
    border-radius: 10px;
    max-width: 800px; /* Maximum width */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Optional shadow */
    opacity: 1; 
    z-index: 2;
}

.testimonial-text {
    font-size: 0.8em; /* Font size for the quote */
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    line-height: 28px;
    opacity: 1; 
}

.testimonial-author {
    margin-top: 20px; /* Space between quote and author */
}

.testimonial-author h4 {
    margin: 0;
    font-weight: bold;
}

.testimonial-author p {
    margin: 5px 0 0;
}

/* Responsive styles */
@media (max-width: 600px) {
    .testimonial-section {
        height: 300px; /* Smaller height for mobile */
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-text {
        font-size: 0.7em; /* Adjust font size for mobile */
        font-family: 'Open Sans', sans-serif;
        letter-spacing: 1px;
        line-height: 28px;
    }
        
    #GallerySection {
        padding-top:30px;
        padding-bottom:30px;
        background-color:#f5f5f5;
    }

}

#AboutUsSection {
    padding-top:50px;
    padding-bottom:50px;
}


#AmenitiesSection  {
    padding-top:50px;
    padding-bottom:50px;
}


#GallerySection {
    padding-top:50px;
    padding-bottom:50px;
    background-color:#f5f5f5;
}



#PackagesSection  {
    padding-top:50px;
    padding-bottom:50px;
}


#GalleryLightSliderSection
{
    padding-top:50px;
    padding-bottom:50px;
    background-color:#f5f5f5;
}



#ContactSection  {
    padding-top:50px;
    padding-bottom:50px;
}


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 32px;
    z-index: 1000;
    cursor: pointer;
    display: none;
    
  }
  .scroll-to-top i {
    border-radius: 32px;
    background-color: #6a1b9a;
    width: 60px;    
    padding: 20px;
    position: relative;
    color:#fff;
    padding-right: 20px;
}

/* footer */


footer {
    background: linear-gradient(to right, #4b0082, black);
    color: white;
    padding: 20px 10%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 300px; /* Ensures a minimum width */
}

h2 {
    color: #f8f8f8; /* Light Purple for the headings */
    margin-bottom: 10px;
}

.footer-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.map-container {
    width: 100%;
    overflow: hidden;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info div {
    display: flex;
    align-items: center;
    padding: 10px 0; /* Add padding for better spacing */
    position: relative; /* For pseudo-element positioning */
}

.contact-info div::after {
    content: ""; /* Creates the separator */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px; /* Height of the separator */
    background-color: #DA70D6; /* Color of the separator */
    margin: 0 10px; /* Adds space to the sides of the separator */
}
.contact-info-sep {
    content: ""; /* Creates the separator */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px; /* Height of the separator */
    background-color: #DA70D6; /* Color of the separator */
    margin: 0 10px; /* Adds space to the sides of the separator */
}

.contact-info i {
    margin-right: 10px;
    color: #DA70D6; /* Light Purple for icons */
}

.social-icons {
    align-items: center; /* Center aligns the icons */
    margin-top: 20px;
}

.social-icons a {
    color: #DA70D6; /* Light Purple for icons */
    margin-right: 20px;
    text-decoration: none;
    font-size: 30px;
    
}

.social-icons a:hover {
    color: #8A2BE2; /* Change color on hover */
}



/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }
}

.contact-info hr {
    border: none; /* Remove default border */
    height: 1px; /* Height of the separator */
    background-color: #DA70D6; /* Color of the separator */
    margin: 10px 0; /* Space around the separator */
}


.book-now-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* White text color */
    background-color: #4B0082; /* Dark purple background */
    border: 2px solid #4B0082; /* Purple border */
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

.book-now-button:hover {
    background-color: #3e006d; /* Darker purple on hover */
    transform: translateY(-3px); /* Slight lift on hover */
}

.book-now-button i {
    margin-right: 8px; /* Spacing between icon and text */
    font-size: 18px; /* Icon size */
}


/* Our Servicce New Section */


/* Section styling */
.our-services {
    text-align: center; /* Center text alignment */
    padding: 50px 20px; /* Padding for the section */
    background-color: #f3e5f5; /* White background for the section */
}

/* Main heading styling */
.our-services h1 {
    color: black; /* Black color for main heading */
    font-size: 2.5em; /* Font size for main heading */
    margin-bottom: 10px; /* Bottom margin */
}

/* Subtitle styling */
.our-services h2 {
    color: #9464B4; /* Light purple color for subtitle */
    font-size: 1.5em; /* Font size for subtitle */
    margin-bottom: 10px; /* Bottom margin */
}

/* Divider styling */
.our-services .divider {
    width: 60px; /* Width of the divider */
    height: 4px; /* Height of the divider */
    background-color: #9464B4; /* Light purple color for the divider */
    margin: 0 auto 20px auto; /* Centered margin */
}

/* Description paragraph styling */
.our-services p {
    color: #333; /* Dark grey color for paragraph text */
    max-width: 600px; /* Maximum width for paragraph */
    margin: 0 auto 40px auto; /* Centered margin */
}

/* Service tiles styling */
.service-tiles {
    margin-bottom: 30px; /* Space below tiles */
}

.service-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
}

.service-tile {
     flex: 1 1 200px; /* Responsive tile size */
    border: 2px solid transparent; /* Invisible border by default */
    border-bottom: 10px solid transparent; /* Border for the bottom */
    border-right: 1px solid #b9b9b9;
    border-radius: 5px;
    padding: 20px;
    background-color: #f9f9f9; /* Grey background */
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.service-tile h3{
    font-size: 1.4em;
}

.service-tile:hover {
    background-color: #f3e5f5; /* Change to white on hover */
    transform: scale(1.05);
    border-bottom: 10px solid #4B0082;
}

.service-tile.active {
    background-color: #f3e5f5;
    border-color: #9464B4; /* Purple border when active */
    border-bottom-color: #4B0082; /* Dark purple bottom border when active */
}

.service-tile i {
    color: black; /* Black icons */
    font-size: 40px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Service description styling */
.service-description {
    margin-top: 30px; /* Initially hidden */
}
.service-description-child-content {
    
    font-family: 'Open Sans', 'sans-serif';
    letter-spacing: 1px;
    line-height: 28px;
    text-align: left;
}
.service-description-child-image {
    display: flex;                    /* Use flex to center any content */
    justify-content: center;          /* Center content horizontally */
    align-items: center;              /* Center content vertically */
    margin: 20px auto;                /* Center the image with automatic left and right margins */
    width: 450px;                     /* Fixed width for the circle */
    height: 400px;                    /* Fixed height for the circle */
    border-radius: 50%;               /* Make the image circular */
    overflow: hidden;                 /* Hide any overflow outside the circle */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Add a subtle shadow for depth */
    position: relative;               /* Positioning for pseudo-elements */
    transition: transform 0.3s ease;  /* Smooth transition for hover effects */
}

.service-description-child-image img {
    width: 100%;                     /* Make the image take the full width of the container */
    height: 100%;                    /* Make the image take the full height of the container */
    object-fit: cover;               /* Ensure the image covers the area without distortion */
    transition: transform 0.3s ease; /* Smooth transition for scaling effect */
}

.service-description-child-image:hover img {
    transform: scale(1.1);           /* Slightly enlarge the image on hover */
}

.service-description-child-image::before {
    content: "";                      /* Empty content for the overlay effect */
    position: absolute;               /* Position it over the image */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);  /* Dark overlay for better visibility of text */
    opacity: 0;                       /* Initially hidden */
    transition: opacity 0.3s ease;   /* Smooth transition for overlay */
}

.service-description-child-image:hover::before {
    opacity: 1;                       /* Show overlay on hover */
}

.service-description-child-image:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Darker shadow on hover for emphasis */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .service-description-child-image {
        width: 300px;                /* Smaller width for smaller screens */
        height: 300px;               /* Smaller height for smaller screens */
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 600px) {
    .our-services h1 {
        font-size: 2em; /* Smaller font size on mobile */
    }

    .our-services h2 {
        font-size: 1.2em; /* Smaller subtitle on mobile */
    }

    .service-tiles {
        flex-direction: row; /* Single row */
        overflow-x: auto; /* Allow horizontal scrolling */
        white-space: nowrap; /* Prevent wrapping */
    }

    .service-tile {
        flex: 0 0 auto; /* Allow tiles to have fixed width */
        width: 150px; /* Set a fixed width for tiles */
        margin: 5px; /* Add some margin between tiles */
    }

    .service-tile i {
        font-size: 30px; /* Smaller icon on mobile */
    }

    p {
        font-size: 0.9em; /* Slightly smaller text */
    }

    .service-tile h3{
        font-size: 0.9em;
    }

}

/* Home Page Menu */

.header {
    background: linear-gradient(to right, #4B0082, black);
    color: white;
    padding: 10px 10px;
    position: relative;
    z-index: 1000;
    height: 80px;
}

.logo img {
    height: 60px; /* Adjust height as needed */
}

.navbar-toggler {
    border: none;
    background-color: transparent;
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Cpath stroke="white" stroke-width="3" d="M5 7h20M5 15h20M5 23h20" /%3E%3C/svg%3E');
}

.navbar-toggler.active .navbar-toggler-icon {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Cpath stroke="white" stroke-width="3" d="M5 7l20 20M5 27L25 7" /%3E%3C/svg%3E');
}

.mobile-menu {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    position: fixed; /* Fix to viewport */
    top: 0; /* Start from the top */
    left: 0; /* Align to the left */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    z-index: 999;
    transform: translateY(-100%); /* Start above the viewport */
    opacity: 0; /* Start invisible */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Animate both */
}

.mobile-menu.show {
    transform: translateY(0); /* Slide down into view */
    opacity: 1; /* Make visible */
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Use flex for center alignment */
    flex-direction: column; /* Stack vertically */
    align-items: center; /* Center align */
    justify-content: center; /* Center vertically */
    height: 100%; /* Full height */
}
.mobile-menu-list li {
    margin: 10px 0; /* Space between items */
    width: 100%; /* Ensure li takes full width */
}

.mobile-menu-list li a {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding: 15px; /* Add padding for spacing */
    font-size: 24px; /* Larger font for better visibility */
    color: #4B0082;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-menu-list li a:hover {
    background-color: #4B0082; /* Change to purple on hover */
    color: white; /* Change text color */
}



.star-rating {
    display: flex;
    font-size: 30px; /* Size of the stars */
    justify-content: right; /* Center horizontally */
    align-items: center; 
}

.star {
    color: gray; /* Default star color */
}

.star.filled {
    color: gold; /* Color for filled stars */
}

/* Contact us */

.form-col {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.form-col h2 {
    color: #6f42c1; /* Purple theme */
    margin-bottom: 20px;
}
.form-label {
    font-weight: bold;
}
.form-control {
    border-radius: 5px;
    margin-bottom: 15px;
}

.inquiry-card {
    border: 1px solid lightpurple;
    border-radius: 0.5rem;
}
.inquiry-card-header {
    background-color: purple;
    color: white;
    padding:10px;
     border-radius: 0.5rem; 
}
.inquiry-rounded-textbox {
    border-radius: 20px;
}
.inquiry-image-container {
    border: 5px solid lightpurple; /* Border around the image */
    border-radius: 10rem; /* Rounded corners */
    height: 420px; /* Set a specific height */
    width: 100%; /* Full width */
    display: flex; /* Flexbox for vertical centering */
   
    box-sizing: border-box; /* Include border in the element's total width and height */
}

.inquiry-image-list img {
    max-width: 100%; /* Scale to fit width */
    max-height: 100%; /* Scale to fit height */
    object-fit: cover; /* Maintain aspect ratio */
    transition: transform 0.5s ease; /* Transition for hover effect */
    border-radius: 10px;
}
.inquiry-image-container img {
    max-width: 100%; /* Scale to fit width */
    max-height: 100%; /* Scale to fit height */
    object-fit: cover; /* Maintain aspect ratio */
    transition: transform 0.5s ease; /* Transition for hover effect */
    border-radius: 10px;
}

.inquiry-image-container:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}
.inquiry-full-height {
    height: 100%; /* Ensure full height for columns */
}
.inquiry-row{
    border: 5px solid lightpurple !important;border-radius: 0.5rem; 
}



    /* Top Products Slider  */
    .light-slider {
        margin: 0 auto;
        padding: 0;
        width: 80%;
    }
    .light-slider img {
        width: 100%;
        height: 200px; /* Fixed height for images to ensure uniform size */
        object-fit: scale-down; /* Ensure images cover the area without stretching */
    }
    .light-slider li {
        padding: 5px; /* Ensure images cover the area without stretching */
    }
    
    .product-item {
        position: relative;
        background-color: #fff; /* White background for items */
        border: 1px solid #ddd; /* Light border */
        border-radius: 8px; /* Rounded corners */
        text-align: center;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for 3D effect */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
       
    }
    .product-item:hover {
        transform: scale(1.05); /* Slight zoom effect */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    }
    .product-item h3 {
        margin: 10px 0;
        font-size: 1.2em;
        color: #4a4a4a; /* Darker text color */
    }
    .product-item p {
        margin: 5px 0;
        font-size: 1.1em;
        color: #6a6a6a; /* Slightly lighter text color */
    }
    .product-item button {
        background-color: #fae6c4; /* Coffee color */
        color: #7c2c0c;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 4px;
        font-size: 1em;
        transition: background-color 0.3s ease;
    }
    .product-item button:hover {
        background-color: #ec942a; /* Darker coffee color on hover */
    }