* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

a{
    text-decoration: none !important;
}

/* Topbar start */
/* Topbar start */
.top-bar {
    height: 28px;
    background: linear-gradient(to bottom, #eacf91, rgb(216, 214, 160)); 
    overflow: hidden;
    position: relative;
    width: 100%;
}

.sliding-container {
    display: flex;
    position: absolute;
    width: 200%;
    height: 100%;
}

.sliding-text {
    color: rgb(0, 0, 0);
    white-space: nowrap;
    line-height: 32px;
    padding: 0 20px;
    animation: slide 20s linear infinite;
    width: 50%;
    font-size: 14px; /* Base font size */
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Mobile optimization */
@media screen and (max-width: 768px) {
    .sliding-text {
        animation: mobileSlide 10s linear infinite; /* Adjusted duration for smoothness */
        font-size: 12px;
        padding: 0 5px;
    }

    .sliding-container {
        width: 340%; /* Keep container size relative to three text widths */
    }

    @keyframes mobileSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%); /* Translate by two full text widths */
        }
    }
}
/* Topbar end */
/* Topbar end */


/* carousel start */
/* carousel start */
.carousel {
    height: 100vh;
}

.carousel,
.carousel-item {
    /* min-height: 65vh; */
    height: auto;
}

.carousel-control-next, 
.carousel-control-prev {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    height: 50px !important;
    padding: 0;
    background: white !important;
    border: 0;
    opacity: 0.8;
    border-radius: 5px;
    opacity: 1 !important; 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    filter: invert(1) grayscale(100);
    width: 25px !important;
    height: 25px !important;
}

.carousel-control-next:hover, 
.carousel-control-prev:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: 20px;
}

/* Base styles for large screens (laptop and larger devices) */
body {
    font-family: Arial, sans-serif;
}

h1, p {
    text-align: left;
    font-weight: normal;
}

h1 {
    font-size: 2rem;
}

h4 {
    margin-top: 20px;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Container padding for large screens */
.ms5 {
    margin-left: 1rem;
}

.px5 {
    padding-left: 3rem;
    padding-right: 3rem;
}

/* Links - making sure they are styled well on all devices */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Media Queries for responsive behavior */

/* Tablet View */
@media (max-width: 768px) {
    .ms5 {
        margin-left: 1rem;
    }

    .px5 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    a {
        font-size: 0.95rem;
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .ms5 {
        margin-left: 0rem;
    }

    .px5 {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    h1 {
        font-size: 1.5rem;
        padding: 1rem 0;
    }

    p {
        font-size: 0.9rem;
    }

    a {
        font-size: 0.85rem;
    }

    /* Ensure links don't get too wide */
    a {
        word-wrap: break-word;
    }
}



/*  */
/* Base styles for larger screens (laptop and above) */
body {
    font-family: Arial, sans-serif;
}

h1, h4 {
    font-weight: bold;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
}

h4 {
    font-size: 1.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}
.ms5{
    margin-left: 5rem;
    
}

a:hover {
    text-decoration: underline;
}

/* Margin and padding styles for large screens */
.ms5 {
    margin-left: 3rem;
}

.p5 {
    padding: 3rem;
}

/* Media Queries for smaller screens */

/* Tablet View */
@media (max-width: 768px) {
    .ms5 {
        margin-left: 1rem;
    }

    .p5 {
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }

    a {
        font-size: 1rem;
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .ms2 {
        margin-left: 0rem;
        margin-right: 0rem;
    }

    .p5 {
        padding: 0rem;
    }

    h1 {
        font-size: 1.5rem;
        padding: 1rem 0;
    }

    h4 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    a {
        font-size: 0.9rem;
        word-wrap: break-word; /* Prevent long links from overflowing */
    }

    /* Ensure links break appropriately */
    a {
        display: inline-block;
        word-wrap: break-word;
    }
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {

    /* Style the <a> tags specifically for mobile */
    a {
        font-size: 0.9rem; /* Reduce font size for better mobile readability */
        display: inline-block; /* Ensure links are treated as inline-block */
        word-wrap: break-word; /* Allow long links to wrap and not overflow */
        word-break: break-word; /* Prevent links from overflowing the container */
        white-space: normal; /* Ensure links do not stretch out in a single line */
    }

    /* Ensure that links within paragraphs are also properly handled */
    p a {
        display: block; /* Make the links block-level to avoid wrapping issues */
        margin-bottom: 10px; /* Add space between links */
    }
}










.carousel-indicators button {
    width: 10px !important; /* Adjust the size as needed */
    height: 10px !important;
    border-radius: 50%; /* Makes it round */
    background-color: rgba(255, 255, 255, 0.5); /* Indicator color */
    border: none;
}

.carousel-indicators .active {
    background-color: white; /* Active indicator color */
}

.desktop-image {
    display: block;
}

/* Hide mobile images by default */
.mobile-image {
    display: none;
}

@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }
    
    .mobile-image {
        display: block;
        height: 100%;
        object-fit: contain; /* Changed from cover to contain */
    }    
    /* .carousel, 
    .carousel-item {
        height: 75vh;
    } */ 
    .carousel-control-next, 
    .carousel-control-prev {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px !important;
    height: 25px !important;
    padding: 0;
    background: white !important;
    border: 0;
    opacity: 0.8;
    border-radius: 5px;

    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: transparent;
        filter: invert(1) grayscale(100);
        width: 15px !important;
        height: 15px !important;
    }
    .carousel-indicators button {
        width: 6px !important; /* Adjust the size as needed */
        height: 6px !important;
        border-radius: 50%; /* Makes it round */
        margin-right: 1px !important;
        background-color: rgba(255, 255, 255, 0.5); /* Indicator color */
        border: none;
    }
}

/* Show mobile images only below 498px screen width */
@media screen and (max-width: 498px) {
    .mobile-image {
        display: block;
    }

    /* Hide desktop images on small screens */
    .desktop-image {
        display: none;
    }
    .carousel-item img {
        width: 100%;
        max-height: 75vh; /* Prevents image overflow */
        object-fit: contain;
    }
}
/* carousel end */
/* carousel end */

/* WhatsApp Icon Styling */
.whatsapp-icon {
    position: fixed;
    top: 45%;
    right: 40px;
    width: 37px; /* Set width */
    height: 37px; /* Set height */
    background-color: #ffffff; /* WhatsApp green color */
    color: #de154c;
    border-radius: 30%; /* Ensure it's round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    z-index: 9999;
    text-decoration: none;
    animation: zoomInOut 2.5s infinite ease-in-out; /* ✅ Zoom animation */
    border: 1px solid #de154c;
    transition: all 0.4s ease,;
}
.user-icon {
    position: fixed;
    top: 38%;
    right: 40px;
    width: 37px; /* Set width */
    height: 37px; /* Set height */
    background-color: #ffffff; /* WhatsApp green color */
    color: #de154c;
    border-radius: 30%; /* Ensure it's round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    z-index: 9999;
    /* animation: zoomInOut 2.5s infinite ease-in-out;  */
    border: 1px solid #de154c;
}
.user-icon:hover {
    background-color: #de154c;
    color: white;
    transform: scale(1.1); /* ✅ Slight increase in size */
}

.whatsapp-icon:hover {
    background-color: #de154c; /* Darker WhatsApp green color */
    color: white;
    
}

/* Blink Animation */
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Zoom in */
    }
    100% {
        transform: scale(1); /* Zoom out */
    }
}

@media (max-width: 991px) {
    .whatsapp-icon {
        position: fixed;
        top: 49%;
        right: 20px;
        width: 32px; /* Set width */
        height: 32px; /* Set height */
        background-color: #ffffff; /* WhatsApp green color */
        color: #de154c;
        font-size: 17px;
        z-index: 9999;
    }
}
@media (max-width: 991px) {
    .user-icon {
        position: fixed;
        top: 43%;
        right: 20px;
        width: 32px; /* Set width */
        height: 32px; /* Set height */
        background-color: #ffffff; /* WhatsApp green color */
        color: #de154c;
        font-size: 17px;
        z-index: 9999;
    }
}

/*  modal box */
/* Reducing padding around the modal content */
.modal-content {
    padding: 0; /* Remove default padding */
}

/* Ensure the image takes the full width of the modal */
.modal-body {
    padding: 0 !important; /* Remove any extra padding */
}

.modal-body img {
    width: 100%; /* Make the image take full width */
    height: auto; /* Maintain the aspect ratio of the image */
}
/*  modal box */


/* Navbar styles */
/* Navbar styles */
.navbar {
    padding: 0.2rem !important;
    border-bottom: 1px solid #eee;
    background-color: #de154c; /* Change navbar background color */
}

/* Logo styles */
.navbar-brand img {
    max-height: 80px;
    width: auto;
}

.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(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-toggler {
    border: none !important; /* Removes the border */
    color: white !important; /* Ensures the text color is white */
    padding: 0px 5px !important;
}

.navbar-toggler:focus, 
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}

.nav-item a {
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding: 8px 12px; /* Add padding to create square shape */
    background-color: transparent; /* Default background */
    transition: background-color 0.3s ease; /* Smooth transition for hover */
    border-radius: 5px;
}

.nav-item a:hover {
    color: #c31345;
    background-color: #ffffff; /* Red background on hover - adjust color as needed */
}

/* Active state styling */
.nav-item.active .nav-link, 
.nav-link.active,
.navbar-nav .nav-link.show {
    color: #c31345 !important;
    background-color: #ffffff; /* Same color as hover or different if preferred */
}

.dropdown-item:hover, 
.dropdown-item.active {
    background-color: #d1434a;
    color: #c31345 !important;
}
#policys:hover {
    color: #ffffff !important;
    background-color: #ffffff !important; /* Same color as hover */

}

/* Dropdown menu styles */
.dropdown-menu {
    background-color: #de154c !important; /* Pink background */
    border-radius: 0;
    border: 1px solid white !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 !important;
    padding: 0 !important; /* Remove padding */
}

/* Ensure dropdown items have correct color */
.dropdown-item {
    color: rgb(243, 240, 240); /* Text color */
    margin: 0; /* Remove margin */
    padding: 8px 16px !important; /* You can adjust padding here if needed */
}

/* Ensure spacing between nav items remains consistent */
.navbar-nav .nav-item {
    margin: 0 5px; /* Reduced from 10px to account for the padding */
}

/* Center the logo on mobile */
@media (max-width: 991px) {
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }  
    /* Ensure the toggle button and social icons don't overlap with the centered logo */
    .navbar-toggler {
        margin-right: auto;
    }    
    .social-icons {
        margin-left: auto;
    }
    .navbar-brand img {
        max-height: 32px;
        width: auto;
    }
    .nav-item a{
        font-weight: 400;
    }
}

/* Social icons styles */
.social-icons {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icons */
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; /* Box size */
    height: 32px;
    background-color: #ffffff; /* Light background */
    border-radius: 10px; /* Rounded corners */
    border: 1px solid #de154c; 
    color: #de154c;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;

    border: none  !important;
}

.social-icons a:hover {
    background-color: #de154c;
    color: #fff;
}


@media (max-width: 991px) {
    .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        padding-left: 0px !important;
        padding-right: 5px !important;
    }

    .navbar-brand {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .navbar-toggler {
        order: -1; /* Keep toggler at the start */
    }

    .social-icons {
        display: flex;
        align-items: center;
        gap: 5px;
        order: 2; /* Keep social icons at the end */
    }
    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px; /* Box size */
        height: 28px;
        background-color: #ffffff; /* Light background */
        border-radius: 10px; /* Rounded corners */
        border: 1px solid #ccc; /* Border for each icon */
        color: #de154c;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
}
/* Navbar end */
/* Navbar end */


/* Search bar */
.search-and-buttons {
    padding: 10px;
    background-color: #ffffff;
}

.search-bar {
    position: relative;
    width: 100%; /* Full width on mobile */
}

.search-bar .form-control {
    padding-left: 30px; /* Add space for the icon inside the input */
    padding-right: 30px; /* If you also want padding on the right */
    border-radius: 5px;
}

.search-bar .search-icon {
    position: absolute;
    left: 10px; /* Adjust the left position */
    top: 50%;
    transform: translateY(-50%);
    color: #999; /* Icon color */
    font-size: 1rem; /* Adjust size as needed */
    pointer-events: none; /* Prevent the icon from interfering with input */
}

/* Media query for large screens */
@media (min-width: 768px) {
    .search-bar {
        width: 65%; /* Adjust width for larger screens */
        margin: 0 auto; /* Center the search bar */
    }
}

/* Search bar */

/* buttons start */
.buttons {
    display: flex;
    gap: 5px; /* Reduced gap between buttons */
    overflow: hidden;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between; /* Distribute space evenly */
    margin-top: 5px;
    padding-inline: 10px;
}

.buttons button {
    flex: 1; /* Each button takes equal space */
    padding: 8px 5px; /* Adjust padding to make buttons more compact */
    font-size: 0.9rem; /* Smaller font size */
    white-space: nowrap; /* Prevent text wrapping */
    border-right: 2px solid #de154c !important; /* Add border */
    background-color: transparent; /* Default background */
    color: #000000; /* Default text color */
    transition: all 0.3s ease; /* Smooth transition for hover/active states */
    border-radius: 0; /* Ensure no border radius */
    font-weight: 700
}

.buttons button.active {
    background-color: #de154c; /* Active button background */
    color: white; /* Active button text color */
    font-weight: 700;
    border-radius: 5px;

}
.buttons button:hover {
    background-color: #de154c; /* Active button background */
    color: white; /* Active button text color */
    border-radius: 5px;
    border: 2px solid #de154c !important; /* Add border on hover */
}

/* Remove the individual button width constraints */
.buttons button {
    max-width: none;
    flex: 1 1 auto;
}

@media screen and (min-width: 769px) {
    .buttons {
        justify-content: center; /* Center the buttons */
        gap: 15px; /* Add spacing between buttons */
    }

    .buttons button {
        flex: unset; /* Allow buttons to size based on content */
        padding: 6px 12px; /* Reduce button padding */
        font-size: 0.85rem; /* Adjust font size */
        border-right: none; /* Remove the right border for a cleaner look */
    }
}

/* Mobile adjustments if needed */
@media screen and (max-width: 768px) {
    .buttons button {
        font-size: 0.7rem; /* Even smaller font on mobile */
        padding: 3px 4px;
    }
}
/* buttons end */

/* Container styles */
/* Container styles */ 
.image-content {
    padding-top: 5px;
}

.image-content .collapse {
    display: none;
}

.image-content .collapse.show {
    display: block;
}

/* Category container and slider styles */
.category-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px; /* Reduced padding for more space */
}

.category-wrapper {
    overflow: auto;
    position: relative;
    width: 100%;
}
.category-wrapper::-webkit-scrollbar {
    display: none;
  }

.category-slider {
    display: flex;
    /* gap: 20px; Reduced gap between items */
    transition: transform 0.3s ease;
    padding: 0 5px; /* Add padding to ensure first/last items are fully visible */
    width: 100%;
    margin-top: 5px;

}



/* Category item styles */
.category-item {
    flex: 0 0 calc(20% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.category-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.category-item img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 5px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.category-item:hover img {
    box-shadow: 0 0 0 3px rgba(255, 192, 203, 0.5); /* Light pink glow/border */
}

.category-item.active-category img {
    border: 2px solid #de154c;
    border-radius: 50%;
    padding: 0px;
}

.category-label {
    font-size: 12px;
    color: #333;
    margin-top: 4px;
    transition: color 0.3s ease; /* Optional: smooth color transition */
}

.category-item:hover .category-label {
    color: #de154c; /* Optional: change label color on hover */
}

/* Navigation button styles */
.nav-button {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 20px !important; /* Smaller button size */
    height: 30px !important; /* Smaller button size */
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 12px; /* Smaller arrow size */
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

/* Hover effects */
.nav-button:not(:disabled):hover {
    background: #f5f5f5;
}

@media screen and (min-width: 769px) {
    .category-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .category-wrapper {
        width: auto; /* Adjust width dynamically */
        display: flex;
        justify-content: center;
    }

    .category-slider {
        display: flex;
        justify-content: center; /* Center all items */
        flex-wrap: wrap; /* Allow wrapping if needed */
        gap: 20px; /* Space between items */
    }

    .category-item {
        flex: 0 0 auto; /* Ensure items don’t shrink */
        text-align: center;
    }

    /* Hide navigation buttons */
    .nav-button {
        display: none;
    }
}


/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .category-container {
        max-width: 800px;
        padding: 0 20px;
    }
    
    /* .category-slider {
        gap: 15px;
    } */
    
    .category-item {
        flex: 0 0 calc(23% - 8px); /* Slightly smaller spacing for mobile */
    }
    
    .category-item img {
        width: 52px;
        height: 52px;
    }
    
    .category-label {
        font-size: 11px;
        width: 100%; /* Ensure label stays within item width */
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-button {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

/* custom-carousel-section start*/
/* custom-carousel-section start*/
.custom-carousel-section {
    position: relative;
}
  
.custom-carousel-section .carousel-inner {
    padding: 10px;
    /* height: 100vh; */
}
  
.custom-carousel-section .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
  
/* Hide the carousel on screens larger than 768px */
@media (min-width: 769px) {
    .custom-carousel-section {
        display: none;
    }
}

@media (max-width: 768px) {
    /* .custom-carousel-section .carousel-inner {
        height: 80vh;
    } */
    
    .custom-carousel-section .carousel-item img {
        max-height: 80vh;
    }
    
}
  
.custom-carousel-section .carousel-control-prev,
.custom-carousel-section .carousel-control-next {
    width: 36px; /* Adjust width */
    height: 50px;
    background: white !important;
    opacity: 0.8;
    border-radius: 5px;
}

/* Position prev & next buttons relative to the image */
.custom-carousel-section .carousel-control-prev {
    left: 10px !important; /* Adjust distance from the image edge */
}

.custom-carousel-section .carousel-control-next {
    right: 10px !important; /* Adjust distance from the image edge */
}
/* custom-carousel-section end*/
/* custom-carousel-section end*/
 

/* grid-container start*/
.grid-container {
    display: grid;
    gap: 15px;
    padding: 50px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* 3x3 Layout for large screens */
@media (min-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-item {
    background-color: #f8d0d6;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    /* padding: 10px; */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #de154c;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease; /* Smooth transition */

}

.grid-item:hover {
    box-shadow: 0 10px 20px rgba(222, 21, 76, 0.4);
    border-color: #ff1744;
}

.grid-item h3 {
    background-color: #de154c;
    color: white;
    padding: 10px 0;
    font-size: 16px;
    margin-bottom: 0px;
}

.grid-item img {
    width: 100%;
    height: auto; /* Adjust height dynamically */
    max-height: 300px; /* Limit the max height to avoid large images */
    object-fit: contain; /* Ensure the whole image is visible without cropping */
    display: block;
    border-radius: 0px 0px 8px 8px;
}

/* Odd images zoom in */
.grid-item:nth-child(odd) img {
    animation: zoomIn 4s ease-in-out infinite alternate;
}

/* Even images zoom out */
.grid-item:nth-child(even) img {
    animation: zoomOut 4s ease-in-out infinite alternate;
}

/* Keyframes */
@keyframes zoomIn {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(222, 21, 76, 0.3);
    }
}

@keyframes zoomOut {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(0.95);
        box-shadow: 0 5px 15px rgba(222, 21, 76, 0.2);
    }
}

@media (max-width: 768px) { /* Mobile view */
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* Two items per row */
        padding: 10px;
        padding-bottom: 20px;
    }
    .grid-item img {
        width: 100%;
        height: auto; /* Adjust height dynamically */
        max-height: 250px; /* Limit the max height to avoid large images */
        display: block;
        border-radius: 0px 0px 8px 8px;
    }
    .grid-item h3 {
        padding: 8px 0;
        font-size: 11px;
        margin-bottom: 0px;
    }
}
/* grid-container end*/

/* bottom-nav start*/
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #de154c !important;
    border-top: 1px solid #de154c;
    height: 60px;
    z-index: 9999;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}



.bottom-nav-icon {
    font-size: 20px;
color: #ffffff;

}

.bottom-nav-text {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: -8px !important;
}

@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
}
/* bottom-nav end*/

/* sound-btn start*/
.sound-btn {
    background-color: #de154c;
    padding: 2px 5px;
    border-radius: 10px;
    border: none !important;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    font-size: 35px;
}
/* sound-btn end*/

.ribbon {
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
  }
  
  .ribbon h1 {
    display: block !important;
    background-color: #de154c;
    color: white;
    text-align: center;
    padding: 13px 30px;
    margin: 0;
    font-size: 21px;
    position: relative;
  }
  
  .ribbon h1:before,
  .ribbon h1:after {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    top: 0;
    border: 26px solid #de154c;
  }
  
  .ribbon h1:before {
    left: -40px;
    border-left-color: transparent;
  }
  
  .ribbon h1:after {
    right: -40px;
    border-right-color: transparent;
  }

@media (max-width: 769px) {
    .ribbon {
        position: relative;
        width: 100%;
        max-width: 280px;
        margin: 20px auto;
      }
    .ribbon h1 {
        background-color: #de154c;
        color: white;
        text-align: center;
        padding: 10px 30px;
        margin: 0;
        font-size: 11px;
        position: relative;
      }
    .ribbon h1:before,
    .ribbon h1:after {
        content: '';
        position: absolute;
        height: 0;
        width: 0;
        top: 0;
        border: 17px solid #de154c;
    }  
    .ribbon h1:before {
        left: -20px;
        border-left-color: transparent;
    }
    .ribbon h1:after {
        right: -20px;
        border-right-color: transparent;
    }
}


.product-carousel {
    height: auto; /* Allow flexibility */
}

/* .product-carousel .carousel-inner {
    height: 350px; 
} */

.product-carousel .carousel-item {
    height: 100%; /* Ensures all slides take up full space */
}

.product-carousel,
.product-carousel .carousel-item {
    min-height: unset !important;
}

.product-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fit without stretching */
    border-radius: 10px;
}

.product-carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: #bbb; /* Light gray dots */
    border-radius: 50%;
    text-indent: -9999px; /* Hides numbers */
    font-size: 0;
}

.product-card {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-name {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.product-price {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.color-options span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 3px;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .product-carousel .carousel-item {
        height: auto !important;
    }
    .product-carousel .carousel-item img {
        height: auto !important; /* Maintains the correct proportion */
       /* max-height: 250px;  Adjust as needed */
    }
    .product-name {      
        font-size: 14px;
        font-weight: bold;
        margin-top: 10px;
    }
    .product-price {
        font-size: 14px;
        color: #000;
        font-weight: bold;
    }
    .product-code {
        font-size: 14px;
        color: #000;
    }
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    padding-top: 90px;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 10px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ffffff;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
    font-family: 'Kanit', sans-serif;
}

.footer .footer-link a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 10px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #ffffff; /* Blue color for the triangle */
    transform: rotate(90deg); /* Rotate to point right */
    vertical-align: middle;
}

.footer .footer-link a:hover {
    color: #ffffff;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer-logo {
    width: 70%; /* Adjust the width as needed */
    max-width: 400px; /* Optional: set a maximum width */
    display: block;
    margin: 0 auto; /* Center the image horizontally */
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-flex;  /* Change to inline-flex */
    justify-content: center;  /* Center horizontally */
    align-items: center;  /* Center vertically */
    width: 34px;  /* Slightly smaller circle */
    height: 34px;  /* Slightly smaller circle */
    background-color: white;
    color: #de154c;
    border-radius: 10px;  /* Using 50% instead of 60px for perfect circle */
    transition: .3s;
    margin: 2px 5px;  /* Add some spacing between icons */
}

.footer .footer-social a i {
    font-size: 14px;  
}

.footer .footer-social a:hover {
    background: #de154c;
    border: 1px solid white;
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.footer .footer-social a:hover i {
    color: #ffffff;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
      background-color: #9004295b; /* semi-transparent white */

}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.footer-contact a{
    color: white;
    font-family: 'Kanit', sans-serif;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center; /* Ensures text aligns properly with icons */
    margin-bottom: 15px; /* Spacing between items */
     align-items: flex-start;
}

.footer-contact .contact-item i {
    font-size: 20px; /* Adjust icon size */
    color: #ffffff; /* Icon color */
    margin-right: 10px; /* Space between icon and text */
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 5px;
   
}

.footer-contact .contact-item p,
.footer-contact .contact-item a {
    margin: 0; /* Remove default margin */
    line-height: 1.5; /* Adjust text spacing */
    color: white;
}

.move-left {
    position: relative;
    left: -100px;  /* Shift it 20px to the left */
}

/* General Dropdown Styles for Footer */
.footer .dropdown-menu {
    display: none; /* Hide all dropdowns by default */
    position: absolute; /* Position relative to the dropdown */
    background-color: #de154c !important; /* White background */
    color: #ffffff; /* Black text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for a neat appearance */
    z-index: 1000; /* Ensure it appears on top */
    top: auto; /* Remove the default top positioning */
    bottom: 100%; /* Position the dropdown above */
    left: 0;
}

.footer .footer-dropdown.dropdown:hover > .dropdown-menu {
    display: block;
}


/* Dropdown Item Styles */
.footer .dropdown-item {
    padding: 8px 15px; /* Adjust padding for compact appearance */
    color: #ffffff !important; /* Black text */
    font-size: 14px; /* Adjust font size for the footer context */
    
}

.footer .dropdown-item:hover {
    background-color: #ffffff; /* Dark background on hover */
    color: #000000 !important; /* White text on hover */
}



@media (max-width: 768px) {
    .footer {
        position: relative;
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
    .footer .dropdown-menu {
        width: 90%; /* Ensure dropdown fits smaller screens */
        font-size: 13px; /* Smaller font for mobile */
        padding: 5px; /* Adjust padding for smaller space */
    }
    .footer .dropdown-item {
        padding: 6px 10px; /* Reduce padding for dropdown items */
    }
    .footer .footer-link a {
        display: block;
        margin-bottom: 10px;
        font-size: 15px;
        color: #ffffff;
        transition: .3s;
        font-family: 'Kanit', sans-serif;
    }
    .footer-contact a{
        color: white;
        font-size: 15px;
        font-family: 'Kanit', sans-serif;
    }
   .footer-social {
 
    padding-bottom: 10px;
    display: flex;  /* Flex use cheythal alignment nannavum */
    justify-content: center;  /* Center aakkan icons-ne */
    gap: 10px; /* Left-right gap between icons */
    flex-wrap: wrap; /* Mobile-il icons line il fit aavathilla engil next line-il pokum */
}

.footer-social a {
    display: inline-flex; /* Center cheyyan inside */
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    width: 35px; 
    height: 35px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
    font-size: 18px; /* Icon size adjust cheyyan */
}
.footer-social a i {
    line-height: 1;
    vertical-align: middle;
}
    .footer-logo {
        width: 50%; /* Adjust the width as needed */
        max-width: 200px; /* Optional: set a maximum width */
        display: block;
        margin: 0 auto; /* Center the image horizontally */
    }
    .move-left {
        position: relative;
        left: 0px;  /* Shift it 20px to the left */
        margin-bottom: 20px;
    }
    .footer .dropdown-submenu .dropdown-menu {
        position: static; /* Stack the submenu directly below */
        margin: 0; /* No gaps for simplicity */
    }

}
/*******************************/
/********* Footer CSS **********/
/*******************************/

.whatsapp-order-btn {
    /* position: absolute; */
    bottom: 1px;
    right: 0px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;  /* Center the text and icon */
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    width: 100%;  /* Make it full width of the product card */
    margin-top: 8px;  /* Add some space between product code and button */
}

/* Optional hover effect */
.whatsapp-order-btn:hover {
    background-color: #1ea952;
}



/* Style for Color Circles in products page*/
.color-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ddd;
}

.color-circle:hover {
    transform: scale(1.1);
}

.size-container button {
    min-width: 45px;
}

.youtube-btn-container {
    margin-top: 10px;
    margin-bottom: 10px;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    background-color: #FF0000;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
}

.youtube-btn i {
    margin-right: 8px;
    font-size: 17px;
}

.youtube-btn:hover {
    background-color: #cc0000;
}
/* Style for Color Circles in products page*/

/* about page */
.about-ziamia {
    background-image: url('../img/web/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100%; /* Adjust as needed */
}

.about-ziamia .container {
    margin: 0 auto;
    padding: 30px 0px;
  }

.about-ziamia h1 {
    color: #d92c6a; /* The pink/magenta color from your image */
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
  }
  
  .about-ziamia h2 {
    color: #d92c6a;
    text-align: center;
    font-style: italic;
    font-weight: normal;
    font-size: 1.5rem;
  }
  
  .about-ziamia h3 {
    color: #444;
    font-size: 1.3rem;
    margin: 20px 0 10px;
  }
  
  .about-ziamia .founder-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  .about-ziamia .founder-image {
    flex: 0 0 300px;
    margin-right: 30px;
  }
  
  .about-ziamia .founder-image img {
    width: 100%;
    border-radius: 10px;
  }
  
  .about-ziamia .founder-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-ziamia .about-founder {
    margin-top: 30px;
  }
  
  .about-ziamia p {
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  /* Make it responsive */
  @media (max-width: 768px) {
    .about-ziamia {
        padding: 30px 0; /* Reduced vertical padding on mobile */
    }
      
    .about-ziamia .container {
        padding: 0 15px; /* Adjusted horizontal padding on mobile */
    }
    .about-ziamia .founder-info {
      flex-direction: column;
    }
    
    .about-ziamia .founder-image {
      margin-right: 0;
      margin-bottom: 20px;
      max-width: 100%;
    }
    
    .about-ziamia h1 {
      font-size: 2rem;
    }
    
    .about-ziamia h2 {
      font-size: 1.2rem;
    }
  }


/* ziamia collection page   */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.product {
    min-width: 100%;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.product img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info {
    background: #fff;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-top: 5px;
}

.product-info p{
    margin-bottom: 7px;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
}

.left-arrow { left: 10px; }
.right-arrow { right: 10px; }

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Arrows (Mobile Only) */
@media screen and (max-width: 767px) {
    .arrow {
        display: block; /* Ensure arrows are visible on mobile */
        position: absolute;
        top: 57%;
        transform: translateY(-50%);
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        border: none;
        padding: 0px 10px;
        font-size: 35px;
        cursor: pointer;
        border-radius: 10%;
        z-index: 100;

    }

    .left-arrow { left: 5px; }
    .right-arrow { right: 5px; }

    .arrow:hover {
        background-color: rgba(255, 255, 255, 0.8);
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    display: block;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 16px;
}

.whatsapp-btn:hover {
    background-color: #1EBE57;
}

/* Desktop View: Show multiple images */
@media screen and (min-width: 768px) {
    .slider {
        flex-wrap: wrap;
        justify-content: center;
    }
    .product {
        min-width: 30%;
        margin: 10px;
    }
    .arrow { display: none; } /* Hide arrows in desktop */
} 

/* contact page styles */
/* Contact Section Styles */
.contact-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.section-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* Contact Info Box */
.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 1, 107, 0.342);
    height: 100%;
}

.contact-info-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-box h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #de154c; /* Updated to your specified color */
}

.contact-detail {
    display: flex;
    margin-bottom: 25px;
}

.contact-detail i {
    font-size: 20px;
    color: #de154c; /* Updated to your specified color */
    margin-right: 15px;
    margin-top: 5px;
}

.contact-detail h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-detail p, .contact-detail a {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #de154c; /* Updated to your specified color */
}

/* Contact Form Box */
.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 1, 107, 0.342);
}

.form-label {
    font-weight: 500;
    color: #333;
}

.contact-form-box .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-left: 3px solid #de154c !important; /* Pink accent on the left border */
    border-radius: 4px;
    transition: all 0.3s;
    background-color: #fff;
}

.contact-form-box .form-control:focus {
    border-color: #de154c !important;
    border-left: 3px solid #f53266 !important;
    box-shadow: 0 0 0 0.25rem rgba(222, 21, 76, 0.15);
    background-color: #fef8fa; /* Very light pink background when focused */
}

.contact-form-box textarea.form-control {
    resize: none;
}

.contact-submit-btn {
    background-color: #de154c !important; /* Updated to your specified color */
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
    color: white !important;
}

.contact-submit-btn:hover {
    background-color: #c31345 !important; /* Slightly darker shade for hover */
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .contact-form-box {
        margin-top: 20px;
    }
}

.category-box {
    text-align: center;
    margin: 20px auto;
}

.category-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.category-section {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

.category-column {
    min-width: 200px;
}

.category-heading {
    color: #d81b60;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 10px;
}

.category-btn {
    display: block;
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    padding: 2px 0;
    font-weight: 600;
    width: 100%;
}

.category-btn:hover {
    color: #d81b60;
}

@media (max-width: 768px) {
    .category-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .category-column {
        text-align: center;
    }

    .category-btn {
        text-align: left;
    }

    .category-heading {
        text-align: left;
    }
}


 /* search button code */
.search-and-buttons1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.search-bar {
    position: relative;
    /* margin-bottom: 20px; */
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    padding-right: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.product-row {
    margin-top: 20px;
}

/* .product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-carousel {
    max-height: 250px;
    overflow: hidden;
}

.product-carousel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    margin: 12px 10px 5px;
    color: #333;
    min-height: 40px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #6c63ff;
    margin: 0 10px 10px;
}

.color-options {
    display: flex;
    margin: 0 10px 10px;
} */

.color-options span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
    border: 1px solid #ddd;
}

.product-code {
    font-size: 14px;
    color: #666;
    margin: 0 10px 10px;
}

.whatsapp-order-btn {
    background-color: #347e42;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    width: calc(100% - 20px);
    margin: 0 10px;
    transition: background-color 0.3s;
}

.whatsapp-order-btn:hover {
    background-color: #128C7E;
}

.no-results {
    text-align: center;
    width: 100%;
    padding: 50px;
    color: #666;
    font-size: 18px;
}

.loading {
    text-align: center;
    width: 100%;
    padding: 50px;
    color: #666;
    font-size: 18px;
}

.search-instruction {
    text-align: center;
    width: 100%;
    padding: 50px;
    color: #666;
    font-size: 18px;
}

.back-button {
    background-color: #de154c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #de154c;
}

/* .search-bar {
    margin-bottom: 20px;
} */


/* share button styles */
.share-container {
    position: fixed;
    right: 40px;
    top: 34%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999; /* ✅ Increased z-index */
}

/* Main share button */
.main-share-btn {
    background-color: #ffffff;
    border: 1px solid #de154c;
    color: #de154c;
    padding: 10px;
    border-radius: 10px;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-size: 23px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

.main-share-btn:hover {
    background-color: #de154c;
    color: white;
    transform: scale(1.1); /* ✅ Slight increase in size */
}

/* Social share buttons */
.share-btn {
    background-color: #d61a5e;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000; /* ✅ Fixed z-index for clickable area */

}

.share-btn:hover {
    background-color: #de154c;
    color: white;
}

/* WhatsApp button */
.whatsapp { background-color: #25D366; }
.whatsapp:hover { background-color: #1DA851; }

/* Facebook button */
.facebook { background-color: #1877F2; }
.facebook:hover { background-color: #1259C7; }

/* Expanded state */
.show .share-btn {
    opacity: 1;
    transform: translateY(0);
}

.show .whatsapp { top: -60px; }
.show .facebook { top: -120px; }

@media (max-width: 990px) {
    .share-container {
        position: fixed;
        right: 20px;
        top: 40%;
    }
    .main-share-btn {
        padding: 10px;
        width: 32px;
        height: 32px;
        font-size: 22px;
        font-weight: 900;
    }
    .share-btn {
        padding: 10px;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .show .whatsapp { top: -50px; }
    .show .facebook { top: -100px; }
}



.scroll-btn {
    position: fixed;
    right: 40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #de154c;
    cursor: pointer;
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    outline: none; /* Remove blue square */
}

/* Move Up Button */
#moveUp {
    bottom: 80px;
    background-color: #ffffff; /* Pinkish-Red */
    color: #de154c;
    font-size: 30px;
}

/* Move Down Button */
#moveDown {
    bottom: 20px;
    background-color: #ffffff; /* Orange */
    color: #de154c;
    font-size: 30px;
}

#moveUp:hover {
    background-color: #de154c; /* Pinkish-Red */
    color: #ffffff;
}

/* Move Down Button */
#moveDown:hover {
    background-color: #de154c; /* Orange */
    color: #ffffff;
}

/* Hover Effects */
.scroll-btn:hover {
    transform: scale(1.1);
}

/* Remove focus and focus-visible outlines */
.scroll-btn:focus,
.scroll-btn:focus-visible {
    outline: none; /* Remove focus outline */
}

@media (max-width: 768px) {
    .scroll-btn {
        position: fixed;
        right: 20px;
        width: 32px;
        height: 32px;
    }
    #moveUp {
        bottom: 100px;
    }
    
    /* Move Down Button */
    #moveDown {
        bottom: 60px;
    }
}
.bottom-nav-item.active .bottom-nav-icon {
  transform: scale(1.2);
  background-color: #f6e3e8;
  border-radius: 5%;
  padding-inline: 17px;
  color: #de154c !important;
}

.bottom-nav-item.active .bottom-nav-icon span {
 font-size: 13px;
}


.bottom-nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  font-size: 24px;
  color: #ffffff;
  gap: 2px;
}
.bottom-nav-icon span {
  font-size: 15px;
}

