 :root {
            --cream-primary: #f5e8d0;
            --cream-secondary: #e8d7c3;
            --cream-accent: #d4b896;
            --cream-dark: #a68b5b;
            --cream-darker: #8b7355;
            --text-dark: #3d2f1f;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #fffdf9;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navigation Bar */
        .navbar-custom {
            background-color: #fffdf9;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-custom.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: bold;
            color: var(--cream-darker) !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            font-family:  cursive, sans-serif; /* Semi-cursive font */
        }

        .navbar-brand i {
            margin-right: 10px;
            color: var(--cream-accent);
        }

        .nav-link {
            color: var(--cream-darker) !important;
            font-weight: bold; /* Made navigation links bold */
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--cream-accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .navbar-toggler {
            border: none;
            padding: 5px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .hamburger {
            width: 30px;
            height: 20px;
            position: relative;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--cream-darker);
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2) {
            top: 8px;
        }

        .hamburger span:nth-child(3) {
            top: 16px;
        }

        .hamburger.active span:nth-child(1) {
            top: 8px;
            transform: rotate(135deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .hamburger.active span:nth-child(3) {
            top: 8px;
            transform: rotate(-135deg);
        }
/* footer */


 footer {
            position: relative;
            color: white;
            padding: 60px 0 30px;
            overflow: hidden;
        }

        /* Background images setup */
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgb(0 0 0 / 65%), rgb(139 115 85 / 39%)), url("../images/spices.png1.png") right / cover no-repeat;
            background-size: 50% 100%;
            z-index: -1;
        }

        /* Mobile - show only one background image */
        @media (max-width: 768px) {
            footer::before {
                background: linear-gradient(rgb(139 115 85), rgb(139 115 85));
                background-size: 100% 18%;
                top: -69%;
                }
                    }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 5px 49px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--cream-primary);
            font-weight: bold; /* Made footer headings bold */
        }

        .footer-section p, .footer-section li {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: bold; /* Made footer text bold */
        }

        .footer-section p {
            text-align: justify;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: bold; /* Made footer links bold */
        }

        .footer-section ul li a:hover {
            color: var(--cream-primary);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
           background-color: #e8d7c3;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--cream-accent);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 1;
            font-weight: bold; /* Made footer bottom text bold */
        }
 @media (max-width: 767px) {
            .hide-mobile {
                display: none !important;
            }
            .footer-section{
                padding:0px 0px;
            }
        }

        .logo-img{
            width:85px;
        }