
        :root {
            --primary: #3a7ca5;
            --secondary: #16425b;
            --accent: #eb9d38;
            --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 css for slider */

    .slider-container {
      position: relative;
      width: 100%;
      height: 69vh;
      overflow: hidden;
    }

    .slider-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }

    .slider-slide.slider-active {
      opacity: 1;
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      font-size: 2rem;
      padding: 0.5rem 1rem;
      cursor: pointer;
      z-index: 10;
    }

    .slider-prev {
      left: 10px;
    }

    .slider-next {
      right: 10px;
    }

    .slider-indicators {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 18px;
      width: 100%;
      text-align: center;
      z-index: 10;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      pointer-events: none;
    }
    .slider-indicators input[type="radio"] {
      pointer-events: auto;
      appearance: none;
      width: 12px;
      height: 12px;
      margin: 0 6px;
      border-radius: 50%;
      background-color: #ddd;
      border: none;
      outline: none;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .slider-indicators input[type="radio"]:checked {
      background-color: #fff;
    }

    @media (max-width: 768px) {
      .slider-container {
        height: 40vh;
      }
      .slider-nav {
        font-size: 1.5rem;
        padding: 0.3rem 0.7rem;
      }
    }

    /* 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 */

        :root {
            --primary-color: #cad2e0;
            --gray-50: #f9fafb;
            --gray-800: #1f2937;
            --gray-700: #374151;
            --gray-500: #6b7280;
            --white: #ffffff;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--gray-800);
            background-color: var(--gray-50);
            padding: 1rem;

        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .main-title {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .accessories-container {
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-radius: 16px;
            overflow: hidden;
            background-color: var(--white);
            padding: 1.5rem;
        }
        
        .accessories-layout {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .main-image-container {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            max-width: 60%;
            height: 350px;
        }
        
        .main-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .categories-container {
            flex: 1;
            min-width: 40%;
            padding-left: 2rem;
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1rem;
        }
        
        .category-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            /* background-color: var(--white); */
            border-radius: 8px;
            padding: 1rem;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .category-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 3px solid var(--primary-color);
        }
        
        .category-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        @media (min-width: 640px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 768px) {
            .accessories-layout {
                flex-direction: row;
            }
        }

        @media (max-width: 768px) {
            .accessories-layout {
                flex-direction: column;
            }
            
            .main-image-container {
                width: 100%;
                max-width: 100%;
                height: 50vh;
                margin-bottom: 20px;
            }
            .categories-container {
                width: 100%;
                min-width: 100%;
                padding-left: 0;
            }
        }

/* 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, #608cb3, #05437a);
            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, #5f6ea0, #055583);
            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, #3e3864, #034d72);
    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%;
      }
    }

            /* out straingth css */
          /* Container for the panel */
  .millennium-panel {
    max-width: 1200px;
    margin: 2rem auto 4rem auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
  }

  /* Center line text */
  .millennium-panel::before,
  .millennium-panel::after {
    content: "";
    flex: 1;
    /* border-top: 2px solid #e94b3cff; */
    align-self: center;
  }

  .strength-title {
    position: relative;
    margin: 0 1rem;
    flex: none;
    white-space: nowrap;
    font-weight: 500;
    font-size: 2rem;
    color: #2d3748; /* dark blue */
    letter-spacing: 0.05em;
  }

  /* Items container */
  .strength-items {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    flex: 1 0 0;
    gap: 1rem;
    padding-bottom: 60px;
  }

  /* Each item style */
  .strength-item {
    text-align: center;
    flex: 1;
    min-width: 0;
  }

  .strength-item svg {
    width: 64px;
    height: 64px;
    stroke: #344966ff;
    stroke-width: 2;
    fill: none;
    margin: 0 auto 0.75rem;
    display: block;
  }

  /* Text style */
  .strength-text {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .strength-text strong {
    display: block;
    margin-top: 0.25rem;
  }

  /* Responsive vertical layout */
  @media (max-width: 720px) {
    .millennium-panel {
      flex-direction: column;
      border-top: none;
      border-bottom: none;
      gap: 3rem;
    }
    .millennium-panel::before,
    .millennium-panel::after {
      display: none;
    }
    .strength-title {
      margin: 0 auto 1rem auto;
      font-size: 1.5rem;
      text-transform: none;
      letter-spacing: normal;
    }
    .strength-items {
      flex-direction: column;
      gap: 2.5rem;
      margin-top: 0;
    }
    .strength-item {
      flex-basis: auto;
    }
    .strength-item svg {
      margin-bottom: 1rem;
    }
  }
/* css end for out strength */       
 /* css for catalog section */
          .cpanel-container {
            --cpanel-primary: #4a6bff;
            --cpanel-secondary: #ff7043;
            --cpanel-accent: #26c6da;
            --cpanel-dark: #2d3748;
            --cpanel-light: #f8f9fa;
            --cpanel-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --cpanel-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--cpanel-dark);
            padding: 2rem;
            max-width: 100%;
        }

        .cpanel-header {
            text-align: center;
            margin-bottom: 3rem;
            
        }
        cpanel-header ::before,
        cpanel-header ::after {
                content: "";
                flex: 1;
                /* border-top: 2px solid #e94b3cff; */
                align-self: center;
        }
        .cpanel-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--cpanel-dark);
            position: relative;
            display: inline-block;
        }

        .cpanel-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--cpanel-primary), var(--cpanel-accent));
            border-radius: 2px;
        }

        .cpanel-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .cpanel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin: 0 auto;
            max-width: 1400px;
        }

        .cpanel-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--cpanel-shadow);
            transition: var(--cpanel-transition);
            position: relative;
            height: 440px;
        }

        .cpanel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .cpanel-card-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .cpanel-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--cpanel-transition);
        }

        .cpanel-card:hover .cpanel-card-image img {
            transform: scale(1.05);
        }

        .cpanel-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
            z-index: 1;
        }

        .cpanel-card-content {
            padding: 1.5rem;
            position: relative;
        }

        .cpanel-card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--cpanel-dark);
        }

        .cpanel-card-content p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: -webkit-box;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cpanel-card-tag {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: var(--cpanel-primary);
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            position: absolute;
            top: -12px;
            right: 20px;
            z-index: 2;
        }

        .cpanel-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .cpanel-card-footer span {
            font-size: 0.85rem;
            color: #777;
        }

        .cpanel-explore-btn {
            padding: 0.5rem 1rem;
            background: var(--cpanel-primary);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--cpanel-transition);
            text-decoration: none;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
        }

        .cpanel-explore-btn:hover {
            background: var(--cpanel-accent);
            transform: translateX(5px);
        }

        .cpanel-explore-btn::after {
            content: '→';
            margin-left: 5px;
            transition: var(--cpanel-transition);
        }

        .cpanel-explore-btn:hover::after {
            transform: translateX(3px);
        }

        @media (max-width: 768px) {
            .cpanel-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .cpanel-container {
                padding: 1rem;
            }
            
            .cpanel-header h1 {
                font-size: 2rem;
            }
            
            .cpanel-grid {
                grid-template-columns: 1fr;
            }
        }
/* css end for catalog */

