        /* 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 {
            display: flex;
            flex-direction: row; 
            gap: 30px;
            align-items: center;
            justify-content: center;
        }

        /* 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 #096171;*/
        }
        
        /* 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;
            
        }

        .navbar .logo img {
            height: 70px; /* Reduced size */
            width: 70px;
            object-fit: contain;
            margin-right: 8px;
            border: 2px solid #ffffff;
            cursor: pointer;
        }

        .navbar #brand-name-header {
            letter-spacing: 1px;
            color: #096171;
            font-size: 25px;
            font-style: italic;
            cursor: pointer;
        }
        
        .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: 14px;
            align-items: ;
        }
        

        /* Initial state for navbar links */
        .navbar-nav a {
            color: #096171;
            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: slideUp 1s ease-out forwards; /* Slide up on load */
        }
        
        /* Apply the slide-up effect when hovering */
        .navbar-nav a:hover {
            background-color: #e1efed; /* 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%, #004d4f); /* Even more white */
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 70px;
            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;
            transform: translateY(-10px); /* Start slightly above */
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;

        }

        .dropdown-content a {
            padding: 8px 12px;
            font-size: 15px;
            color: #096171;
            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 - 180px);
                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;
                display: none;
            }

            .menu-toggle {
                display: block;
                font-size: 1.8rem;
                color: #096171;
            }

            .dropdown {
                width: 100%;
            }

            /* 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: 100px; /* 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: 480px) {
            .navbar {
                padding: 8px 12px;
            }

            .navbar-nav a {
                padding-left: 8px;
                font-size: 0.75rem;
            }

            .navbar .logo {
                font-size: 1rem;
            }

            .navbar-nav a i {
                font-size: 1.1rem;
            }

            .menu-toggle {
                font-size: 2rem;
            }
            .navbar .brand-name {
                letter-spacing: 1px;
                color: #096171;
                font-size: 20px;
            }

        }


        /* Hidden state */
        .hidden {
            display: none !important;
        }
        
        /* Ribbon Styles */
        .ribbon {
            background-color: #096171;  /* 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 #096171;  /* Same color as ribbon */
        }
        
        /* 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 */
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input {
    width: 200px;
    padding: 10px;
    margin-right: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}

.search-btn {
    background-color: #096171;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.search-btn i {
    font-size: 16px;
}

/* Cart icon styles */
.cart-icon {
    position: relative;
    color: #096171;
}

/* Cart Icon Animation */
.cart-icon a {
    color: #096171;
    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: #e1efed; /* Example background color on hover */
    transform: translateY(-5px); /* Move the element up by 5px */
}

/* 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%, #004d4f); /* 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: #096171;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -15px;
    background-color: ;
    color: #096171;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
}

.cart-text {
    text-decoration: none;
    color: #096171;
    font-size: 1rem;

}      
        
        
        
/* Responsive Styling */
@media screen and (max-width: 768px) {
       .search-container {
           display: none;
       }
       
        .cart-icon a {
            padding: 0;

        }
        
        .cart-count {
            position: absolute;
            top: -15px;
            right: -15px;
        }

       .cart-text { 
           display: none;

       }
}
        
        
        main {
            min-height: 800px;
        }
        
        
        /* Footer Styles */
        footer {
            background-color: #042f37; /* Darker Purple background */
            color: #fff;
            padding: 40px 0;
            text-align: left;
            font-family: 'Arial', sans-serif;
            margin-top: 20px;
            border-radius: 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: #fff;
            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: #fff;
            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: #fff;
        }
        
        .footer-quick-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-quick-links li {
            margin: 8px 0;
        }
        
        .footer-quick-links li a {
            color: #fff;
            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;
        }
        
        .footer-contact h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .footer-contact p {
            margin: 8px 0;
            font-size: 16px;
            color: #fff;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: #f5c342;
        }
        
        /* Footer Bottom Section: Copyright */
        .footer-copy {
            margin-top: 40px;
            font-size: 14px;
            color: #bbb;
            text-align: center;
        }
        
        .footer-copy p {
            margin: 0;
        }
        
        /* Responsive Styling */
        @media screen and (max-width: 768px) {
            .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: 100px;  /* 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% + 55px); /* 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: 100px;  /* 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% - 55px); /* 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 {
    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;
}


/* 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%; /* Each takes 50% of the screen width */
        border-radius: none !important; /* Make the buttons rectangular */
        box-shadow: none; /* Remove shadow for cleaner design */
        padding: 10px; /* Reduce height of the buttons */
        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; /* Disable shake effect */
    }

    /* 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: #096171;
        }

        /* 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: #096171;
        }


        /* 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: #096171;
            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: #096171;
            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: #096171;
        }

        .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);
            }
        }
