:root {
  --accent: #e33;
  --muted: #777;
  --bg: #f6f6f6
}

* {
  box-sizing: border-box
}

body {
  font-family: Montserrat, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  margin: 0;
  color: #222
}

a {
  color: inherit;
  text-decoration: none
}

/* Header */
.topbar {
  background: #8b8b8b;
  color: #fff;
  padding: 6px 16px;
  text-align: center;
  font-size: 13px
}

header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50
}

.navwrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px
}

.logo img {
  height: 70px !important;
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0
}

nav a {
  padding: 8px 6px;
  color: #333;
  font-weight: 600;
  font-size: 14px
}

/* Hero slider */
.hero {
  position: relative;
  overflow: hidden
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
  height: 600px
}

.slide {
  min-width: 100%;
  background-size: cover;
  background-position: center
}

.slide .overlay {
  height: 100%;
  width: 100%;
  background: none;
}

.hero-controls {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px
}

.hero-controls button {
  background: #960971;
  border: none;
  color: #fff;
  padding: 8px 10px;
  border-radius: 4px
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center
}

.about img {
  width: 100%;
  border: 10px solid #f1f1f1
}

.card-mission {
  background: #960971;
  color: #fff;
  padding: 20px;
  border-radius: 6px;
  margin-top: 18px
}

/* Feature cards */
.features {
  display: flex;
  gap: 18px;
  margin-top: 40px
}

.feature {
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  flex: 1
}

.feature img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px
}

.feature h4 {
  margin: 10px 0 6px
}

.feature p {
  color: var(--muted);
  font-size: 14px
}

/* Products */
.products-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center
}

.product {
  width: calc(20% - 14px);
  min-width: 120px;
  padding: 12px
}

.product img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 6px
}

/* Kitchen feature */
.kitchen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin: 40px 0
}

.kitchen img {
  width: 100%;
  border-radius: 6px
}

.kitchen .ktext {
  background: #fff;
  padding: 30px;
  border-radius: 6px
}

/* Certifications */
.certs {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0
}

.certs img {
  width: 100px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 6px
}

footer {
  background: #ddd;
  padding: 28px 16px
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.footer-grid h5 {
  margin-top: 0
}

.small {
  font-size: 13px;
  color: #555
}

/* Responsive */
@media (max-width:900px) {

  .about,
  .kitchen {
    grid-template-columns: 1fr
  }

  .product {
    width: calc(33.333% - 12px)
  }

  .features {
    flex-direction: column
  }

  nav ul {
    display: none
  }
}

@media (max-width:480px) {
  .product {
    width: calc(50% - 10px)
  }

  .slides {
    height: 260px
  }
}




/* Navbar Style */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  display: block;
  transition: 0.3s;
}

.nav-links a:hover {
  color: red;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown-menu li a {
  padding: 10px 15px;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: block;
}



/* Top Bar */
.top-bar {
  background: #0e1f6f;
  color: #fff;
  font-size: 16px;
  padding: 6px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.top-bar i {
  margin-right: 6px;
  /* gap between icon & text */
}


/* Navbar Style */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  display: block;
  transition: 0.3s;
}

.nav-links a:hover {
  color: red;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown-menu li a {
  padding: 10px 15px;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Red Box Slider */
.mission-slider {
  background: #960971;
  color: #fff;
  padding: 25px;
  margin-top: 20px;
  border-radius: 6px;
  position: relative;
  min-height: 150px;
}

.mission-slider i {
  font-size: 45px;
  margin-right: 15px;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mission-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.mission-text p {
  font-size: 15px;
  line-height: 1.4;
}

/* Bottom triangle */
.mission-slider::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 20px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #960971;
}

/* Dots */
.dots {
  text-align: left;
  margin-top: 15px;
}

.dot {
  height: 8px;
  width: 30px;
  margin: 0 4px;
  background: #ccc;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
}

.dot.active {
  background: #fff;
}

.features {
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  /* overlay */
}

.features .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  z-index: 2;
}

.feature-card {
  position: relative;
  width: 340px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s, box-shadow 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}

.feature-card:hover img {
  transform: scale(1.1);
}

.feature-content {
  padding: 20px;
  position: relative;
  background: #fff;
  text-align: left;
}

.feature-content .icon {
  font-size: 30px;
  color: #960971;
  margin-bottom: 12px;
}

.feature-content h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  transition: color 0.3s;
}

.feature-card:hover .feature-content h3 {
  color: #960971;
}

.feature-content p {
  font-size: 14px;
  color: #555;
  transition: color 0.3s;
}

.feature-card:hover .feature-content p {
  color: #333;
}

.feature-content .plus {
  position: absolute;
  top: -20px;
  right: 20px;
  background: #960971;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Basic styling for the products section */
.products-section {
  padding: 50px 20px;
  background-color: #f8f8f8;
}

.products-section h2 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Flexbox container for the columns */
.product-grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Defining the 'col-2' class for a responsive layout */
.col-2 {
  flex: 1 1 calc(20% - 20px);
  /* Adjusts for 5 columns on large screens */
  max-width: calc(20% - 20px);
}

/* Adjusts for smaller screens to ensure responsiveness */
@media (max-width: 1200px) {
  .col-2 {
    flex: 1 1 calc(33.33% - 20px);
    /* 3 columns */
    max-width: calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .col-2 {
    flex: 1 1 calc(50% - 20px);
    /* 2 columns */
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .col-2 {
    flex: 1 1 100%;
    /* 1 column */
    max-width: 100%;
  }
}

/* Styling for each product item (the content inside the column) */
.product-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.product-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.product-item:hover {
  transform: translateY(-10px);
  /* Lifts the item up */
}

.product-item:hover img {
  transform: scale(1.05);
  /* Slightly zooms in the image */
}


/* Products Section */
.products-section {
  padding: 50px 20px;
  text-align: center;
}

.products-section h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 30px;
}

/* Carousel Container */
.product-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.product-carousel {
  display: flex;
  align-items: center;
}

.arrow {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  cursor: pointer;
  color: #555;
  transition: background-color 0.3s, color 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.arrow:hover {
  background-color: #ddd;
  color: #000;
}

.prev-arrow {
  left: -25px;
  /* Adjust position to outside of the container */
}

.next-arrow {
  right: -25px;
  /* Adjust position to outside of the container */
}

/* Product List */
.product-list {
  display: flex;
  overflow-x: hidden;
  /* Hide the horizontal scrollbar */
  scroll-behavior: smooth;
  /* Smooth scrolling effect */
  gap: 20px;
  margin-left: 5%;
  padding: 10px;
  margin: 0 30px;
  /* Space for the arrows */
}

.product-item {
  min-width: calc(20% - 16px);
  /* 5 items + gap. (100%/5 = 20%, 4 gaps = 80px, 80/5 = 16) */
  flex-shrink: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-item img {
  width: 100%;
  height: 250px;
  /* Fixed height for consistent look */
  object-fit: cover;
  /* Ensures images fill the space without distortion */
  display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-item {
    min-width: calc(25% - 15px);
    /* 4 items on smaller screens */
  }
}

@media (max-width: 900px) {
  .product-item {
    min-width: calc(33.33% - 13.33px);
    /* 3 items */
  }
}

@media (max-width: 600px) {
  .product-item {
    min-width: calc(50% - 10px);
    /* 2 items */
  }
}

@media (max-width: 400px) {
  .product-item {
    min-width: 100%;
    /* 1 item on mobile */
  }
}


.slider-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.slide {
  display: flex;
  align-items: center;
  min-height: 400px;
  transition: transform 0.5s ease-in-out;
  padding: 20px;
}

.slide img {
  width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.slide-content {
  width: 50%;
  padding: 20px;
}

.slide-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.slide-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 20px;
}

.slide-content a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  position: relative;
}

.slide-content a::after {
  content: "→";
  margin-left: 8px;
  transition: margin-left 0.3s;
}

.slide-content a:hover::after {
  margin-left: 15px;
}

/* Dots */
.dots {
  text-align: center;
  margin: 15px 0;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background: #960971;
}




.slider-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.slide {
  display: flex;
  align-items: center;
  min-height: 400px;
  transition: transform 0.5s ease-in-out;
  padding: 20px;
}

.slide img {
  width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.slide-content {
  width: 50%;
  padding: 20px;
}

.slide-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.slide-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 20px;
}

.slide-content a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  position: relative;
}

.slide-content a::after {
  content: "→";
  margin-left: 8px;
  transition: margin-left 0.3s;
}

.slide-content a:hover::after {
  margin-left: 15px;
}

/* Dots */
.dots {
  text-align: center;
  margin: 15px 0;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background: #960971;
}

.footer-title {
  font-weight: 600 !important;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #960971;
}

.footer-bottom {
  font-size: 14px;
  color: #555;
}

.social-icons a {
  margin: 0 8px;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}
.color-a{
   color: #fff !important;
}




/* ===== Banner Section ===== */
.page-banner {
  position: relative;
  width: 100%;
  height: 250px; /* Adjust height */
  background: url("images/about-1.jpg")
              no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #96097180; /* Shadow overlay */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-content h1 {
  font-size: 48px;
  margin: 0;
  font-weight: bold;
}

.banner-content .breadcrumb {
  margin-top: 10px;
  font-size: 16px;
  color: #ddd;
}
.banner-content .breadcrumb span {
  margin: 0 5px;
  color: #fff;
}


@media (max-width: 768px) {
  .top-bar {
    font-size: 12px;
    padding: 6px 3%;
  }
}




.menu-btn { display: none; font-size: 22px; cursor: pointer; }
  nav { flex: 1; }
  .nav-links { list-style: none; margin: 0; padding: 0; display: flex; margin-left: 10%; }
  .nav-links li { position: relative; }
  .nav-links a { text-decoration: none; color: #000; }
  .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #eee; list-style: none; padding: 0; margin: 0; }
  .dropdown-menu li a { display: block; padding: 8px 15px; }

  @media (max-width: 768px) {
    .menu-btn { display: block; }
    nav { display: none; width: 100%; }
    nav.active { display: block; }
    .nav-links { flex-direction: column;    margin-left: 2%; }
    .nav-links li { border-bottom: 1px solid #ccc; }
    .dropdown-menu { position: static; background: #f5f5f5; }
  }




  /* Mobile view */
  @media (max-width: 768px) {
    .top-bar {
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }
  }


------------
  /*
    .top-bar {
      background: #333;
      color: white;
      display: flex;
      justify-content: space-between;
      padding: 5px 15px;
      font-size: 14px;
    }
*/
    /* Header */
    header {
      background: white;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      position: relative;
      z-index: 10;
    }

    .navwrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .logo img {
      height: 50px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      margin: 0;
      padding: 0;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      padding: 8px;
      display: block;
    }

    nav ul li a:hover {
      color: #0e1f6f;
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      list-style: none;
      padding: 10px 0;
      margin: 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .dropdown-menu li a {
      padding: 8px 20px;
      color: #333;
    }
    .dropdown:hover .dropdown-menu {
      display: block;
    }

    /* Mobile Menu Button */
    .menu-btn {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f8f8f8;
        display: none;
        flex-direction: column;
        border-top: 1px solid #ddd;
      }
      nav ul {
        flex-direction: column;
        width: 100%;
      }
      nav ul li {
        border-top: 1px solid #ddd;
      }
      nav ul li a {
        padding: 14px;
      }
      .menu-btn {
        display: block;
      }
    }

    /* Animation */
    nav.active {
      display: flex;
      animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }


