:root {
  --primary: #a134a7;
  --secondary: #a134a7;
  --white: #FFFFFF;
}

body,
html,
* {
  font-style: normal;
  color: #000000;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
}

/* ================= HEADER ================= */
:root {
  --primary: #a134a7;
  --secondary: #a134a7;
  --white: #ffffff;
}

/* GLOBAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
}

/* ================= HEADER ================= */
.header{
  position: sticky;
  top:0;
  width:100%;
  background:#fff;
  z-index:1000;
  box-shadow: rgba(0,0,0,0.15) 0px 3px 3px 0px;
}

/* Navbar */

.navbar{
  position:relative;
}

/* Dropdown */

.navbar .dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  z-index:2000;
  display:none;
}
.nav-show {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* NAVBAR */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary);
}

/* MENU */

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: .3s;
}

.nav a:hover {
  background: #f4f4f4;
  color: var(--secondary);
}

.nav li a:hover,
.nav li a.active {
  background-color: #f5d0fe;
  border: 1px solid #a21caf;
  color: #a21caf;
  box-shadow: 0 4px 10px rgba(168, 85, 247, 0.15);
}

/* CALL BUTTON */
.custom-call-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.custom-call-btn:hover {
  background-color: #f3d4f7;
  color: #000;
}

/* ================= DROPDOWN ================= */

.dropdown {
  position: relative;
}

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: 186%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  overflow: hidden;
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* LEFT PANEL */

.left-panel {
  width: 368px;
  background: #f7f7f7;
  padding: 20px;
}

.view-all {
  background: linear-gradient(90deg, #a134a7, #8e2db3);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-weight: bold;
}

.view-all:hover {
  background-color: #f3d4f7;
  color: #000;
}

.view-all strong {
  color: #fff;
}

.view-all p {
  color: #fff;
}

.category {
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: .3s;
}

.category:hover {
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--secondary);
}

.category small {
  display: block;
  font-size: 12px;
  color: #0a0a0a;
}

/* RIGHT PANEL */

.right-panel {
  flex: 1;
  padding: 25px;
}

.products {
  display: none;
}

.products.active {
  display: block;
}

.product-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: .3s;
}

.product-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 5px 12px rgba(0, 0, 0, .08);
  background: #f3d4f7;
}

.arrow {
  font-size: 18px;
  color: #999;
}

/* ================= MOBILE ================= */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media(max-width:900px){

  .menu-toggle{
    display:block;
    font-size:28px;
    background:none;
    border:none;
    color:#6a0dad;
    cursor:pointer;
  }

  .nav{
    display:none !important;
  }

  .offcanvas{
    background:linear-gradient(180deg,#d3cad9,#e7c7fe);
    color:#0b0b0b;
    z-index:1055 !important;
  }

  .offcanvas-start{
    width:280px;
  }

  .btn-close{
    filter:invert(1);
  }

  .mobile-nav{
    list-style:none;
    padding:0;
    margin-top:20px;
  }

  .mobile-nav li{
    margin-bottom:12px;
    text-decoration: none;
  }

  .mobile-nav a{
    text-decoration:none;
    color:#040404;
    font-weight:600;
    display:block;
    padding:12px;
    border-radius:8px;
    transition:0.3s;
  }

  .mobile-nav a:hover{
    background:rgba(255,255,255,0.15);
  }

}
/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 900px;
}

.tag {
  background: #fff;
  color: #a134a7;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

.hero-content h2 {
  font-size: 56px;
  margin: 20px 0 10px;
  color: #ffffff;
  /* White text */
  font-weight: 700;
  /* Bold */

}

.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
  color: #ffffff;
  /* White text */
  font-weight: 500;
  /* Medium weight */

}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-outline {
  border: 2px solid #fff;
  padding: 12px 28px;
 color: #a134a7;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  /* Bold */
  transition: 0.3s;
}

.hero-buttons .btn-outline:hover {
  background: #fff;
  color: #a134a7;
  /* Purple text */
  border: 2px solid #a134a7;
  /* Purple border */
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  /* Bold */
  transition: 0.3s;
}

.hero-buttons .btn-solid {
  background: #fff;
  color: #a134a7;
  /* Purple text */
  border: 2px solid #a134a7;
  /* Purple border */
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  /* Bold */
  transition: 0.3s;
}

.hero-buttons .btn-solid:hover {
  background: #a134a7;
  /* Purple background */
  color: #fff;
  /* White text */
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 12px 16px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
}

.arrow.left {
  left: 20px
}

.arrow.right {
  right: 20px
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(230, 223, 227, 0.5);
  cursor: pointer;
}

.dot.active {
  background: #040504;
}

/* PROGRESS */
.progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}

#progressBar {
  height: 100%;
  width: 33%;
  background: #fff;
  transition: width .5s;
}

/* INTRO */
.intro {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.intro h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.intro p {
  color: #020202;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero-content h2 {
    font-size: 34px
  }

  .hero-content p {
    font-size: 18px
  }

  .hero {
    height: 75vh
  }
}

/* our products */
.pr-container {
  max-width: 1200px;
  margin: auto;
}

.pr-header {
  text-align: center;
  margin-bottom: 40px;
}

.pr-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
}

.pr-header p {
  color: #151617;
  margin-top: 8px;
  font-size: 15px;
}

/* Grid */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.pr-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  position: relative;
}

.pr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pr-card img {
  width: 100%;
  height: 350px;
}

.pr-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.pr-content {
  padding: 16px;
}

.pr-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.pr-content p {
  font-size: 13px;
  color: #161617;
  margin-bottom: 10px;
  line-height: 1.4;
}

.pr-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}

.pr-category {
  color: #3b475b;
}

.pr-link {
  color: #7c3aed;
  text-decoration: none;
}

.pr-link:hover {
  text-decoration: underline;
}

/* Button */
.pr-button-wrap {
  text-align: center;
  margin-top: 40px;
}

.pr-button-wrap button {
  background: #7c3aed;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.pr-button-wrap button:hover {
  background: #6d28d9;
}

/* Responsive */
@media (max-width: 1024px) {
  .pr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pr-grid {
    grid-template-columns: 1fr;
  }
}

/* why choose us */
.why-section {
  padding: 80px 0;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.why-title {
  font-size: 36px;
  font-weight: 700;
  color: #020303;
  margin-bottom: 20px;
}

.why-description {
  font-size: 18px;
  color: #4b5563;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: #fde8fb;
  border: 1px solid #e195e4;
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-radius: 20px;
  padding: 30px 9px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.why-card-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Icon Colors */

.why-card-title-1 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #882393;
}

.primary-icon {
  background: #f9c5f4;
  color: #882393;
}

.why-card-title-2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #3a7c57;
}

.accent-icon {
  background: #d1fae5;
  color: #3a7c57;
}

.why-card-title-3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #3357a2;
}

.secondary-icon {
  background: #f1f5f9;
  color: #3357a2;
}

.why-card-title-4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #6d0d93;
}

.tursery-icon {
  background: #e2b579;
  color: #6d0d93;
}

/* Responsive */

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 28px;
  }

  .why-description {
    font-size: 16px;
  }
}

/* counter */
.contact-section {
  background-color: #f9fafb;
}

.counterr {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.subtitle {
  color: #0a0a0b;
  margin-bottom: 50px;
}

/* ===== Impact ===== */

.impact-section {
  padding: 20px 0 40px;
  background-color: #f9fafb;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.impact-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.counter {
  color: #a134a7;
  font-size: 36px;
  font-weight: 700;
}

/* ===== Large Tablets / Small Laptops ===== */
@media (max-width: 1024px) {

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .impact-card {
    padding: 25px;
  }

  .counter {
    font-size: 32px;
  }

  .subtitle {
    margin-bottom: 40px;
  }
}


/* ===== Tablets ===== */
@media (max-width: 768px) {

  .counterr {
    padding: 0 15px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .impact-card {
    padding: 22px;
  }

  .counter {
    font-size: 28px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 35px;
  }
}


/* ===== Mobile Large ===== */
@media (max-width: 576px) {

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .impact-card {
    padding: 20px;
  }

  .counter {
    font-size: 26px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
}


/* ===== Mobile Small ===== */
@media (max-width: 400px) {

  .impact-card {
    padding: 18px;
  }

  .counter {
    font-size: 24px;
  }

  .subtitle {
    font-size: 13px;
  }
}


/* ================= TESTIMONIALS ================= */
.ts-section {
  background: #f9fafb;
  padding: 70px 20px;
  overflow: hidden;

}

.ts-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Slider Wrapper */
.ts-slider-wrapper {
  overflow: hidden;
}

/* Slider Row */
.ts-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 25px;
}

/* Card */
.ts-card {
  min-width: calc(33.333% - 17px);
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* Avatar */
.ts-avatar {
  width: 50px;
  height: 50px;
  background: #059669;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Stars */
.ts-stars {
  color: #facc15;
  margin: 10px 0;
  font-size: 22px;
}

/* Controls */
.ts-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.ts-text {
  font-style: italic;
  color: #374151;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.ts-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #a134a7;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.ts-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
}

.ts-dots .active {
  background: #a134a7;
}

/* Responsive */
@media (max-width: 992px) {
  .ts-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .ts-card {
    min-width: 100%;
  }
}

/* ================= CTA ================= */
.kp-cta-section {
  background: #a134a7;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.kp-cta-container {
  max-width: 900px;
  margin: auto;
}

.kp-cta-heading {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.kp-cta-text {
  font-size: 18px;
  color: #f3e8f9;
  line-height: 1.7;
  margin-bottom: 35px;
}

.kp-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.kp-cta-btn {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

/* White Button */
.kp-cta-btn-primary {
  background: #ffffff;
  color: #a134a7;
  border: 2px solid #ffffff;
}

.kp-cta-btn-primary:hover {
  background: #f3f4f6;
}

/* Outline Button */
.kp-cta-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.kp-cta-btn-outline:hover {
  background: #ffffff;
  color: #9b2fae;
}

/* Responsive */
@media(max-width:768px) {
  .kp-cta-heading {
    font-size: 26px;
  }

  .kp-cta-text {
    font-size: 16px;
  }

  .kp-cta-btn {
    width: 100%;
    max-width: 260px;
  }
}

/* about us */

.about {
  padding: 70px 20px;

}

.about-container {
  max-width: 1200px;
  margin: auto;
}

/* Top Center Content */
.about-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.about-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #080608;
}

.about-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #050404;
}

/* Bottom Layout */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Text */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #0a060a;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #0a0909;
  margin-bottom: 14px;
}

/* Right Image */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Tablet */
@media (max-width: 992px) {
  .about-content {
    gap: 30px;
  }

  .about-image img {
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
    width: 100%;
  }

  .about-header h1 {
    font-size: 30px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-header p,
  .about-text p {
    font-size: 15px;
  }

  .about-image img {
    height: 320px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about {
    padding: 50px 15px;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-header h1 {
    font-size: 26px;
  }

  .about-image img {
    height: 260px;
  }
}

/* why choose us */
.wc-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wc-section {
  padding: 60px 20px;
  color: #08090a;
}

.wc-wrapper {
  max-width: 1200px;
  margin: auto;
}

.wc-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.wc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.wc-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: 0.3s ease;
}

.wc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.wc-icon {
  min-width: 45px;
  height: 45px;
  background: #f3d4f6;
  color: #a134a7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.wc-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.wc-text {
  font-size: 15px;
  color: #040505;
  line-height: 1.6;
}

.wc-full {
  grid-column: span 2;
}

/* responsive */

@media (max-width:768px) {

  .wc-grid {
    grid-template-columns: 1fr;
  }

  .wc-full {
    grid-column: span 1;
  }

}

/* donwload */
/* ===== Top Header Section ===== */
.top-banner {
  background: #e5e7eb;
  padding: 70px 8%;
}

.top-banner h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.top-banner p {
  font-size: 18px;
  color: #4b5563;
}

/* ===== Main Layout ===== */
.main-wrap {
  padding: 50px 8%;
}

.layout-box {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
}

/* ===== Sidebar ===== */
.left-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.left-item {
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: #fff;
  text-align: left;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

.left-item:last-child {
  border-bottom: none;
}

.left-item:hover {
  background: #f9fafb;
}

.left-item span {
  font-size: 22px;
  color: #9ca3af;
}

.active-link {
  color: #a21caf;
  font-weight: 600;
}

.active-link span {
  color: #a21caf;
}

/* ===== Right Content ===== */
.right-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

/* Top Bar */
.right-top {
  padding: 18px 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.right-top h2 {
  font-size: 22px;
  font-weight: 600;
}

/* Buttons */
.action-group {
  display: flex;
  gap: 12px;
}

.btn-purple {
  background: #9333ea;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

.btn-purple:hover {
  background: #7e22ce;
}

.btn-light {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #111827;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

.btn-light:hover {
  background: #f3f4f6;
}

/* PDF Viewer */
.viewer-box {
  height: 70vh;
}

.viewer-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Responsive ===== */
@media(max-width:992px) {
  .layout-box {
    grid-template-columns: 1fr;
  }
}

/* mission */
.kg-section {
  padding: 70px 20px;
}

.kg-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLE */

.kg-title {
  font-size: 28px;
  font-weight: 700;
  color: #030203;
  margin-bottom: 15px;
}

.kg-description {
  font-size: 16px;
  line-height: 1.7;
  color: #030303;
  max-width: 750px;
  margin: auto;
}

/* DIVIDER */

.kg-divider {
  height: 1px;
  background: #ddd;
  margin: 60px auto;
  max-width: 1000px;
}

/* COMMITMENT GRID */

.kg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */

.kg-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  text-align: left;
}

.kg-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #060506;
}

.kg-card:hover {
  background-color: #fde8fb;
}

.kg-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #0a0808;
}

/* BOTTOM TEXT */

.kg-bottom-text {
  margin-top: 35px;
  font-size: 16px;
  line-height: 1.7;
  color: #0b0a0a;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */

@media (max-width:768px) {

  .kg-grid {
    grid-template-columns: 1fr;
  }

  .kg-title {
    font-size: 24px;
  }

}

/* contact us */
.container-contact {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.page-header {
  text-align: center;
  padding: 60px 0 30px;
}

.page-header h1 {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-header p {
  color: #070809;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* MAIN WRAPPER */
.contact-wrapper {
  display: flex;
  gap: 40px;
  margin: 40px 0 70px;
}

/* CARD STYLE */
.card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.card h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* FORM */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  height: 100px;
}

.btn {
  width: 100%;
  padding: 13px;
  background: #a134a7;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.btn:hover {
  background: #a134a7;
}

/* INFO SECTION */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.icon-box {
  background: #f3d4f7;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 14px;
  color: #010101;
  line-height: 1.5;
}

.map {
  margin-top: 20px;
}

.map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

.pc-section {
  padding: 80px 20px 60px;
  text-align: center;
}

.pc-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pc-subtitle {
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 60px;
}

/* ================= GRID ================= */

.pc-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

/* ================= CARD ================= */

.pc-card {
  text-align: center;
}

.pc-icon {
  width: 90px;
  height: 90px;
  background: #e9c7ea;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-icon svg {
  width: 38px;
  height: 38px;
  stroke: #8b2aa6;
}

.pc-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pc-card-text {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 15px;
}

.pc-link {
  color: #8b2aa6;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.pc-link:hover {
  text-decoration: underline;
}

/* ================= NOTES SECTION ================= */

.pc-notes-section {
  background: #ececf0;
  padding: 60px 20px;
}

.pc-notes-box {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 35px 40px;
  border-radius: 12px;
}

.pc-notes-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

.pc-note-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
}

.pc-note-icon {
  font-weight: bold;
  font-size: 18px;
  margin-top: 2px;
}

.pc-note-info .pc-note-icon {
  color: #8b2aa6;
}

.pc-note-success .pc-note-icon {
  color: #16a34a;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .pc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pc-grid {
    grid-template-columns: 1fr;
  }

  .pc-section {
    padding: 60px 20px 40px;
  }

  .pc-notes-box {
    padding: 25px;
  }
}

/* faq */
.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 18px;
  color: #070707;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.faq-question span {
  font-size: 26px;
  color: #a134a7;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
  color: #040404;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 20px 25px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Responsive */
@media(max-width:768px) {
  .faq-header h2 {
    font-size: 28px;
  }

  .faq-header p {
    font-size: 15px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* enquiry page conatct */
.rx-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.rx-series {
  font-size: 13px;
  color: #080707;
}

/* Buttons */
.rx-btns {
  display: flex;
  gap: 8px;
}

/* Enquiry Button */
.rx-btn-enquiry {
  background: #a134a7;
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.rx-btn-enquiry:hover {
  background: #a134a7;
}

/* View Details Button */
.rx-btn-details {
  background: transparent;
  color: #a134a7;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
  .rx-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .rx-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .rx-product-grid {
    grid-template-columns: 1fr;
  }
}

/* subproducts */

.page-wrap {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

.bread-sec {
  width: 100%;
  text-align: center;
  padding: 30px 0 10px;
  font-size: 14px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  border-bottom: 1px solid #eee;
}

/* If you convert breadcrumb text into links */
.bread-sec a {
  text-decoration: none;
  color: #a134a7;
  transition: 0.3s;
}

.bread-sec a:hover {
  color: #7c1f85;
  text-decoration: underline;
}

/* Active page style */
.bread-sec span {
  color: #111;
  font-weight: 600;
}

/* Container alignment (optional if using container) */
.bread-sec {
  max-width: 1200px;
  margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .bread-sec {
    font-size: 13px;
    padding: 12px 15px;
  }
}

/* TITLE */

.title-sec {
  text-align: center;
  margin-bottom: 45px;
}

.main-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sub-title {
  font-size: 15px;
  color: #6b7280;
  max-width: 750px;
  margin: auto;
}

/* PRODUCT GRID */

.product-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
}

/* IMAGE SIDE */

.image-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
}

.main-img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  margin-bottom: 25px;
}

.main-img img {
  width: 100%;
  display: block;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.thumb-item {
  border: 2px solid #e5e7eb;
  padding: 5px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

.thumb-item img {
  width: 100%;
  display: block;
}

.thumb-item.active {
  border-color: #a12db4;
}

/* CONTENT SIDE */

.content-side {
  padding-top: 10px;
}

.block-title {
  font-size: 18px;
  font-weight: 700;
  margin: 18px 0 12px;
}

.text-para {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 15px;
}

.feature-line {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.feature-line:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a12db4;
  font-weight: 600;
}

.spec-line {
  font-size: 14px;
  margin-bottom: 8px;
  color: #4b5563;
}

.spec-line span {
  font-weight: 600;
  color: #111827;
}

/* BUTTONS */

.btn-row {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-fill {
  background: #a12db4;
  color: #fff;
  padding: 11px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.btn-outline {
  background: #fff;
  color: #a12db4;
  padding: 11px 24px;
  border: 1px solid #a12db4;
  border-radius: 6px;
  cursor: pointer;
}

/* RESPONSIVE */

@media(max-width:992px) {
  .product-sec {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media(max-width:600px) {
  .main-title {
    font-size: 22px;
  }
}

/* applications */
.applications-section {
  padding: 90px 20px 100px;
}

.applications-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================= */
/* HEADER */
/* ========================= */

.applications-header {
  text-align: center;
  margin-bottom: 70px;
}

.applications-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}

.applications-subtitle {
  font-size: 18px;
  color: #64748b;
  font-weight: 400;
}

/* ========================= */
/* GRID */
/* ========================= */

.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ========================= */
/* CARD */
/* ========================= */

.application-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 40px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.application-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

/* ========================= */
/* ICON */
/* ========================= */

.application-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: #f5d0f7;
  /* light purple */
  display: flex;
  align-items: center;
  justify-content: center;
}

.application-icon svg {
  width: 34px;
  height: 34px;
  stroke: #a134a7;
  /* purple icon color */
}

/* ========================= */
/* TEXT */
/* ========================= */

.application-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.application-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }

  .applications-title {
    font-size: 30px;
  }

  .applications-section {
    padding: 70px 15px;
  }

  .application-card {
    padding: 40px 20px;
  }
}

/* all products */
.gym-products-section {
  padding: 70px 20px;
}

.gym-container {
  max-width: 1200px;
  margin: auto;
}

.gym-section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Grid */

.gym-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */

.gym-product-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  position: relative;
  transition: 0.3s;
}

.gym-product-card:hover {
  transform: translateY(-6px);
}

/* Badge */

.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #22c55e;
  color: #fff;
  padding: 5px 12px;
  font-size: 11px;
  border-radius: 20px;
}

/* Image */

.gym-product-image {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 20px;
}

.gym-product-image:hover {
  transition-duration: .15s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  --tw-bg-opacity: 1;
  background-color: #f5d0fe;
}

/* Text */

.gym-product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gym-product-description {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.spec-heading {
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 4px;
}

.spec-text {
  font-size: 12px;
  color: #555;
  margin-bottom: 8px;
}

.feature-list {
  list-style: none;
  margin-bottom: 18px;
}

.feature-list li {
  font-size: 12px;
  margin-bottom: 4px;
  color: #555;
}

.feature-list li::before {
  content: "✓ ";
  color: #a134a7;
  font-weight: bold;
}

/* Footer */

.gym-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wholesale-label {
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 4px;
}

.view-btn {
  background: #a134a7;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 5px;
  cursor: pointer;
}

.view-btn:hover {
  background: #7e2c83;
}

/* Responsive */

@media(max-width:992px) {
  .gym-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .gym-product-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FOOTER ================= */
.kp-footer-wrapper {
  background: #f3f4f6;
  padding: 60px 0 20px;
  font-family: 'Inter', sans-serif;
}

.kp-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.kp-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.kp-footer-column {
  flex: 1;
}

.kp-footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.kp-footer-description {
  color: #070808;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 400px;
}

.kp-social-icon {
  width: 32px;
  height: 32px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
}

.kp-footer-heading {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.kp-footer-link {
  display: block;
  text-decoration: none;
  color: #040404;
  margin-bottom: 12px;
  transition: 0.3s;
}

.kp-footer-link:hover {
  color: #a134a7;
}

.kp-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.kp-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kp-icon-box svg {
  width: 20px;
  stroke: #a134a7;
}

.kp-contact-text {
  color: #040405;
  line-height: 1.6;
}

.kp-footer-bottom {
  border-top: 1px solid #d1d5db;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.kp-footer-copy {
  color: #050606;
}

.kp-footer-policy-links {
  display: flex;
  gap: 20px;
}

.kp-footer-policy-link {
  text-decoration: none;
  color: #020203;
  transition: 0.3s;
}

.kp-footer-policy-link:hover {
  color: #a134a7;
}

/* Responsive */
@media(max-width:900px) {
  .kp-footer-top {
    flex-direction: column;
  }

  .kp-footer-description {
    max-width: 100%;
  }

  .kp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .kp-footer-policy-links {
    margin-top: 10px;
  }
}