        /* Global Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body Styles */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: white;
            color: #333;
            margin: 0;
        }

        /* Global Scrollbar Styles */
        ::-webkit-scrollbar {
            width: 5px; /* Vertical scrollbar width */
            height: 5px; /* Horizontal scrollbar height */
        }

        /* Vertical Scrollbar */
        ::-webkit-scrollbar:vertical {
            width: 5px; /* Adjusts the width of the vertical scrollbar */
        }

        /* Horizontal Scrollbar */
        ::-webkit-scrollbar:horizontal {
            height: 5px; /* Adjusts the height of the horizontal scrollbar */
        }

        /* Scrollbar Track (the background of the scrollbar) */
        ::-webkit-scrollbar-track {
            background: #ffffff; /* Light background color for the scrollbar track */
            border-radius: 10px;  /* Rounded corners for the scrollbar track */
        }

        /* Scrollbar Thumb (the draggable part of the scrollbar) */
        ::-webkit-scrollbar-thumb {
            background: #e9e5d0; /* Darker color for the scrollbar thumb */
            border-radius: 10px; /* Rounded corners for the scrollbar thumb */
        }

        /* Hover state for the scrollbar thumb */
        ::-webkit-scrollbar-thumb:hover {
            background: #555; /* Darker shade on hover */
        }

        /* Optionally add styles for when the scrollbar is active */
        ::-webkit-scrollbar:active {
            background: #555;
        }

        /* Initial state of the navbar (it will be slightly above its position) */
        #nav-container-to-replace {
            position: sticky;
            top: 0; /* Initially position the navbar above the screen */
            z-index: 998;
            opacity: 0; /* Start with opacity 0 (invisible) */
            animation: slideIn 0.9s ease-out forwards; /* Animation for sliding and fading in */
        }

        /* Keyframes for slideIn animation */
        @keyframes slideIn {
            0% {
                top: -300px; /* Start slightly above the top */
                opacity: 0; /* Start invisible */
            }
            100% {
                top: 0; /* End at the top of the screen */
                opacity: 1; /* Fade in to full visibility */
            }
        }

        .nav-elements-container {
            flex-grow: 1;
            display: flex;
            flex-direction: row; 
            align-items: center;
            justify-content: center;
            margin-left: 20px;
            gap: 10px;
        }

        /* Navbar Styles */
        .navbar {
            background-color: white; /* Default color */
            padding: 8px 16px; /* Reduced height */
            display: flex;
            justify-content: space-between;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Slight shadow */
            align-items: center;
            color: white;
            transition: all 0.3s ease; /* Smooth transition for any changes */
            opacity: 0; /* Initially invisible */
            animation: slideIn 0.5s ease-out forwards; /* Animation for loading */
            /*border-bottom: 2px solid #c83d3d;*/
        }
        
        /* Keyframes for navbar animation */
        @keyframes slideIn {
            0% {
                opacity: 0; /* Start invisible */
                transform: translateY(-50px); /* Start slightly above */
            }
            100% {
                opacity: 1; /* Fully visible */
                transform: translateY(0); /* End in its normal position */
            }
        }
        
        
        .navbar .logo {
            display: flex;
            align-items: center;
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-right: 10px;
            
        }

        .navbar .logo img {
            height: 60px; /* Reduced size */
            width: 60px;
            object-fit: contain;
            margin-right: 8px;
            border: 2px solid #ffffff;
            border-radius: ;
            display: ;
            cursor: pointer;
        }

        .navbar #brand-name-header {
            letter-spacing: 1px;
            color: #c83d3d;
            font-size: 15px;
            font-style: italic;
            cursor: pointer;
            margin: ;
        }
        
        .footer-logo {
            display: flex;
            flex-direction: row; /* Ensure items are in a row */
            align-items: center; /* Vertically center the items */
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 50px; /* Reduced size */
            width: 50px;
            object-fit: cover;
            margin-right: 8px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            display: ;
            cursor: pointer;
        }
        
        .footer-logo #brand-name-footer {
            font-size: 25px;
            font-style: italic;
        }

        /* Navbar Menu */
        .navbar-nav {
            display: flex;
            gap: 5px;
            align-items: ;
        }
        

        /* Initial state for navbar links */
        .navbar-nav a {
            color: #c83d3d;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: row;
            gap: 5px;
            align-items: center;
            white-space: nowrap;
            border: none;
            /* Set initial state of animation */
            opacity: 0;  /* Start invisible */
            transform: translateY(50px); /* Start slightly below */
            animation: slideUp 1s ease-out forwards; /* Slide up on load */
        }
        
        /* Apply the slide-up effect when hovering */
        .navbar-nav a:hover {
            background-color: ; /* Example background color on hover */
            transform: translateY(-5px); /* Move the element up by 5px */
        }
        
        /* Animation for slide-up effect */
        @keyframes slideUp {
            0% {
                opacity: 0;
                transform: translateY(50px); /* Start 20px below */
            }
            100% {
                opacity: 1;
                transform: translateY(0); /* End at the original position */
            }
        }

        
        
        
        

        .navbar-nav a i {
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .navbar-nav a:hover {
            background: linear-gradient(to bottom, white 95%, #c83d3d); /* Even more white */
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 70px;
            right: 0;
            background-color: white;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
            z-index: 1050;
            flex-direction: column;
            border-radius: 6px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
            width: 220px;
            max-height: calc(100vh - 150px);
            overflow: auto;
            transform: translateY(-10px); /* Start slightly above */
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
            
        }
        
        .dropdown-content h4 {
            margin: 10px;
            text-decoration: underline; /* This will underline the text */
        }

            
            
        .dropdown-content a {
            padding: 8px 12px;
            font-size: 15px;
            color: #c83d3d;
            text-decoration: none;
            display: flex;
            flex-direction: row;      /* Align icon and text in a row */
            align-items: center;      /* Vertically center the items */
            gap: 8px;                 /* Space between icon and text */
            justify-content: flex-start; /* Align the content to the left */
        }

        .dropdown-content a i {
            font-size: 1rem;
        }

        .dropdown-content a:hover {
            background-color: ;
        }

        /* Show dropdown with sliding effect */
        .dropdown.open .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0); /* Slide down to its original position */
        }


        /* Menu Icon for Mobile */
        .menu-toggle {
            display: none;
            cursor: pointer;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .navbar-nav {
                background-color: white;
                flex-direction: column;
                width: 100%;
                z-index: 10000;
                position: absolute;
                top: 70px;
                left: 0;
                width: 250px;
                height: calc(100vh - 270px);
                overflow: auto;
                padding: 12px;
                border-radius: 8px;
                box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
                transition: transform 0.5s ease; /* Add smooth slide effect */
                transform: translateX(-100%); /* Start from the right side off-screen */

            }
            
            .navbar #brand-name-header {
                font-size: 20px;
            }

            .menu-toggle {
                display: block;
                font-size: 1.8rem;
                color: #c83d3d;
            }

            .dropdown {
                width: 100%;
            }
            
            .categories-dropdown-header {
                display: none;
                
            }

            /* Initial state for dropdown content */
            .dropdown-content {
                position: static;
                background-color: #e1efed;
                min-width: 100%;
                height: 0; /* Initially no height, won't occupy space */
                overflow: hidden; /* Hide anything that overflows */
                opacity: 0; /* Initially invisible */
                visibility: hidden; /* Hidden initially */
                z-index: 1050;
                box-shadow: none;
                transform: translateY(-10px); /* Start slightly above */
                transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease, visibility 0.3s ease;
            }
            
            /* Show dropdown with sliding effect */
            .dropdown.open .dropdown-content {
                height: auto; /* Adjust based on content height or use `auto` for dynamic size */
                visibility: visible; /* Make visible */
                opacity: 1; /* Fully visible */
                transform: translateY(0); /* Slide down to its original position */
                overflow: visible; /* Allow overflow when visible */
                animation: slideIn 0.3s ease-out forwards; /* Slide in animation */

            }
            
            /* Keyframe animation for sliding in */
            @keyframes slideIn {
                0% {
                    transform: translateY(-20px);
                    opacity: 0;
                }
                100% {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            
            /* Hide dropdown with sliding out effect */
            .dropdown.close .dropdown-content {
                animation: slideOut 0.7s ease-out forwards; /* Slide out animation */
            }
            
            /* Keyframe animation for sliding out */
            @keyframes slideOut {
                0% {
                    transform: translateY(0);
                    opacity: 1;
                }
                100% {
                    transform: translateY(-20px);
                    opacity: 0;
                }
            }


            .navbar-nav.open {
                transform: translateX(0); /* Slide in to its original position */
            }

            
            
            

            .navbar-nav a {
                font-size: 0.85rem;
                padding: 10px;
                margin-bottom: 6px;
                font-weight: 600;
            }

            .navbar-nav a i {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 600px) {
            .navbar {
                padding: 8px 12px;
            }

            .navbar-nav a {
                padding-left: 8px;
                font-size: 0.75rem;
            }

            .navbar .logo {
                font-size: 1rem;
                margin: 0;
            }

            .navbar-nav a i {
                font-size: 1.1rem;
            }

            .menu-toggle {
                font-size: 2rem;
            }
            .navbar .brand-name {
                letter-spacing: 1px;
                color: #c83d3d;
                font-size: 20px;
            }
            
            .nav-elements-container {
                gap: 10px;
                margin: 0;
            }
            
            .navbar .logo img {
                margin: 0;
            }

        }


        /* Hidden state */
        .hidden {
            display: none !important;
        }
        
        /* Ribbon Styles */
        .ribbon {
            background-color: #c83d3d;  /* Choose your ribbon color */
            color: white;
            text-align: center;
            font-size: 15px;
            font-weight: bold;
            position: relative;
            top: 0;
            width: 100%;
            z-index: 999;
            display: flex;
            justify-content: space-between; /* Distribute content between left and right */
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow */
            padding: 10px 20px;  /* Adjust padding for space between content */
            opacity: 0;  /* Start with opacity 0 */
            transform: translateY(-100%);  /* Start off-screen above */
            animation: slideDown 0.5s ease-out forwards;  /* Apply slide-down animation */
        }
        
        /* Keyframes for slide-down animation */
        @keyframes slideDown {
            0% {
                transform: translateY(-100%);  /* Start above the screen */
                opacity: 0;  /* Start invisible */
            }
            100% {
                transform: translateY(0);  /* End at the original position */
                opacity: 1;  /* Fade in */
            }
        }
        
        /* Left side of the ribbon */
        .ribbon-left {
            flex: 1;
            text-align: left;
        }
        
        /* Right side of the ribbon with contact and social links */
        .ribbon-right {
            display: flex;
            gap: 15px;  /* Space between links */
            align-items: center;
        }
        
        /* Ribbon Links Styles */
        .ribbon-link {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }
        
        /* Hover effect for links */
        .ribbon-link:hover {
            color: #e9e5d0;  /* Lighten the link color on hover */
        }
        
        /* Social icons styling */
        .ribbon-link i {
            font-size: 1.2rem;
        }
        
        /* Optional: Add a ribbon to make it look like it's "pinned" */
        .ribbon::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #c83d3d;  /* Same color as ribbon */
        }
        
        
        
        
        .social-icons-ribbon {
            display: none;
        }
        
        
        /* Hide ribbon on mobile screens (screen width less than or equal to 768px) */
        @media (max-width: 768px) {
            .ribbon {
                display: ; /* Hide the ribbon */
            }
            
            .ribbon-right {
                display: none; /* Hide the ribbon */
            }
            .ribbon-left {
                display: ; /* Hide the ribbon */
                font-size: 12px;
                text-align: center;
            }

        }
        
        
        
        /* Search container styling */
        .search-container {
            display: flex;
            align-items: stretch;
            width: 100%;
            max-width: 800px; /* Updated max width to 500px */
            border-radius: 40px;
            background-color: #fff;
            border: 2px solid #c83d3d;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin: 10px auto;
            position: relative;
            overflow: hidden;
            transition: all 0.25s ease;
        }
        
        .search-container:hover {
            box-shadow: 0 4px 14px #ae4848;
            border-color: #ae4848;
        }
        
        
        
        
        /* Custom select wrapper */
        .select-wrapper {
            position: relative;
            min-width: 160px;
            background-color: #f8f9fa;
            border-right: 1px solid #e9ecef;
            transition: all 0.2s ease;
        }
        
        .select-wrapper:hover {
            background-color: #f1f3f5;
        }
        
        
        /*.new,*/
        /*.new::picker(select) {*/
        /*  appearance: base-select;*/
        /*}*/
        
        
        /* Dropdown (select) styling */
        .search-category {
            width: 100%;
            padding: 15px 40px 15px 20px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            outline: none;
            background: transparent;
            color: #c83d3d; 
            cursor: pointer;
            appearance: none ; 
            z-index: 2;
            position: relative;
            border-radius: 4px;
        }
        
        
        /* Use the ::picker selector to target dropdown behavior */
        .search-category::picker(select) {
            appearance: base-select; /* Apply base-select appearance */
            background-color: #f8d7da; /* Change the background color when open */
            color: #c83d3d; /* Text color for options */
        }
        
        /* Style the options */
        .search-category option {
            background-color: transparent; /* Default background */
            color: #495057; /* Default text color */
        }
        
        
        /* For non-WebKit browsers (e.g., Firefox) */
        .search-category option:checked {
            background-color: #c83d3d; /* Background color for selected option */
            color: white; /* Text color for selected option */
        }
        
        
        /* Chevron icon styling */
        .chevron-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: #c83d3d; /* Chevron color updated */
            pointer-events: none;
            transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }
        
        /* Rotate chevron when select is focused */
        .search-category:focus ~ .chevron-icon {
            transform: translateY(-50%) rotate(180deg);
        }
        
        
        
        .search-input-container {
            display: flex;
            flex-grow: 1;
            align-items: center;
        }
        
        /* Search input field styling */
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            font-size: 14px;
            font-weight: 400;
            border: none;
            outline: none;
            background-color: transparent;
            color: #c83d3d; /* Text color updated */
            transition: all 0.2s ease;
        }
        
        .search-input::placeholder {
            color: #c83d3d; /* Placeholder color updated */
            opacity: 1;
        }
        
        .search-input:focus {
            background-color: #f8f9fa;
        }
        
        /* Search button styling */
        .search-btn {
            background-color: #c83d3d; /* Background color updated */
            color: white;
            border: none;
            padding: 0 22px;
            height: 100%;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .search-btn i {
            font-size: 15px;
            transition: transform 0.2s ease;
        }
        
        .search-btn:hover {
            background-color: #9a2d2d; /* Darker shade of #c83d3d on hover */
        }
        
        .search-btn:hover i {
            transform: scale(1.05);
        }
        
        /* Microphone Icon styling with linear gradient */
        .voice-icon {
            font-size: 20px;
            background: linear-gradient(to top, #c83d3d, white, #4361ee); /* Linear gradient */
            -webkit-background-clip: text; /* Apply gradient to text */
            color: transparent;
            cursor: pointer;
            transition: transform 0.3s ease;
            margin-right: 10px;
        }
        
        .voice-icon:hover {
            transform: scale(1.1);
            color: #c83d3d; /* Change color on hover */
        }
        
        /* Responsive layout */
        @media screen and (max-width: 768px) {
            .search-container {
                flex-direction: column;
                border-radius: 12px;
                max-width: 100%;
                margin: 15px;
            }
            
            .select-wrapper {
                display: none;
                border-right: none;
                border-bottom: 1px solid #e9ecef;
                border-radius: 12px 12px 0 0;
                min-width: 100%;
            }
            
            .search-input {
                padding: 12px 20px;
            }
            
            .search-btn {
                padding: 15px;
                border-radius: 0 5px 5px 0;
            }

            
        }









/* Cart icon styles */
.cart-icon {
    display: none;
    position: relative;
    color: #c83d3d;
}

/* Cart Icon Animation */
.cart-icon a {
    color: #c83d3d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    border: none;
    /* Set initial state of animation */
    opacity: 0;  /* Start invisible */
    transform: translateY(50px); /* Start slightly below */
    animation: slideUpCart 1s ease-out forwards; /* Slide up on load */
}

/* Apply the slide-up effect when hovering */
.navbar-nav a:hover {
    background-color: ; /* Example background color on hover */
    transform: translateY(-5px); /* Move the element up by 5px */
}

.more-menu-dropdown {
    display: none;

}


/* Animation for slide-up effect */
@keyframes slideUpCart {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Start 20px below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

/* Hover Effect for Cart Icon */
.cart-icon a:hover {
    background: linear-gradient(to bottom, #ffffff 95%, #c83d3d); /* Gradient for hover */
    cursor: pointer; /* Indicate it's clickable */
    transform: scale(1.05); /* Slightly increase size on hover */
    transition: transform 0.3s ease; /* Smooth scaling transition */
}



.cart-icon a i {
    text-decoration: none;
    color: #c83d3d;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -15px;
    background-color: ;
    color: #c83d3d;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
}

.cart-text {
    text-decoration: none;
    color: #c83d3d;
    font-size: 1rem;

}      
        
        
        
        
.categories-dropdown-header {
    display: none;
    position: relative;
    color: #c83d3d;

}
        
        
/* Cart Icon Animation */
.categories-dropdown-header a {
    color: #c83d3d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    border: none;
    /* Set initial state of animation */
    opacity: 0;  /* Start invisible */
    transform: translateY(50px); /* Start slightly below */
    animation: slideUpCart 1s ease-out forwards; /* Slide up on load */
}


/* Animation for slide-up effect */
@keyframes slideUpCart {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Start 20px below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

/* Hover Effect for Cart Icon */
.categories-dropdown-header a:hover {
    background: linear-gradient(to bottom, #ffffff 95%, #c83d3d); /* Gradient for hover */
    cursor: pointer; /* Indicate it's clickable */
    transform: scale(1.05); /* Slightly increase size on hover */
    transition: transform 0.3s ease; /* Smooth scaling transition */
}



.categories-dropdown-header a i {
    text-decoration: none;
    color: #c83d3d;
    font-size: 1.2rem;
}
        
        
        
/* Navbar at the bottom of the screen */
.navbar-nav-bottom {
    display: none;
    background-color: white; /* Background color for the bottom navbar */
    padding: 10px 0;
    text-align: center;
    position: fixed;
    bottom: 5px; /* 5px from the bottom of the screen */
    left: 0;
    right: 0;
    width: 100%; /* Make sure it spans across the entire bottom */
    z-index: 1000; /* Ensure it's on top of other content */
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    width: 95%;
    margin: 0 auto;
    /* Apply the slide-up animation */
    animation: slideUp 0.5s ease-out forwards;
}

/* List styling for navbar items */
.navbar-nav-bottom ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    align-items: center;
}

/* Styling for each item in the navbar */
.navbar-nav-bottom li {
    align-items: center;
}

/* Navbar link styling */
.navbar-nav-bottom a {
    text-decoration: none;
    color: inherit;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.7s ease-in-out, color 0.7s ease-in-out; /* Smooth transition for transform and color */
}

/* Icon styling */
.navbar-nav-bottom i {
    font-size: 24px;
    margin-bottom: 5px; /* Space between icon and text */
    transition: transform 0.7s ease-in-out, color 0.7s ease-in-out; /* Smooth transition for the icon */
    color: #c83d3d;
}

/* Text styling */
.navbar-nav-bottom span {
    font-size: 12px;
    color: #c83d3d; /* Text color */
    transition: color 0.7s ease-in-out; /* Smooth transition for the text color */
}

/* Hover effects for links */
.navbar-nav-bottom a:hover {
    transform: translateY(-5px); /* Slightly move the item up on hover */
    color: #007bff; /* Change the color of the icon and text when hovered */
}

/* Hover effects for icons */
.navbar-nav-bottom i:hover {
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

/* Hover effects for text */
.navbar-nav-bottom span:hover {
    color: #007bff; /* Change text color on hover */
}

/* Specific styles for home icon to make it stand out */
.navbar-nav-bottom .home-icon  {
    background-color: #c83d3d; /* Background color for home icon */
    border-radius: 50%; /* Circle shape */
    color: white !important;
    padding: 15px 22px 15px 22px; /* Padding: top right bottom left (adjusted values) */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for the hover effect */
    border: 2px solid white;
}


.navbar-nav-bottom .home-icon i,
.navbar-nav-bottom .home-icon span {
    color: white;
}


/* Animation keyframes for slide-up effect */
@keyframes slideUp {
    from {
        transform: translateY(100px); /* Start position: 100px below the screen */
        opacity: 0; /* Start with 0 opacity */
    }
    to {
        transform: translateY(0); /* End position: normal position */
        opacity: 1; /* End with full opacity */
    }
}

/* Extra styling for better responsiveness */
@media (max-width: 768px) {
    .navbar-nav-bottom {
        display: block;
        padding: 10px 0; /* Less padding on smaller screens */
    }

    .navbar-nav-bottom i {
        font-size: 26px; /* Slightly smaller icons on smaller screens */
    }

    .navbar-nav-bottom span {
        font-size: 10px; /* Smaller text for smaller screens */
    }
}
        
        
        
        
/* Responsive Styling */
@media screen and (max-width: 768px) {
        #brand-name-header {
            display: none;
        }
        
       .search-container {
           display: ;
           width: ;
       }
       
       
       .search-input {
           width: 100%;
           min-width: 100px;
       }
       
       .cart-icon {
           display: none;
       }
       
        .cart-icon a {
            padding: 0;

        }
        
        .cart-count {
            position: absolute;
            top: -15px;
            right: -15px;
        }

       .cart-text { 
           display: none;

       }
}
        
        
        main {
            min-height: 1000px;
        }
        
        
        /* Footer Styles */
        footer {
            background: white; 
            color: black;
            padding: 40px 0;
            text-align: left;
            font-family: 'Arial', sans-serif;
            margin-top: 20px;
            border-radius: 10px;
            border: 2px solid #c83d3d;
            width: 98%;
            margin: 0 auto;
            margin-bottom: 10px;
        }


        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Footer Top Section */
        .footer-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        /* Logo and Social Media Container */
        .footer-logo-social {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-logo a {
            font-size: 36px;
            font-weight: bold;
            color: #c83d3d;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: capitalize;
            font-style: italic;
            display: inline-block;
            margin-bottom: ;
        }
        
        .footer-socials {
            margin-top: 10px;
            display: flex;
            flex-direction: row;
            gap: 15px;
        }
        
        .social-icon {
            font-size: 26px;
            margin: 0;
            color: #c83d3d;
            transition: color 0.3s ease;
        }
        
        .social-icon:hover {
            color: #f5c342; /* Yellow color on hover */
        }
        
        /* Quick Links Container */
        .footer-quick-links {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-quick-links h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #c83d3d;
        }
        
        .footer-quick-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-quick-links li {
            margin: 8px 0;
        }
        
        .footer-quick-links li a {
            color: #c83d3d;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        .footer-quick-links li a:hover {
            color: #f5c342; /* Yellow color on hover */
        }
        
        
        
        
        
        
        
        
        
        /* Contact Details Container */
        .footer-contact {
            flex: 1;
            min-width: 250px;
            display: none;
        }
        
        .footer-contact h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #c83d3d;
        }
        
        .footer-contact p {
            margin: 8px 0;
            font-size: 16px;
            color: #c83d3d;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: #c83d3d;
        }
        
        /* Footer Bottom Section: Copyright */
        .footer-copy {
            margin-top: 40px;
            font-size: 14px;
            color: #c83d3d;
            text-align: center;
        }
        
        .footer-copy p {
            margin: 0;
        }
        
        /* Responsive Styling */
        @media screen and (max-width: 768px) {
            footer {
                margin-bottom: 105px;
            }
            
            .footer-top {
                flex-direction: column;
                align-items: center;
            }
        
            .footer-logo-social,
            .footer-quick-links,
            .footer-contact {
                flex: 1;
                text-align: center;
            }
        
            .footer-socials {
                display: flex;
                justify-content: center;
                gap: 20px;
            }
        
            .footer-quick-links ul {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        
            .footer-contact {
                font-size: 14px;
            }
        }
        
        
        
        
        
        
        
        
        
/* Floating WhatsApp Button */
/*.whatsapp-btn {*/
/*    position: fixed;*/
/*    bottom: 20px;*/
/*    right: 20px;*/
/*    background-color: #25d366;*/
/*    border-radius: 50%;*/
/*    padding: 15px;*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*    z-index: 1000;*/
/*    transition: all 0.3s ease;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-decoration: none;*/
/*    border: 2px solid white;*/
/*}*/

/* Floating Call Button */
/*.call-btn {*/
/*    position: fixed;*/
/*    bottom: 100px;*/
/*    right: 20px;*/
/*    background-color: #34b7f1;*/
/*    border-radius: 50%;*/
/*    padding: 15px;*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*    z-index: 1000;*/
/*    transition: all 0.3s ease;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-decoration: none;*/
/*    border: 2px solid white;*/
/*}*/

/* Back to Top Button */
/*.back-to-top-btn {*/
/*    position: fixed;*/
/*    bottom: 180px;*/
/*    right: 20px;*/
/*    background-color: #d0d468;*/
/*    border-radius: 50%;*/
/*    padding: 15px;*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*    z-index: 1000;*/
/*    transition: all 0.3s ease;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-decoration: none;*/
/*    border: 2px solid white;*/
/*}*/




/* Floating WhatsApp Button */
/*.whatsapp-btn {*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    right: 100px;*/
/*    width: 100px;  */
/*    height: 50px; */
/*    background-color: #25d366;*/
/*    border-radius: ; */
/*    padding: 0;  */
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*    z-index: 1000;*/
/*    transition: all 0.3s ease;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-decoration: none;*/
/*    border: 2px solid white;*/
/*}*/

/* Floating Call Button */
/*.call-btn {*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    width: 100px; */
/*    height: 50px;  */
/*    background-color: #34b7f1;*/
/*    border-radius: ;  */
/*    padding: 0;  */
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*    z-index: 1000;*/
/*    transition: all 0.3s ease;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-decoration: none;*/
/*    border: 2px solid white;*/
/*}*/









/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    right: 0;
    width: 50px;  /* Maintain width */
    height: 60px;  /* Set height to 100px */
    background-color: #25d366;
    padding: 0;  /* Remove extra padding to maintain the button size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid white;
    top: calc(50% + 15px); /* Vertically center, subtract half of button height */
    transform: translateY(0); /* No additional translation needed */
}

/* Floating Call Button */
.call-btn {
    position: fixed;
    right: 0;
    width: 50px;  /* Maintain width */
    height: 60px;  /* Set height to 100px */
    background-color: #34b7f1;
    padding: 0;  /* Remove extra padding to maintain the button size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid white;
    top: calc(50% + 65px); /* Place below the WhatsApp button, adjusted by button height */
    transform: translateY(0); /* No additional translation needed */
}



/* Floating Call Button */
.back-to-home-btn {
    position: fixed;
    right: 0;
    width: 50px;  /* Maintain width */
    height: 60px;  /* Set height to 100px */
    background-color: #c83d3d;
    padding: 0;  /* Remove extra padding to maintain the button size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid white;
    top: calc(50% + 115px); /* Place below the WhatsApp button, adjusted by button height */
    transform: translateY(0); /* No additional translation needed */
}


/* Font Awesome Icon Style */
.whatsapp-btn i, .call-btn i, .back-to-top-btn i, .back-to-home-btn i {
    color: white;
    font-size: 30px;
}

/* Hover Effect for WhatsApp Button */
.whatsapp-btn:hover {
    background-color: #128c7e;
}

/* Hover Effect for Call Button */
.call-btn:hover {
    background-color: #007bff;
}

/* Hover Effect for Call Button */
.back-to-home-btn:hover {
    background-color: #a83232;
}

@media screen and (max-width: 600px) {
    .whatsapp-btn,
    .call-btn,
    .back-to-home-btn {
        display: none;
    }

}


/* Mobile screen styles */
/*@media screen and (max-width: 600px) {*/
    /* Make the WhatsApp and Call buttons appear as a ribbon */
/*    .whatsapp-btn,*/
/*    .call-btn {*/
/*        position: fixed;*/
/*        top: calc(100% - 50px);*/
/*        bottom: 0 !important;*/
/*        width: 50%; */
/*        border-radius: none !important; */
/*        box-shadow: none; */
/*        padding: 10px; */
/*        height: 50px;*/
/*    }*/

    /* WhatsApp button on the left side */
/*    .whatsapp-btn {*/
/*        left: 0;*/
/*    }*/

    /* Call button on the right side */
/*    .call-btn {*/
/*        right: 0;*/
/*    }*/

    /* Remove the shake effect on mobile */
/*    .whatsapp-btn:hover, .call-btn:hover {*/
/*        animation: none;*/
/*    }*/

    /* Hide the Back to Top button */
/*    .back-to-top-btn {*/
/*        display: none;*/
/*    }*/

    /* Adjust footer margin to avoid overlap */
/*    footer { */
/*        margin-bottom: 60px;*/
/*    }*/
/*}*/





/*.back-to-top-btn:hover {*/
/*    background-color: #b7ba5b; */
/*    animation: shake 0.5s ease-in-out; */
/*}*/

/* Keyframes for Shake Effect */
/*@keyframes shake {*/
/*    0% {*/
/*        transform: translateX(0);*/
/*    }*/
/*    25% {*/
/*        transform: translateX(-5px);*/
/*    }*/
/*    50% {*/
/*        transform: translateX(5px);*/
/*    }*/
/*    75% {*/
/*        transform: translateX(-5px);*/
/*    }*/
/*    100% {*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/







        #popup-overlay {
            display: none;
        }

        /* Overlay Background */
        .popup-container-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Transparent dark overlay */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            animation: fadePopupIn 0.5s forwards;
        }

        /* Enquiry Popup */
        .enquiry-popup {
            display: flex;
            max-width: 600px; /* Increased width */
            width: 100%;
            background-color: #fff;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            box-sizing: border-box;
            animation: slidePopupIn 0.6s ease-out;
            position: relative; /* To position the close button */
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: transparent;
            border: none;
            color: #333;
            font-size: 20px;
            cursor: pointer;
        }

        .close-btn:hover {
            color: #c83d3d;
        }

        /* Left Popup Container */
        .left-popup-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 50%;
            padding: 10px;
            background-image: url('https://www.vikasjoshi.in/wp-content/uploads/2022/03/Investmentincommercialproperty-2.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
        }

        /* Right Popup Container */
        .right-popup-container {
            width: 100%;
            background-color: #fff;
            padding: 10px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
        }
        
        .right-popup-container h2 {
            margin: 0;
            color: #c83d3d;
        }


        /* Form Styling */
        .form-control {
            width: calc(100% - 18px);
            padding: 8px;
            margin-top: 6px;
            border-radius: 6px;
            border: 1px solid #ddd;
            font-size: 12px;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            border-color: #c83d3d;
            outline: none;
        }

        .form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
            font-size: 12px;
        }

        /* Submit Button Styling */
        .btn-submit {
            width: 100%;
            padding: 6px;
            background-color: #c83d3d;
            color: white;
            font-size: 12px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 5px;
        }

        .btn-submit:hover {
            background-color: #064c56;
        }

        /* Buttons Container for Call Us, Chat, Upload, View */
        .popup-buttons-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-top: 8px;
        }

        .popup-button {
            background-color: #064c56;
            color: white;
            padding: 8px;
            text-align: center;
            font-size: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background-color 0.3s ease-in-out;
            height: 35px; /* Smaller height */
            border: 2px solid #064c56;
            border-radius: 6px;
        }

        .popup-button:hover {
            background-color: #c83d3d;
        }

        .popup-button i {
            font-size: 14px;
        }

        .popup-button a {
            color: white;
            text-decoration: none;
            font-size: 10px;
            font-weight: bold;
        }

        .popup-button a:hover {
            text-decoration: underline;
        }

        /* Responsive adjustments */
        @media screen and (max-width: 768px) {
            .enquiry-popup {
                flex-direction: column;
                max-width: 600px;
                margin: 10px;
                max-height: 600px;
            }

            .left-popup-container {
                height: 200px;
            }


            .left-popup-container,
            .right-popup-container {
                width: 98%;
                margin: 0 auto;
                padding: 0;
            }

            .popup-buttons-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Animation */
        @keyframes fadePopupIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slidePopupIn {
            from {
                transform: translateY(100px);
            }
            to {
                transform: translateY(0);
            }
        }
