 /* Reset */
    * {margin:0; padding:0; box-sizing:border-box;}
    body {font-family: Arial, sans-serif;}

  /* NAVBAR */
.navbar {
  /* width: 100%; */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  position: sticky;
  top: 0;
  z-index: 10;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
}

.slider img {
  height: 400px;
}
  .navbar .logo img {
  height: 50px;
}

.navbar .menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

.navbar .menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color .2s;
}

.navbar .menu li a:hover {
  color: #5c1d87;
}

.navbar .cta {
  background: #5c1d87;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.navbar .cta:hover {
  background: #4a166d;
}

.navbar .hamburger {
  display: none;
}


    /* SLIDER */
.ma-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 15px; /* space below navbar */
}

/* Each image */
.ma-slider img {
  width: 100%;
  height: auto;            /* maintain aspect ratio */
  object-fit: cover;       /* fill container without squishing */
  display: block;
}
    .ma-track{
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 600ms ease-in-out;
    }
    .ma-slide{ flex: 0 0 100%; height: 100%; }
    .ma-slide img{
      width: 100%;
       height: 100%;
      object-fit: cover;
      display: block;
    }
    .ma-caption{
      position: absolute;
      left: 0; right: 0; bottom: 0;
      background: #5c1d87;
      color: #fff;
      padding: 12px 18px;
      text-align: center;
      font-weight: 700;
      line-height: 1.4;
      z-index: 3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .ma-btn{
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border: 0;
      background: rgba(0,0,0,0.45);
      color: #fff;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      font-size: 22px;
      line-height: 42px;
      text-align: center;
      cursor: pointer;
      z-index: 4;
      transition: background 0.2s ease;
    }
    .ma-btn:hover{ background: #5c1d87; }
    .ma-prev{ left: 16px; }
    .ma-next{ right: 16px; }

   @media (max-width: 992px) {
  .navbar .menu { gap: 16px; }
  .ma-slider { height: 60vh; }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  /* Hide menu initially and stack vertically */
  .navbar .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }

  .navbar .menu.active {
    display: flex;
  }

  .navbar .menu li {
    text-align: center;
    padding: 10px 0;
  }

  .navbar .cta {
    margin: 10px auto;
    display: block;
  }

  /* Hamburger button */
  .navbar .hamburger {
    display: block;
    cursor: pointer;
    font-size: 24px;
    background: none;
    border: none;
  }

  .ma-slider { height: 50vh; }
  .ma-btn { width: 38px; height: 38px; font-size: 20px; line-height: 38px; }
  .ma-caption { font-size: 14px; }
}

@media (max-width: 480px) {
  .navbar { padding: 10px 16px; }
  .navbar .logo img { height: 40px; }
  .ma-slider { height: 42vh; }
  .ma-caption { font-size: 13px; padding: 8px 10px; }
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap; /* responsive */
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text h2 span {
  color: #5a0dad; /* purple highlight */
}

.about-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
}

.btn-about {
  display: inline-block;
  background: #5a0dad;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-about:hover {
  background: #3e087a;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-image img {
    max-width: 100%;
  }
}

.services {
  text-align: center;
  padding: 60px 20px;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.services h2 span {
  color: #5a2ca0; /* purple accent */
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.15); /* visible gray shadow */
  transition: 0.3s ease;
  text-align: center;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #5a2ca0;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
}

.card:hover {
  background: #5a2ca0;
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0px 12px 30px rgba(0,0,0,0.25); /* darker hover shadow */
}

.card:hover h3 {
  color: #fff;
}

section.brand-section {
  background: linear-gradient(135deg, #5c1d8747, #2563eb9e);
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card styles */
.bm-card {
  background: #ffffff;
  color: #1e293b;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px #5c1d87;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px #5c1d87;
}

.bm-card__icon {
  font-size: 40px;
  color: #5c1d87;
  margin-bottom: 16px;
}

.bm-card__title {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 700;
  color: #5c1d87;
}

.bm-card__text {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: #475569;
}

.values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .content {
    grid-template-columns: 1fr;
  }
  
  .bm-card {
    padding: 20px 18px;
  }

  .bm-card__title {
    font-size: 20px;
  }

  .bm-card__icon {
    font-size: 32px;
  }
}




/* Section */
.shop-products-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #475569;
  font-size: 15px;
}

/* Product Grid */
.shop-products-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); /* responsive grid */
  gap: 20px;
}

/* Card */
.shop-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Image */
.shop-card-img-container {
  background: #5a0dad;
  padding: 15px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.shop-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
    border-radius: 10px;
}

/* Body */
.shop-card-body {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
  min-height: 40px;
}

.shop-card-price {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 12px;
}

/* Button */
.shop-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 15px;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.shop-btn:hover {
  background: #1e40af;
}

.faq-section {
  max-width: 850px;
  margin: 60px auto;
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #5a0dad;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9fafb;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f5eeff;
}

.faq-question .icon {
  font-size: 20px;
  font-weight: bold;
  color: #5a0dad;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg); /* changes + to × style */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px 20px;
}



.footer {
  background: #5a0dad;
  color: #fff;
  padding: 50px 20px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #f7f8f9;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #dbeafe;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.qr-container {
  display: flex;
  gap: 15px; /* space between images */
  flex-wrap: wrap; /* so they stack on small screens */
}

.qr-img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
}

/* Bottom section */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #c2a3e4;
  color: #fff;
  margin-right: 10px;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #5a0dad;
}

.subscribe input {
  padding: 8px 12px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
  width: 220px;
}

.subscribe button {
  padding: 8px 15px;
  border: none;
  background: #b38ade;
  color: #fff;
  font-weight: 600;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe button:hover {
  background: #5a0dad;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}


section {
  padding: 40px 0;
}

/* ===== Breadcrumb Area ===== */
.breadcrumbs-area {
  margin-bottom: 25px;
}



.breadcrumbs-area ul {
  list-style: none;
  display: flex;
  font-size: 15px;
  color: #666;
  padding-left: 0;
}

.breadcrumbs-area ul li {
  margin-right: 6px;
}

.breadcrumbs-area ul li a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs-area ul li a:hover {
  color: #007bff;
}

.breadcrumbs-area ul li::after {
  content: "›";
  margin-left: 6px;
  color: #e53935;
}

.breadcrumbs-area ul li:last-child::after {
  content: "";
}

/* ===== About Section ===== */
.about-wrap-layout3 {
  background: #fff;  /* keep white */
}

.about-box-layout5 {
  max-width: 900px;
  margin: auto;
}

.about-box-layout5 .item-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.about-info p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

/* ===== About Image ===== */
.about-img {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.about-img img {
  width: 100%;
  max-width: 350px;
  border-radius: 6px;
}

.about-img p {
  text-align: center;
  font-size: 15px;
  margin-top: 8px;
  font-weight: 500;
}

.item-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #5c1d87;   /* Primary blue */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.item-btn:hover {
  background-color: #5c1d87;   /* Darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.item-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.item-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
    .reviews-section {
      padding: 50px 20px;
    }

    .reviews-section h2 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .reviews-section p {
      font-size: 16px;
      max-width: 800px;
      margin: 0 auto 30px;
      line-height: 1.6;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .video-card {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .video-card:hover {
      transform: translateY(-5px);
    }

    iframe {
      width: 100%;
      height: 200px;
      border: none;
    }