
        :root {
            --primary: #3a7ca5;
            --secondary: #16425b;
            --accent: #f7931e;
            --light: #f1f9f9;
            --dark: #17252a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            overflow-x: hidden;
        }
       

        /* Header Styles */
        .main-header {
            position: sticky;
            top: 0;
            background-color: white;
            /* box-shadow: 0 2px 15px rgba(0,0,0,0.1); */
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 10px;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none !important;
        }

        .logo-text span {
            color: var(--accent);
        }

        .search-container {
            flex-grow: 1;
            max-width: 600px;
            margin: 0 30px;
            position: relative;
        }

        .search-bar {
            width: 100%;
            padding: 12px 20px;
            border-radius: 30px;
            border: 1px solid #ddd;
            padding-right: 50px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .search-bar:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(247, 147, 30, 0.2);
        }

        .search-button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--accent);
            cursor: pointer;
            font-size: 1.1rem;
        }

        .header-icons {
            display: flex;
            gap: 20px;
        }

        .header-icon {
            position: relative;
            color: var(--dark);
            font-size: 1.3rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .header-icon:hover {
            color: var(--accent);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--accent);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: bold;
        }

        /* Main Navigation */
        .main-nav {
            position: relative;
        }

        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 15px 20px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Mega Menu */
        .mega-menu {
            position: absolute;
            left: 0;
            top: 100%;
            width: auto;
            min-width: 100%;
            background-color: white;
            padding: 30px;
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.15); */
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
            z-index: 100;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 20px;
            padding: 20px;
            border-radius: 0 0 8px 8px;
        }

        .nav-item:hover .mega-menu,
        .mega-menu:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mega-menu-col {
            min-width: 200px;
            flex: 1;
        }
        
        .featured-products {
            grid-column: span 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .product-card {
            background: #f9f9f9;
            border-radius: 8px;
            padding: 15px;
            transition: transform 0.2s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .mega-menu-title {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
        }

        .mega-menu-list {
            list-style: none;
        }

        .mega-menu-item {
            margin-bottom: 10px;
        }

        .mega-menu-link {
            color: #555;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
            display: block;
            padding: 5px 0;
        }

        .mega-menu-link:hover {
            color: var(--accent);
        }

        .dropdown-img {
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            border-radius: 8px;
            height: 180px;
        }

        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--dark);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            margin-right: -8px;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 85%;
            max-width: 320px;
            height: 100vh;
            background-color: white;
            box-shadow: 2px 0 15px rgba(0,0,0,0.2);
            z-index: 2000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            will-change: transform;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav-header {
            padding: 15px;
            background-color: var(--secondary);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav-list {
            list-style: none;
        }

        .mobile-nav-item {
            border-bottom: 1px solid #eee;
              display: flex;
              flex-direction: column;
        }
        .mobile-nav-link-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            color: var(--dark);
            text-decoration: none;
            cursor: pointer;
        }


        .mobile-nav-link {
            display: block;
            padding: 15px 20px;
            color: var(--dark);
            text-decoration: none;
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background-color: #f5f5f5;
            padding-left: 15px;
        }

        .mobile-submenu.active {
            max-height: 500px;
        }

        .mobile-submenu-link {
            display: block;
            padding: 12px 30px;
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .mobile-nav-toggle {
            font-size: 1.2rem;
            color: var(--dark);
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav-toggle::before,
        .mobile-nav-toggle::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 2px;
            background-color: var(--dark);
            transition: all 0.3s ease;
        }

        .mobile-nav-toggle::before {
            transform: rotate(90deg);
        }

        .mobile-submenu.active + .mobile-nav-toggle::before {
            transform: rotate(0);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .search-container {
                margin: 0 15px;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                padding: 0px 0;
            }

            .header-top {
                display: grid;
                grid-template-columns: auto 1fr auto;
                grid-template-areas: 
                    "logo icons menu"
                    "search search search";
                gap: 5px;
                padding: 0px 0;
                align-items: center;
            }
            .mobile-menu-btn {
                grid-area: menu;
                justify-self: end;
            }
            .logo {
                grid-area: logo;
            }
            .header-icons {
                grid-area: icons;
                justify-self: end;
            }
            .search-container {
                grid-area: search;
            }

            .search-container {
                order: 1;
                width: 100%;
                margin: 0;
                max-width: none;
                padding: 0 15px;
            }

            .header-icons {
                order: 2;
                margin-left: 0;
                margin-right: 15px;
            }

            .logo {
                order: 0;
                flex: 1;
            }

            .mobile-menu-btn {
                display: block;
                order: 0;
            }

            .main-nav {
                display: none;
            }

            .logo-text {
                font-size: 1.3rem;
            }
        }

  /* hero section */

    * slider img css */
.slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.slider-button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
.slider-button:hover {
    background-color: rgba(255, 255, 255, 1);
}
/* category panel section */
    :root {
    --hwcat-card-bg: #ffffff;
    --hwcat-text-color: #374151;
    --hwcat-text-secondary: #6b7280;
    --hwcat-shadow-color: rgba(0, 0, 0, 0.05);
    --hwcat-border-radius: 0.75rem; /* 12px */
    --hwcat-scrollbar-bg: #f3f4f6;
    --hwcat-scrollbar-thumb: #cbd5e1;
  }
    .hwcat-wrapper {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: var(--hwcat-text-color);
    padding: 64px 24px 80px;
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  .hwcat-container {
    max-width: 1500px;
    width: 100%;
  }

  .hwcat-heading {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 48px;
    color: #111827;
    user-select: none;
  }

  .hwcat-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.25rem; /* 20px */
    scroll-padding: 1rem 0;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--hwcat-scrollbar-thumb) var(--hwcat-scrollbar-bg);
  }

  /* Webkit scrollbar */
  .hwcat-scroll::-webkit-scrollbar {
    height: 8px;
  }
  .hwcat-scroll::-webkit-scrollbar-track {
    background: var(--hwcat-scrollbar-bg);
    border-radius: 0.5rem;
  }
  .hwcat-scroll::-webkit-scrollbar-thumb {
    background-color: var(--hwcat-scrollbar-thumb);
    border-radius: 0.5rem;
  }

  .hwcat-card {
    background-color: var(--hwcat-card-bg);
    flex: 0 0 140px;
    border-radius: var(--hwcat-border-radius);
    box-shadow: 0 1.5px 6px var(--hwcat-shadow-color);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    user-select: none;
    scroll-snap-align: start;
  }

  .hwcat-card:hover,
  .hwcat-card:focus-visible {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    outline: none;
  }

  .hwcat-image {
    width: 130px;
    height: 130px;
    border-radius: 30px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
  }

  .hwcat-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--hwcat-text-color);
    text-align: center;
    line-height: 1.2;
  }

  /* Responsive */

  @media (max-width: 768px) {
    .hwcat-wrapper {
      padding: 48px 16px 64px;
    }
    .hwcat-container {
      max-width: 100%;
    }
    .hwcat-heading {
      font-size: 2.25rem;
      margin-bottom: 32px;
    }
    .hwcat-card {
      flex: 0 0 120px;
      padding: 0.75rem;
    }
    .hwcat-image {
      width: 64px;
      height: 64px;
      margin-bottom: 0.5rem;
    }
  }

  @media (max-width: 480px) {
    .hwcat-card {
      flex: 0 0 100px;
      padding: 0.5rem;
    }
    .hwcat-image {
      width: 56px;
      height: 56px;
      margin-bottom: 0.4rem;
    }
    .hwcat-name {
      font-size: 0.9rem;
    }
  }

    /* category panel section ends */


    /* product page style */

    
/* css for shope by category panel */

    .main-title {
            text-align: center;
            padding: 2rem 0 1rem;
            font-size: 2.5rem;
            color: #1e40af;
            animation: fadeIn 1s ease-out;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .container.scroll-animate {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-container {
            display: flex;
            flex-direction: row;
            min-height: 400px;
        }
        
        /* Image Gallery Styles */
        .gallery-container {
            flex: 1;
            position: relative;
            overflow: hidden;
        }
        
        .gallery-slides {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.7s cubic-bezier(0.7, 0, 0.3, 1);
        }
        
        .gallery-slide {
            width: 33.333%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-slide:hover img {
            transform: scale(1.05);
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .gallery-slide:hover .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-controls {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .gallery-dot.active {
            background-color: white;
            transform: scale(1.2);
        }
        
        /* Categories Section Styles */
        .categories-container {
            flex: 0 0 350px;
            background-color: #f9fafb;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .categories-title {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            position: relative;
            color:#1e40af;
        }
        
        .categories-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #3b82f6;
            animation: underlineGrow 0.8s ease-out forwards;
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1rem;
            background: white;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .category-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }
        
        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .category-item:hover::before {
            opacity: 0.9;
        }
        
        .category-item:hover .category-icon {
            transform: scale(1.1) translateZ(30px);
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
        }
        
        .category-item:hover .category-name {
            color: white;
            transform: scale(1.1);
        }
        
        .category-icon {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 0.5rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }
        
        .category-name {
            font-weight: 600;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }
        
        /* Animations */
        @keyframes slideInLeft {
            from {
                transform: translateX(-100%) rotate(-5deg);
                opacity: 0;
            }
            to {
                transform: translateX(0) rotate(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInRight {
            from {
                transform: translateX(100%) rotate(5deg);
                opacity: 0;
            }
            to {
                transform: translateX(0) rotate(0);
                opacity: 1;
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes floatIn {
            0% {
                transform: translateY(30px) scale(0.9);
                opacity: 0;
            }
            100% {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        @keyframes gradientPulse {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes underlineGrow {
            from {
                width: 0;
            }
            to {
                width: 60px;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
            }
            
            .categories-container {
                flex: 1;
                padding: 1.5rem;
            }
            
            .categories-title {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .categories-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-container {
                min-height: 300px;
            }
        }

/* css end for shope by category panel */

/* buy now button for top products */
.buy-now-btn {
    display: inline-block;
    background-color: #03254b; /* teal */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* location style */
 .business-loc-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa;
            line-height: 1.6;
        }
        
        .business-loc-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        .business-loc-outer {
            max-width: 1500px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        .business-loc-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e1e5eb;
        }
        
        .business-loc-header h1 {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .business-loc-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .business-loc-main {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        
        .business-loc-mapbox {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .business-loc-map {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }
        
        .business-loc-details {
            flex: 1;
            min-width: 300px;
            padding: 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #f9fafc;
        }
        
        .business-loc-details h2 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        
        .business-loc-details h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #2f6f85;
        }
        
        .business-loc-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 22px;
        }
        
        .business-loc-icon {
            margin-right: 18px;
            color: #39687b;
            font-size: 1.4rem;
            min-width: 24px;
            text-align: center;
            padding-top: 3px;
        }
        
        .business-loc-text h3 {
            margin: 0 0 6px 0;
            font-size: 1.15rem;
            color: #34495e;
            font-weight: 500;
        }
        
        .business-loc-text p {
            margin: 0;
            color: #555;
            line-height: 1.5;
        }
        
        .business-loc-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
           background: linear-gradient(135deg, #5F9EA0, #06b6d4);
            color: white;
            padding: 14px 28px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            margin-top: 25px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            width: fit-content;
        }
        
        .business-loc-btn:hover {
           background: linear-gradient(135deg, #5F9EA0, #06b6d4);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
        }
        
        .business-loc-btn i {
            margin-right: 10px;
            font-size: 1rem;
        }
        
        @media (max-width: 768px) {
            .business-loc-header h1 {
                font-size: 1.8rem;
            }
            
            .business-loc-map {
                height: 350px;
            }
            
            .business-loc-details {
                padding: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .business-loc-outer {
                padding: 20px 15px;
            }
            
            .business-loc-header h1 {
                font-size: 1.6rem;
            }
        }
/* location styles ends */

/* contact us  css for index page */

  .container_contact {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1000px;
      margin: auto;
    }

    .contact-form, .contact-info {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      flex: 1 1 45%;
      min-width: 300px;
    }

    .contact-form h2,
    .contact-info h2 {
      margin-bottom: 20px;
      text-align: center;
      color: #333;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      color: #555;
      margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      resize: vertical;
      font-size: 16px;
    }

    .form-group textarea {
      min-height: 100px;
    }

    .form-group button {
      background-color: #0d3662;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 5px;
      cursor: pointer;
      width: 100%;
      font-size: 16px;
    }

    .form-group button:hover {
      background-color: #1a4068;
    }

    .message {
      margin-top: 15px;
      text-align: center;
      font-weight: bold;
    }

    .message.success {
      color: green;
    }

    .message.error {
      color: red;
    }
        @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .contact-form,
      .contact-info {
        flex: 1 1 100%;
      }
    }



/* footer css */

.page-root {
    width: 100%;
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    color: #333;
    box-sizing: border-box;
  }

  footer.advanced-footer {
    background: linear-gradient(135deg, #5f72a0, #055d89);
    color: #e0e7ff;
    padding: 48px 24px 32px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 40px;
    box-sizing: border-box;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
  }

  .footer-section h3 {
    font-weight: 600;
    color: #dbeafe;
    margin-bottom: 16px;
    font-size: 1.125rem;
  }

  .footer-link {
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
  }

  .footer-link:hover,
  .footer-link:focus {
    color: #bee3f8; /* lighter teal */
    outline: none;
  }

  .footer-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
  }

  .footer-social-icons a {
    color: #ffffff;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0 0 0 / 0.25);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .footer-social-icons a:hover,
  .footer-social-icons a:focus {
    background: #1c7a7a;
    color: #d1fae5;
    outline: none;
  }

  .newsletter-form {
    margin-top: 8px;
    display: flex;
    max-width: 320px;
  }

  .newsletter-input {
    padding: 14px 16px;
    border-radius: 8px 0 0 8px;
    border: none;
    font-size: 1rem;
    flex: 1;
    outline-offset: 2px;
    background-color: rgba(255 255 255 / 0.3);
    color: #e0e7ff;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: inset 0 0 8px rgba(255 255 255 / 0.4);
  }

  .newsletter-input::placeholder {
    color: #cbd5e1;
  }

  .newsletter-input:focus {
    outline: 2px solid #d1fae5;
    background-color: #d1fae5;
    color: #064e3b;
    box-shadow: none;
  }

  .newsletter-button {
    background: #000000;
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  }

  .newsletter-button:hover,
  .newsletter-button:focus {
    background: #333333;
    outline: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255 255 255 / 0.25);
    margin-top: 40px;
    padding-top: 24px;
    font-size: 0.875rem;
    color: #dbeafe;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .newsletter-form {
      flex-direction: column;
      max-width: 100%;
      min-height: 400px;
    }
    .newsletter-input {
      border-radius: 8px;
      margin-bottom: 12px;
      box-shadow: inset 0 0 8px rgba(255 255 255 / 0.4);
    }
    .newsletter-button {
      border-radius: 8px;
      padding: 14px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    }
  }

  .kitchen-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 !important;
}

@media (max-width: 600px) {
  .kitchen-main-img {
    height: 220px;
  }
}

/* contact us  css for index page */

  .container_contact {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1000px;
      margin: auto;
    }

    .contact-form, .contact-info {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      flex: 1 1 45%;
      min-width: 300px;
    }

    .contact-form h2,
    .contact-info h2 {
      margin-bottom: 20px;
      text-align: center;
      color: #333;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      color: #555;
      margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      resize: vertical;
      font-size: 16px;
    }

    .form-group textarea {
      min-height: 100px;
    }

    .form-group button {
      background-color: #09386a;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 5px;
      cursor: pointer;
      width: 100%;
      font-size: 16px;
    }

    .form-group button:hover {
      background-color: #052c55;
    }

    .message {
      margin-top: 15px;
      text-align: center;
      font-weight: bold;
    }

    .message.success {
      color: green;
    }

    .message.error {
      color: red;
    }
        @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .contact-form,
      .contact-info {
        flex: 1 1 100%;
      }
    }