

/* end */

.card {
    width: 250px; 
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .card-text {
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
  }

  /* Hover Effect */
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  }

  /*  */
  .image-slider {
  width: 100%;
  height: 500px; /* banner ki height ke hisaab se set karo */
  overflow: hidden;
  position: absolute;
}

.image-slider img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover; /* image ko stretch na kare, nicely fit kare */
  position: absolute;
  top: 4%;
  left: 49%;
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

.image-slider img.active {
  opacity: 1;
}

/* Customize page */
.customize-section {
  background-color: #a94477;
  padding-bottom: 30px;
  padding-top: 30px;
}
.container.text-center h2 {
  
  font-size: 36px;
  line-height: 60px;
  font-weight: 600;
  color: white;
}

.container.text-center p {
  font-size: 16px;
  color: black;
}
#container-p{
  color: white;
}
.customize-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* width thodi badi */
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.feature-box {
  background: #fff;
  padding: 20px; /* padding kam */
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.feature-box img {
  width: 170px;   /* logo bada */
  height: 170px;
  margin-bottom: -24px;
  object-fit: contain;
}
.feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  padding-top: 50px;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* ------------------How it work---------------------- */

.how-it-works {
  background: #fff; /* White background for the section */
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
  color: #000; /* Default black color for texts */
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000; /* Black heading */
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.step-card {
  background: linear-gradient(to bottom, #ae4a84 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 20px rgba(174, 74, 132, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  color: white; /* White text inside */
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(174, 74, 132, 0.4);
}

.step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  background: #ae4a84; /* Keep this or change if you want */
  color: white;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(174, 74, 132, 0.6);
  transition: background-color 0.3s ease;
}

.step-number:hover {
  background-color: #ae4a84;
  box-shadow: 0 12px 30px rgba(174, 74, 132, 0.8);
}

.step-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: white; /* white text */
  margin: 0;
  min-height: 70px;
}

/* Button Styling */
.how-it-works .btn-primary {
  background-color: #ae4a84;
  border: none;
  padding: 12px 50px;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 40px;
  box-shadow: 0 6px 20px rgba(174, 74, 132, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

.how-it-works .btn-primary:hover {
  background-color: #8e2970;
  box-shadow: 0 8px 30px rgba(142, 41, 112, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .step-card {
    padding: 1.8rem 1rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
  
  .step-text {
    font-size: 1rem;
    min-height: auto;
  }
}

/* steps section */

.customization-section {
  background: linear-gradient(135deg, #f9f5ff, #fdf8f8);
  padding: 70px 20px;
}

.steps-title {
  margin-top: 10px;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: black;
  margin-bottom: 50px;
}

.customize-steps {
  display: flex;
  justify-content: center;
  gap: 25px;
  
}
/* Portrait phones (most common) */
@media (max-width: 480px) {
    /* CSS for small phones */
    .customize-steps{
    flex-wrap: wrap;
    }
}

/* Larger phones / small tablets */
@media (max-width: 768px) {
    /* CSS for phones + tablets */
    .customize-steps{
    flex-wrap: wrap;
    }
}
/* iPad Air Portrait */
@media (max-width: 820px) {
      .customize-steps{
    flex-wrap: wrap;
    }
}

/* iPad Air Landscape */
@media (max-width: 1180px) {
      .customize-steps{
    flex-wrap: wrap;
    }
}



.step {
  background: #fff;
  border-radius: 15px;
  padding: 30px 35px;
  width: 310px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Step header (number + divider + icon) */
.step-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.step span {
  display: inline-block;
  background: #a5719f;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.divider {
  width: 1px;
  height: 30px;
  background: rgba(0,0,0,0.2); /* light black divider */
}

.step i {
  font-size: 28px;
  color: #a5719f;
}

.step p {
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin: 0;
}

/* Hover Effect */
.step:hover {
  background: #fdf6fa;
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.request-btn {
  margin-top: 30px;
  text-align: center;
}
.quote-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #a5719f;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.quote-btn:hover {
  background: #8c5d85;
}

/* --------------------------------------------------- Last Minute Gifting ----------------------------------------------------------*/

    .last-minute-gifting {
      /* background: linear-gradient(to bottom, #ae4a84, #ffffff); */
      background-color: #ae4a84;
    }
    .last-minute-gifting .gift-box {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      transition: transform 0.3s ease, background 0.3s ease;
    }
    .last-minute-gifting .gift-box:hover {
      transform: translateY(-6px);
      background: rgba(255, 255, 255, 0.12);
    }
    .last-minute-gifting h2 {
      font-size: 2rem;
    }
    .last-minute-gifting p {
      font-size: 0.95rem;
    }
    .last-minute-gifting .btn {
      font-weight: 500;
    }

    .welcome-section {
    background: #fff;
    color: #333;
  }
  .welcome-section h2 {
    font-size: 2rem;
    position: relative;
  }
  .welcome-section p {
    font-size: 1rem;
    line-height: 1.6;
  }


  /* Form styling  */

  .custom-form-section {
  background-color: #ae4a84;
  color: white;
}

.custom-form-section .form-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 15px;
  color: white;
}

.custom-form-section .form-label {
  font-weight: 600;
  color: #fff;
}

.custom-form-section .form-control,
.custom-form-section .form-select {
  border-radius: 10px;
  border: none;
  padding: 10px 15px;
}

.custom-form-section .form-control:focus,
.custom-form-section .form-select:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

.custom-form-section .btn {
  background: #fff;
  color: #ae4a84;
  font-weight: bold;
  transition: 0.3s;
}

.custom-form-section .btn:hover {
  background: #ffcae0;
  color: #590d36;
}
    .section-title {
      font-weight: 700;
      font-size: 2rem;
    }

    .highlight {
      color: #ae4a84; /* Orange color similar to your screenshot */
    }

    .section-subtext {
      font-size: 1rem;
      color: #333;
      max-width: 900px;
      margin: 0 auto;
    }


    /* Gifting.php */

    .hero {
      background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1470&q=80') center center/cover no-repeat;
      min-height: 70vh;
      color: white;
      position: relative;
      display: flex;
      align-items: center;
      text-shadow: 0 0 10px rgba(0,0,0,0.7);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }

    /* Corporate Gifts */
    /* Fancy Title */
.fancy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Section Background */
.gift-section {
  /* background: linear-gradient(135deg, #ae4a84 0%, #f78ca0 100%); */
  background: linear-gradient(to right, #7b5b73, #d9b8cf);
}

/* Glass Card Style */
/* Section Background */
.gift-section-white {
  background: #ffffff;
}

/* Fancy Title */
#container-h2 {
  color: black;
}
.fancy-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ae4a84;
  text-shadow: none;
}

/* Glass Card Style (light version) */
.glass-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  color: #333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Icon Circle */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Color Variants */
.bg-pink { background: #ff5e7a; }
.bg-purple { background: #a566c4; }
.bg-blue { background: #4f86f7; }
.bg-gold { background: #f4c542; }

/* Card Text */
.glass-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.glass-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  min-height: 50px;
}

/* Explore Button */
.btn-explore {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 25px;
  background: #ae4a84;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-explore:hover {
  background: #92266a;
  color: #fff;
}

.gift-icon {
  font-size: 2.5rem;
}

/* Why Section */
.why-section {
  background-color: #ae4a84;
  color: white;
}

.fancy-title {
  color: white;
  font-size: 36px;
  font-weight: 700;
}

.section-subtext {
  max-width: 800px;
  margin: 0 auto;
  color: black;
  font-size: 16px;
  line-height: 1.7;
}

.why-icon-circle {
  width: 60px;
  height: 60px;
  background-color: white;
  color: #ae4a84;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-icon-circle:hover {
  transform: scale(1.1);
}

.why-card h5 {
  font-weight: 600;
  font-size: 20px; /* Approx 1.25rem or 36px as visual scale */
  margin-bottom: 10px;
  color: white;
}

.why-card p {
  color: #f2f2f2;
  font-size: 16px;
}

.client-logos {
  padding-top: 20px;
}

.client-logo {
  max-height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}



    /* Timeline step circle */
    .step-circle {
      width: 50px;
      height: 50px;
      background: #0d6efd;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 1rem;
      user-select: none;
    }
    /* Product badge */
    .badge-ship {
      background-color: #198754;
      font-weight: 600;
      font-size: 0.8rem;
      padding: 0.25em 0.5em;
      border-radius: 0.25rem;
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
    }
    /* Use case icons */
    .usecase-icon {
      font-size: 2.5rem;
      color: #0d6efd;
      margin-bottom: 0.5rem;
    }
    /* Testimonials */
    .testimonial {
      background: #f8f9fa;
      border-radius: 0.5rem;
      padding: 1.5rem;
      box-shadow: 0 0 10px rgb(0 0 0 / 0.05);
      margin-bottom: 1.5rem;
      font-style: italic;
      position: relative;
    }
    .testimonial::before {
      content: "“";
      font-size: 3rem;
      position: absolute;
      top: 0.2rem;
      left: 1rem;
      color: #0d6efd;
      font-weight: 700;
      font-family: serif;
    }
    /* Final CTA banner */
    .final-cta {
      background-color: #0d6efd;
      color: white;
      padding: 3rem 1rem;
      text-align: center;
    }
    .final-cta h2 {
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    /* Smooth fade-in animation */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s forwards;
    }
    .fade-in.delay-1 {
      animation-delay: 0.2s;
    }
    .fade-in.delay-2 {
      animation-delay: 0.4s;
    }
    .fade-in.delay-3 {
      animation-delay: 0.6s;
    }
    .fade-in.delay-4 {
      animation-delay: 0.8s;
    }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

/*--------------------------------------------------- Gallery section ---------------------------------------------------*/

.gallery-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-title {
    background-color: #ae4a84;
    padding: 40px 0;
    margin-bottom: 40px;
    color: white;
    border-radius: 0 0 50px 50px;
}
.gallery-item span {
  margin-left: 115px;
}


/* ------------------------------ Corporate Gifts for Every Occasion------------------------  */

.section-container {
  padding: 60px 20px;
  text-align: center;
  background-image: url("../../assets/images/bg-hexa.jpg");
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}

/* Optional overlay for readability */
.section-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.section-container > * {
  position: relative;
  z-index: 1;
}

.section-container h2 {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #a94477;
}

.section-container p {
  color: #555;
  margin-bottom: 30px;
}

/* Swiper */
.swiper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 40px;
}

.swiper-slide {
 
  /* border-radius: 25px; */
  overflow: hidden;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
  text-align: center;
  transition: all 0.3s ease;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
}

.slide-footer {
  padding: 15px;
  font-weight: 600;
  font-size: 1.1em;
}

/* Footer background colors */
.bg-customer { background: #e6f0fd; }
.bg-employee { background: #fff7e5; }
.bg-seasonal { background: #f0ffe6; }

/* Navigation */
.custom-arrow-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.custom-nav-btn {
  background-color: #a46aa2;
  color: white;
  border: none;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.custom-nav-btn:hover {
  background-color: #925a91;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .custom-arrow-container { display: none; }
}


/* ------------------------------------------ Testimonals section ------------------------------------- */

/* Section Styling */
.testimonials-section {
  background: #a5719f;
  padding: 40px 10%;
  text-align: center;
  color: white;
}

.section-title-2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.section-subtitle {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

/* .testimonials-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
} */
.testimonials-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


/* Testimonial Box */
.testimonial-box {
  flex: 0 0 350px;  /* Prevent auto-stretching */
  width: 350px;
  border-radius: 12px;
  padding: 30px 20px;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}


.testimonial-box:hover {
  transform: translateY(-10px);
}

/* Backgrounds */
.box1 {
  background-image: url("../../assets/images/testimonial-2.png");
}

.box2 {
  background-image: url("../../assets/images/testimonial-1.png");
}

.box3 {
  background-image: url("../../assets/images/testimonial-2.png");
}

/* Header */
.testimonial-header {
  text-align: center;
  margin-bottom: 15px;
}

.company-logo {
  width: 80px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 12px;
}

.testimonial-header h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.role {
  font-size: 14px;
  line-height: 1.4;
}

/* Content */
.testimonial-content .rating {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-content p {
  font-size: 15px;
  line-height: 1.6;
}

/* Carousel outer wrapper */
.testimonial-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Arrows container below testimonials */
.testimonial-buttons {
  margin-top: 20px;
  text-align: center;
}

/* Arrow buttons */
.testimonial-arrow {
  background: #b179aa; /* soft purple background */
  border: none;
  color: white;
  font-size: 24px;
  padding: 4px;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  /* shadow to match the image */
  box-shadow: inset 0 4px 8px rgba(255, 255, 255, 0.1),
              inset 0 -4px 8px rgba(0, 0, 0, 0.2),
              0 4px 10px rgba(0, 0, 0, 0.15);

  transition: all 0.2s ease;
}

.testimonial-arrow:hover {
  background: #e0d2e3;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .testimonials-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: hidden; /* Hide scrollbar */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-box {
    min-width: 100%;
    flex: 0 0 100%;
  }

  /* Show arrows only on mobile */
  .testimonial-arrow {
    display: inline-block;
  }
}

@media (min-width: 769px) {
  .testimonials-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    overflow: visible;
    flex-wrap: nowrap;
  }

  .testimonial-box {
    width: 350px;
    flex: 0 0 auto;
  }

  /* Hide arrows on desktop */
  .testimonial-arrow {
    display: none;
  }
}


/* ---------------------------- Treasured Section ---------------------------------- */

/* =========================
   TREASURE SECTION STYLING
   ========================= */
.treasure-section {
  padding: 80px 5%;
  text-align: center;

  /* Background Image */
  background-image: url("../../assets/images/bg-hexa.jpg");
  background-repeat: repeat;     /* repeats pattern */
  background-size: contain;      /* keeps original hexagon size */
  background-position: center;
  position: relative;
}

/* Optional overlay for better readability */
.treasure-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* adjust opacity if needed */
  z-index: 0;
}

/* Ensure all content appears above overlay */
.treasure-section > * {
  position: relative;
  z-index: 1;
}

/* =========================
   CONTENT STYLING
   ========================= */
.treasure-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.treasure-heading {
  font-size: 36px;
  font-weight: bold;
  color: #a94477;
  margin-bottom: 16px;
}

.treasure-description {
  font-size: 16px;
  color: #000;
  margin-bottom: 40px;
}

/* =========================
   CAROUSEL WRAPPER
   ========================= */
.carousel-wrapper {
  overflow: hidden;
}

.treasure-row {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding-bottom: 10px;
}

/* Hide scrollbars */
.treasure-row::-webkit-scrollbar {
  display: none;
}
.treasure-row {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* =========================
   CARD DESIGN
   ========================= */
.treasure-card {
  flex: 0 0 18.5%;
  background: #f3dbf0;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.treasure-img-box {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 12px;
}

.treasure-img-box img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.treasure-img-box img:hover {
  transform: scale(1.1);
}

.treasure-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.treasure-text {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
  margin: 0;
}

/* =========================
   CAROUSEL CONTROLS
   ========================= */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.carousel-btn {
  background: #b179aa;
  border: none;
  color: white;
  font-size: 24px;
  padding: 12px;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: inset 0 4px 8px rgba(255, 255, 255, 0.1),
              inset 0 -4px 8px rgba(0, 0, 0, 0.2),
              0 4px 10px rgba(0, 0, 0, 0.15);

  transition: all 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (min-width: 1025px) {
  .carousel-btn {
    display: none;
  }
}

@media (max-width: 1024px) {
  .treasure-card {
    flex: 0 0 23%;
  }
}

@media (max-width: 768px) {
  .treasure-card {
    flex: 0 0 100%;
  }
  .treasure-section {
    padding: 33px 5%;
  }
  .carousel-btn {
    font-size: 20px;
    padding: 8px 12px;
  }
}


/*-------------------------------- Celebrate with Elegant Hampers & Gifts ----------------------------*/
/* 🎁 Gift Section Styling */
.gift-section {
  /* background: #a5719f; */
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #222;
  text-align: center;
}

.gift-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gift-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.gift-description {
  font-size: 1rem;
  color: #f5f5f5;
  margin-bottom: 40px;
}

/* 🎠 Carousel Wrapper */
.gift-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Row of Cards */
.gift-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 10px;
}

.gift-row::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* 🃏 Card Style */
.gift-card {
  min-width: 280px;
  max-width: 280px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* 🖼️ Image Box */
.gift-img-box {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.gift-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.gift-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.gift-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* ⬅️➡️ Arrows */
.gift-carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 25px;
}

.gift-carousel-btn {
background: #b179aa;
    border: none;
    color: white;
    font-size: 24px;
    padding: 12px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 8px rgba(255, 255, 255, 0.1), inset 0 -4px 8px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s 
ease;
}

.gift-carousel-btn:hover {
  background-color: #333;
  color: #fff;
  transform: scale(1.1);
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .gift-card {
    min-width: calc((100% - 40px) / 3); /* 3 cards per view, gap 20px * 2 */
    max-width: calc((100% - 40px) / 3);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gift-card {
    min-width: 100%; /* 1 card per view */
    max-width: 100%;
  }

  .gift-heading {
    font-size: 1.6rem;
  }

  .gift-description {
    font-size: 0.95rem;
  }
}



/* --------------------------- WhatsApp Floating ---------------------------------- */

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366; /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}


/*------------------------------------------------------------- Best seller page CSS ------------------------------------------------*/

/* best seller banner  */
.banner-section {
      position: relative;
      /* background: url("../../assets/images/ṇew-new-banner.png") no-repeat center center; */
      /* background: linear-gradient(to bottom, #C4A1B0, #8C6174); */
      background: linear-gradient(to right, #7b5b73, #d9b8cf);
      background-size: cover;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #fff;
      padding: 0 80px;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.3s ease-in-out;
    }

    .left-content {
      flex: 1;
      text-align: justify;
    }

    .left-content h1 {
      font-size: 46px;
      font-weight: 700;
      text-shadow: 0 4px 4px rgba(0, 0, 0, .22);
      margin-bottom: 20px;
      font-family: 'Poppins';
    }

    .left-content p {
      font-size: 20px;
      font-style: poppins;
      margin-bottom: 10px;
      text-align: justify;
    }

    .buttons {
      display: flex;
      gap: 15px;
      
    }

    .btn-explore {
      background: white;
      color: #a94477;
      padding: 9px 12px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 400;
      font-size: 15px;
    }

    .btn-explore:hover {
      background: #a94477;
      color: white;
    }

    .right-content {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .right-content img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
      object-fit: contain;
      transition: opacity 0.5s ease-in-out;
    }

    /* ================= Mobile Design ================= */
    @media (max-width: 621px) {
      .banner-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 15px;
        height: auto;
        text-align: center;
        /* background: linear-gradient(to bottom, #906f7a 0%, #ffffff 100%) !important; */
        /* background: linear-gradient(to bottom, #C4A1B0, #8C6174); */
        /* background-image: none !important; */
      }

      .left-content {
        margin: 0;
        padding: 0;
      }

      .left-content h1 {
        font-size: 22px;
        color: #fff;
        line-height: 1.5;
        font-family:"poppins";
      }

      .left-content p {
        font-size: 14px;
        color: #fff;
        margin-bottom: 20px;
        font-family:"poppins";
      }

      .buttons {
        flex-direction: row;
        justify-content: left;
        gap: 10px;
        margin-bottom: 20px;
      }

      .btn-explore {
        padding: 6px 8px;
        font-size: 15px;
        border-radius: 25px;
      }

      /* Move image below buttons */
      .right-content {
        order: 2;
        margin-top: 10px;
      }

      .right-content img {
        max-width: 70%;
        height: auto;
      }
    }
/*---------------------------- bestseller-Section ---------------------------*/
.bestseller-section {
  padding: 60px 6%;
  /* background: linear-gradient(135deg, #a5719f, #6a1b4d); */
  background-color: #a94477;
  text-align: center;
  overflow: hidden; /* animation ke liye */
}

/* Title */
.bestseller-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}
.bestseller-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Grid */
.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

/* Card Frame – Glass Look */
.bestseller-frame {
  width: 100%;
  max-width: 280px;
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0; /* 👈 pehle hidden */
}

/* Hover */
.bestseller-frame:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Image */
.bestseller-frame img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.bestseller-frame:hover img {
  transform: scale(1.07);
}

/* Text */
.bestseller-frame h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.bestseller-frame p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ✅ Slide Animations */
@keyframes slideLeftToRight {
  from {
    transform: translateX(-120px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideRightToLeft {
  from {
    transform: translateX(120px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 1st Row (items 1–4) */
.bestseller-frame:nth-child(-n+4) {
  animation: slideLeftToRight 0.8s ease forwards;
}

/* 2nd Row (items 5–8) */
.bestseller-frame:nth-child(n+5):nth-child(-n+8) {
  animation: slideRightToLeft 0.8s ease forwards;
}

/* Thoda delay add karo har card ko stagger karne ke liye */
.bestseller-frame:nth-child(1) { animation-delay: 0.1s; }
.bestseller-frame:nth-child(2) { animation-delay: 0.3s; }
.bestseller-frame:nth-child(3) { animation-delay: 0.5s; }
.bestseller-frame:nth-child(4) { animation-delay: 0.7s; }

.bestseller-frame:nth-child(5) { animation-delay: 0.1s; }
.bestseller-frame:nth-child(6) { animation-delay: 0.3s; }
.bestseller-frame:nth-child(7) { animation-delay: 0.5s; }
.bestseller-frame:nth-child(8) { animation-delay: 0.7s; }

/* Responsive */
@media (max-width: 1200px) {
  .bestseller-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .bestseller-grid {
    grid-template-columns: 1fr;
  }
}


.client-showcase {
  padding: 60px 5%;
  background: #f9f9f9;
  text-align: center;
}

.showcase-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.showcase-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Logo slider wrapper */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.logos-track {
  display: flex;
  gap: 40px;
  width: calc(200%); /* wide enough for smooth scroll */
  animation: slide 20s linear infinite;
}

.logos-track img {
  height: 80px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}


/* CTA */
.showcase-cta {
  margin-top: 20px;
}

.btn-main {
  background-color: #a94477;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background-color: #222;
  color: #fff;
}

/* Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* moves left */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logos-track img {
    height: 60px;
  }
}


/*---------------------------------------- Contact us page css ------------------------------------------------ */

/* Contact Header */
.contact-header {
  position: relative;
  background-color: #a94477;
  text-align: center;
  padding: 60px 20px 60px; /* extra bottom space for wave */
  color: #fff;
  overflow: hidden;
  border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}


.contact-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* Wave Shape */
.contact-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("https://svgshare.com/i/14cF.svg") repeat-x; /* wave svg */
  background-size: cover;
}

/* form css */

/* Section padding */
.contact-section {
  padding: 60px 2%;
  background: #fff;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Equal width for both columns */
  gap: 40px;
}

/* Box Styling */
.box {
  /* border: 1px solid black; */
  border-radius: 12px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* Left Side – Contact Info */
.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border: 1px solid black;
  margin-bottom: 15px;
  border-radius: 10px;
}

.info-box .icon {
  font-size: 24px;
  color: #a94477;
  background: #f6e5f0;
  padding: 12px;
  border-radius: 10px;
  margin-left: 15px;
}

.contact-info h4 {
  font-weight: 600;
}

.contact-info p {
  color: #555;
  font-size: 14px;
}

/* Right Side – Contact Form */
.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid black;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
  margin-bottom: 20px;
}

.btn-send {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn-send:hover {
  background: #a94477;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* map sction css */


.map-section {
  width: 100vw;           /* Full width of the viewport */
  margin-top: 10px;
  margin-left: 113px;
  /* margin-right: 500px; */
  padding-right: 238px;
  margin-bottom: 50px;
}
.map-section iframe {
  border-radius: 20px;
  border: 1px solid black;
}
@media (max-width: 992px) {
  .map-section {
    margin-left: 0;
    width: 100%;
    display: none;
  }
}
@media (max-width: 992px) {
  .map-section {
    margin-left: 0;
    width: 100%;
  }
}

/*----------------------------------------------- Discover our Happy clients------------------------------- */
.clients-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #7b5b73, #d9b8cf);
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.section-desc {
  font-size: 1rem;
  color: white;
  margin-bottom: 40px;
}

.slide-grid .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
}

.slide-grid .grid img {
  height: 90px;
  object-fit: contain;
  background: white;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 140px;
}

.swiper-pagination {
  margin-top: 20px;
}

.clients-slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.custom-arrow {
  background-color: #b37cac;
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  font-size: 30px;
  line-height: 50px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.custom-arrow:hover {
  background-color: white;
  color: #b37cac;
}
.swiper-nav-buttons {
  text-align: center;
  margin-top: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  display: inline-block;
  position: static !important; /* Remove default absolute positioning */
  margin: 0 15px;
  font-size: 24px;
  color: #8e2a8c; /* customize color */
  cursor: pointer;
}

/* @media (max-width: 768px) {
  .slide-grid .grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 100%;
  }
} */
@media (max-width: 768px) {
  .slide-grid .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .slide-grid .grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 300px;
    gap: 10px;
  }
}
/* @media (max-width: 480px) {
  .slide-grid .grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 200px;
  }
} */
/* ===============================
   WHY SAMKIT SECTION
================================= */
.why-samkit-section {
  padding: 60px; /* 👈 As requested */
  font-family: 'Poppins', sans-serif;
  color: black;
  position: relative;
  text-align: left;
  background-image: url("../../assets/images/bg-hexa.jpg");
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
}

.why-samkit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 0;
}

.why-samkit-section .container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0; /* no inner padding, handled by section */
}


/* Two Column Layout */
.content-split {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 3% 5%;
  background-image: url(../../assets/images/bg-hexa.jpg);
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 1;
}

/* ✅ Add this AFTER .content-split */
.content-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* Lightens the dark background */
  z-index: 0;
}

/* ✅ Make sure the content stays above the overlay */
.content-split > * {
  position: relative;
  z-index: 1;
}
.left-content {
  flex: 1 1 45%;
  min-width: 300px;
  padding-right: 20px;
}

.right-content {
  flex: 1 1 40%;
  min-width: 300px;
  padding-left: 20px;
}

/* Headings and Text */
.left-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #a94477;
}

.left-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0px 0 7px;
  color: #a94477;
}

.left-content p {
  font-size: 18px;
  line-height: 1.7;
  color: white;
  font-family: 'Poppins';
}

.left-content ul {
  padding-left: 20px;
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
}

.left-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.left-content ul li::marker {
  color: #a5719f;
}

/* Gifting Section Title */
.gifting-section {
  background: transparent;
  padding: 0;
  margin: 0;
}

.gifting-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #a94477;
}

/* Gifting Boxes Layout */
.boxes-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.box-1 {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px; /* 👈 Added more inner padding */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.box-1 .icon {
  font-size: 38px;
  margin-bottom: 12px;
  color: #4a7bd1;
}

.box-1 strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.box-1 p {
  font-size: 14px;
  color: #555;
  margin: 0;
}
#why-p {
  font-size: 16.5px;
  line-height: 1.7;
  color: black;
  font-family: Poppins, sans-serif;
  /* text-align: justify; */
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .content-split {
    flex-direction: column;
  }

  .right-content {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .boxes-container {
    grid-template-columns: 1fr;
  }

  .box-1 {
    max-width: 100%;
  }

  .gifting-section h2,
  .left-content h2 {
    text-align: center;
    /* margin-right: 35px; */
  }
  .left-content p {
    font-size: 14.5px;
  }
}
@media (max-width: 992px) {
  .why-samkit-section {
    padding: 40px 30px; /* 👈 Reduced for tablet */
  }
  .content-split {
    padding: 20px;
    gap: 0px;
  }
}

@media (max-width: 576px) {
  .why-samkit-section {
    padding: 30px 20px; /* 👈 Reduced for mobile */
  }
}


/* .========================== */
.success-section {
  background: linear-gradient(to right, #7b5b73, #d9b8cf);
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  margin: 10px 0 40px;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.card-wrapper {
  flex: 0 0 calc(100% / 3); /* 3 per slide on desktop */
  box-sizing: border-box;
  padding: 0 8px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  color: #333;
  min-height: 300px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.pink-bg {
  background: linear-gradient(135deg, #f97db2 0%, #fd76a4 100%);
  color: #fff;
}

.purple-bg {
  background: linear-gradient(135deg, #a073c7 0%, #6f4ca8 100%);
  color: #fff;
}

.company-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 12px;
  object-fit: contain;
}

.client-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.client-designation {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.stars {
  color: gold;
  font-size: 1rem;
  margin-bottom: 10px;
}

.client-feedback {
  font-size: 0.9rem;
  line-height: 1.5;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.slider-nav button {
  background: #fff;
  color: #6f4ca8;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slider-nav button:hover:not(:disabled) {
  background: #6f4ca8;
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .card-wrapper {
    flex: 0 0 50%; /* 2 per view */
  }
}

@media (max-width: 768px) {
  .card-wrapper {
    flex: 0 0 100%; /* 1 per view */
    padding: 0;
  }
}
