* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  color: #fff;
}

/* MAIN CONTAINER */
.Nav-All {
  width: 100%;
}

/* TOP BAR  */
.top-bar {
  background-color: #701934;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding: 5px 40px;
  gap: 40px;
}

.up {
  color: #00ff66;
  margin-left: 4px;
}

/* NAVBAR  */
.navbar {
  background-color: #3b0b17;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

/* Left side (Logo) */
.logo {
  height: 60px;
}
/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 999;
  top:200px;
  left:8px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Show hamburger only on tablet & mobile */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  

  /* Optional: move it to the right */
  .navbar {
    position: relative;
  }

  .hamburger {
    position: absolute;
    right: 20px;
    top: 25px;
  }
}


/* Center Search */
.nav-center {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.search-bar {
  width: 50%;
  padding: 8px 15px;
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 15px;
  outline: none;
}

.search-bar::placeholder {
  color: #b8b8b8;
}

.search-icon {
  position: absolute;
  right: 25%;
  top: 8px;
  height: 20px;
  cursor: pointer;
  filter: brightness(0) invert(1);
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact img {
  height: 18px;
  filter: brightness(0) invert(1);
}

.contact span {
  font-size: 14px;
}

.icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #fff;
  cursor: pointer;
}

.icon-item img {
  height: 22px;
  margin-bottom: 5px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

.icon-item:hover img {
  transform: scale(1.1);
}

.bell-icon img {
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  padding: 6px;
}

.contact.mobile-bar {
  display: none !important;
}

.contact.mobile-bar {
  background: #3b0b17;
  display: flex;
}


@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact span,
  .icon-item span {
    display: none;
  }

  .contact.mobile-bar>div {
    display: flex;
    padding: 20px 0;
  }

  header.navbar {
    display: flex;
    flex-flow: row;
  }

  .contact.mobile-bar,
  .contact.mobile-bar span {
    display: flex !important;
    flex-flow: row;
    justify-content: center;
  }

  .contact {
    display: none;
  }

  .icons {
    gap: 10px;
  }

  .icon-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .nav-center {
    display: none;
  }

  .bell-icon {
    display: none;
  }

  .nav-right {
    align-items: center;
  }

  .search-bar {
    width: 80%;
  }

  .search-icon {
    right: 12%;
  }

  .icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact {
    flex-direction: column;
    gap: 4px;
  }

}

/* ===== MOBILE BANNER ===== */
.mobile-banner {
  display: none; 
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 308px;
  margin: 20px auto;

  overflow: hidden;
  background-color: #3b0066;
}

.mobile-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.banner-content {
  position: absolute;
  inset: 0;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.25);
}

.banner-content h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.sparkle-text {
  font-family: 'Brush Script MT', cursive;
  font-size: 26px;
  color: #00c6d3;
  margin-bottom: 8px;
  display: block;
}

.banner-content p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 14px;
  padding: 0 8px;
}

.shop-btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 4px;
  transition: 0.3s;
}

.shop-btn:hover {
  background: #fff;
  color: #3b0066;
}

/* ===== Show only on Mobile & Tablet ===== */
@media (max-width: 1024px) {
  .mobile-banner {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-banner {
    display: none;
  }
}



.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 1024px) {
  .slider{
    display: none;
  }
}
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 26px;
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 2;
}

.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: #3a0a0d;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.category-section2 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  /* change this to adjust left-right spacing for ALL inner sections */
  box-sizing: border-box;
}

.category-section2 h2 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-bottom: 25px;
}

.category-section2 .section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.category-section2 .card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.category-section2 .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.category-section2 .card h3 {
  font-size: 18px;
  margin: 12px 0;
  color: #444;
}


@media (max-width: 1024px) {
  .category-section2 {
    padding: 30px 20px;
    
    /* reduced side padding in tablet view */
  }

  .category-section2 .section-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .category-section2 {
    padding: 20px 15px;
    /* mobile side padding smaller */
  }

  .category-section2 h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .category-section2 .section-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .category-section2 .card {
    border-radius: 10px;
  }

  .category-section2 .card h3 {
    font-size: 16px;
  }
}

/*  CATEGORY ICONS SECTION  */
.category-icons {
  background-color: #fff;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  /* width:90%; */
}

.category-icons {
  background-color: #fff;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  /* width:90%; */
}
.category-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 90px;
}

.category-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #b68b2a;
  /* elegant gold tone */
  padding: 5px;
  background-color: #fff;
  object-fit: cover;
}

.category-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}


.category-item:hover {
  transform: translateY(-5px);
}

.category-item:hover img {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
  div#categoryContainer {
    min-width: 500px;
    flex-wrap: nowrap;
    overflow: scroll;
    justify-content: start;
  }
   div#categoryContainer::-webkit-scrollbar {
    display: none;
  }

  /* .category-icons {
    overflow: hidden;
    display: none;
  } */
}


/* .category-icons-mobile {
  display: none; 
} */

/* ---------- Rakhi Poster Section ---------- */
.rakhi-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  /* space above & below */
  background: transparent;
  /* place-content: center; */
}

.rakhi-img {
  width: 100%;
  /* left & right gaps */
  /* max-width: 1340px; */
  /* height: auto; */
  max-width: 100%;
  border-radius: 25px;
  overflow: hidden;
  object-fit: contain;
}

.rakhi-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
  object-fit: contain;

}

@media (max-width: 1024px) {
  .rakhi-img {
    width: 95%;
    height: 400px;
    border-radius: 20px;
  }

  .rakhi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .rakhi-section {
    margin: 25px 0;
  }

  .rakhi-img {
    width: 100%;
    border-radius: 18px;
    height: 320px;
    box-shadow: none;
  }

  .rakhi-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

/*  Diamond Section  */
.Diamond-section {
  width: 100%;
  max-width: 134 5px;
  margin: 80px auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}


.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-subtitle {
  font-size: 16px;
  color: #4b4b4b;
  margin-bottom: 50px;
}


.diamond-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 20px;
  justify-content: center;
  align-items: stretch;
}


.diamond-item.large {
  grid-row: span 2;
  /* occupies 2 rows */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}


.diamond-item.small {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}


.diamond-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}


.diamond-item:hover img {
  transform: scale(1.05);
}

/*  Responsive design diamond */
@media (max-width: 1024px) {
  .diamond-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .diamond-item.large {
    grid-column: span 2;
    height: 400px;
  }

  .diamond-item.small {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .diamond-grid {
    grid-template-columns: 1fr;
  }

  .diamond-item.large {
    height: 320px;
  }

  .diamond-item.small {
    height: 220px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}

/* ---------- Gold Collection Section ---------- */
.Gold-section {
  width: 100%;
  max-width: 1300px;
  margin: 80px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Titles */
.section-goldtitle {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-goldsubtitle {
  font-size: 16px;
  color: #4b4b4b;
  margin-bottom: 50px;
}


.gold-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.gold-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
  /* equal height for both */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}


.gold-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.gold-item:hover img {
  transform: scale(1.05);
}


@media (max-width: 1024px) {
  .Gold-section {
    width: 100%;
  }

  .gold-item {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .gold-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gold-item {
    height: 300px;
  }

  .section-goldtitle {
    font-size: 24px;
  }

  .section-goldsubtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gold-item {
    height: 250px;
  }
}

/*  Earring Section/CARD 2 */
.Earring {
  width: 100%;
  max-width: 1300px;
  margin: 80px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}


.Earring .section-title {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.Earring .section-subtitle {
  font-size: 16px;
  color: #4b4b4b;
  margin-bottom: 50px;
}


.earring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-content: center;
  align-items: center;
}


.earring-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 2.2;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}


.earring-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.3s ease-in-out;
}

.earring-item:hover img {
  transform: scale(1.04);
}


@media (max-width: 1024px) {
  .Earring {
    width: 100%;
  }

  .earring-item {
    aspect-ratio: 4 / 2.4;
  }

  div#earringContainer {
    display: flex;
    flex-flow: column;
    
  }
}

@media (max-width: 1024px) {
  .earring-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .earring-item {
    aspect-ratio: 4 / 2.6;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .earring-grid {
    grid-template-columns: 1fr;
  }

  .earring-item {
    aspect-ratio: 4 / 3;
  }

  .Earring .section-title {
    font-size: 24px;
  }

  .Earring .section-subtitle {
    font-size: 14px;
  }
}

/*  Platinum Collection Section  */
.PLATINUM-Section {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}


.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-subtitle {
  font-size: 16px;
  color: #4b4b4b;
  margin-bottom: 50px;
}

/* ---------- Grid Layout ---------- */
.platinum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.platinum-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}


.platinum-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* display: block; */
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.platinum-item:hover img {
  transform: scale(1.05);
}


@media (max-width: 1024px) {

  .platinum-grid {
    grid-template-columns: 1fr 1fr;
    /* 2 columns on tablet */
    gap: 20px;
  }

  .PLATINUM-Section {
    width: 100%;
    height: 100%;
  }

  .platinum-item {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .platinum-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .platinum-item {
    height: 260px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}


/* Container Styling */
.GOld-jewel {
  max-width: 1300px;
  border-radius: 100px;
  object-fit: cover;
  margin: 80px auto;
  /* only top & bottom */
  padding: 0;
  /* remove side padding */
  width: 100%;
}

/* Title & Subtitle */
.GOld-jewel .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

.GOld-jewel .section-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: center;
  color: #555;
}

/* Grid Container */
.GOld-jewel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns */
  gap: 20px;
  padding: 0;
  /* space between items */

}

/* Individual Items */
.GOld-jewel-itm,
.gold-jewel-item {
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.GOld-jewel-itm img,
.gold-jewel-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Optional hover effect */
.GOld-jewel-itm img:hover,
.gold-jewel-item img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .GOld-jewel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

  }

  .GOld-jewel-itm,
  .gold-jewel-item {
    height: 180px;
  }
}

@media screen and (max-width: 768px) {
  .GOld-jewel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    /* 1 column on very small screens */
  }

  .GOld-jewel-itm,
  .gold-jewel-item {
    height: 180px;
    /* same visual height as gender section cards */
  }
}


/* Container Styling */
.collection-Section {
  padding: 0;
  /* max-width: 1300px; */
  width: 100%;
  margin: 80px auto;
  /* center align container */
}


.collection-Section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

.collection-Section .section-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: center;
  color: #555;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;

}

/* Individual Items */
.collection-item {
  overflow: hidden;
  border-radius: 10px;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Optional hover effect */
.collection-item img:hover {
  transform: scale(1.05);
}

/* Responsive Design */

@media (max-width: 1024px) {
  .collection-grid {
    /* width: 100%; */
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "first first"
      "second third";
    gap: 20px;
  }

  .Collection-first {
    grid-area: first;


  }

  .collection-grid a:nth-child(2) {
    grid-area: second;
  }

  .collection-grid a:nth-child(3) {
    grid-area: third;
  }

  /* Make first image naturally fit without distortion */
.Collection-first img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
}
.testimonial-slider{
  margin-top: 0 !important;
  padding-top: 0 !important ;
}
}

/* Mobile only */
@media screen and (max-width: 768px) {
  .collection-grid {
    gap: 15px;
  }

  .Collection-first a img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Section Container */
.gender-Section {
  max-width: 1300px;
  width: 100%;
  margin: 80px auto;
  padding: 0;
}

/* Title */
.gender-Section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

/* Gender Links */
.gender-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: nowrap;

}

.gender-link {
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease;
  position: relative;
  color: #000;
  font-weight: 450;
  background-color: transparent;
}


.gender-link:hover {
  /* background-color: yellow; */
  color: #ef9104;
}

.gender-link:hover::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: orange;
}

/* Gender Grid */
.gender-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 items in a row */
  gap: 20px;
  padding: 0;
}

/* Gender Items */
.gender-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.gender-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gender-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gender-link.active {
  color: #701934;
  font-weight: 600;
  text-decoration: underline;
}

@media screen and(max-width:1024px) {
  .gender-grid {
    width: 100%;
    height: 320px
  }

}

@media screen and (max-width: 768px) {
  .gender-grid {
    grid-template-columns: repeat(2, 1fr);
    height: 320px
      /* 2 columns */
  }
  .footer-section {
    flex: 1;
}
}



/* malabar Section Container */
.malabar-Section {
  padding: 0;
  max-width: 1300px;
  width: 100%;
  margin: 80px auto;
}

.malabar-Section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;

  text-align: center;
}

.malabar-Section p.section-title {
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: center;
  color: #555;
}

.malabar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
}

/* Grid Items */
.gender-item,
.malabar-item {
  overflow: hidden;
  border-radius: 10px;
}

.gender-item img,
.malabar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Optional hover effect */
.gender-item:hover img,
.malabar-item:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .malabar-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on medium screens */
  }
}

@media screen and (max-width: 768px) {
  .malabar-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 1 column on small screens */
  }
}


.Bride-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 0px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
}


.Bride-section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.Bride-section .section-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}


.Bride-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Bride-grid img {
  width: 100%;
  max-width: 1300px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media screen and (max-width: 900px) {
  .Bride-grid img {
    max-width: 100%;
  }
}

.testimonial-slider {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20 px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  overflow: hidden;
  padding: 60px 0;
  box-sizing: border-box;
  background: #fdfdfd;
}

.testimonial-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-transform: capitalize;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}


.carousel {
  display: flex;
  justify-content: centre;
  transition: transform 0.6s ease;
  width: 100%;
  max-width: 1000px;
  align-items: stretch;
}

.testimonial-card {
  flex: 0 0 calc(33.33% - 20px);
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin: 0 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 0.4s ease;
  box-sizing: border-box;
}


.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 5;
}


.stars span {
  color: #FFD700;
  font-size: 18px;
}

.quote-icon {
  font-size: 24px;
  color: #2C0D12;
  font-weight: bold;
}

.testimonial-text {
  color: #333;
  font-size: 0.95rem;
  margin: 10px 0 15px;
  line-height: 1.5;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-weight: 600;
  color: #000;
}

.dots-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #2C0D12;
}

@media (max-width: 1024px) {
  .carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 992px) {
  .carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(50% -20px);
    margin: 0 10px;
  }
}


@media screen and (max-width: 600px) {

  .testimonial-card {
    flex: 0 0 100%;
    margin: 0;
  }

  div#categoryContainer {
    min-width: 500px;
    flex-wrap: nowrap;
    overflow: scroll;
    justify-content: start;
  }

  .category-icons {
    overflow: hidden;
  }

  .diamond-grid {
    display: flex;
    flex-flow: column;
  }
}

/* .collection-Section, */


