.meet-our-people {
  background: linear-gradient(135deg, #fff8f0, #fffdf9);
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #333;
}

.meet-our-people .container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #b08d57;
  margin-bottom: 20px;
  font-weight: bold;
  animation: fade-in 1s ease-in-out;
}

.intro {
  text-align: center;
  max-width: 850px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #555;
}

/* Content Row */
.content-row {
  display: flex;
  align-items: stretch; /* Ensures image & text match height */
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.image-box {
  flex: 1;
  min-width: 300px;
  display: flex;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.text-box {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #b08d57;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers text vertically */
}

.text-box h3 {
  color: #b08d57;
  margin-bottom: 10px;
}

.text-box p {
  color: #444;
  line-height: 1.6;
}

.text-box:hover {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}

/* Promise */
.promise {
  text-align: center;
  padding: 25px;
  background: #fef5e7;
  border: 2px dashed #b08d57;
  border-radius: 10px;
  margin-top: 40px;
}

.promise h3 {
  color: #b08d57;
  margin-bottom: 10px;
}

/* Animations */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in-up {
  opacity: 0;
  animation: fade-in-up 1s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .intro {
    font-size: 1rem;
  }
  .content-row {
    flex-direction: column;
  }
  .text-box {
    border-left: none;
    border-top: 5px solid #b08d57;
  }
}

/* Services */
.our-services {
  background: linear-gradient(135deg, #fff8f0, #fffdf9);
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #b08d57;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 20px;
  font-weight: 500;
}

.section-intro {
  text-align: center;
  max-width: 850px;
  margin: auto;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #b08d57;
  padding: 15px 15px 0;
}

.service-card p {
  padding: 0 15px 15px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.why-choose {
  background: #fef5e7;
  padding: 25px;
  border: 2px dashed #b08d57;
  border-radius: 10px;
  margin-top: 40px;
}

.why-choose h3 {
  text-align: center;
  color: #b08d57;
  margin-bottom: 15px;
}

.why-choose ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.why-choose li {
  margin: 8px 0;
  color: #444;
  font-size: 1rem;
}

/* Animations */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fade-in-up 1s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 1.1rem;
  }
}

/* Why Choose Us Section */
.why-choose-section {
  background: #ececec;
}

.section-title1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #d4af37;
  text-align: left;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.feature-list li::before {
  content: "✦";
  color: #d4af37; /* Gold bullet */
  font-weight: bold;
  margin-right: 8px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Removed transition & hover grow effect */
}

/* Product Slider */
.carousel-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

/* Carousel Wrapper */
.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Carousel Items */
.carousel-item {
  min-width: 25%; /* 4 items in desktop */
  box-sizing: border-box;
  padding: 10px;
}

.carousel-item img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel-nav.left {
  left: 10px;
}

.carousel-nav.right {
  right: 10px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .carousel-item {
    min-width: 33.33%; /* 3 items in tablet */
  }
}

@media (max-width: 768px) {
  .carousel-item {
    min-width: 50%; /* 2 items in mobile */
  }
  .carousel-nav {
    font-size: 20px;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    min-width: 100%; /* 1 item in small mobile */
  }
  .carousel-nav {
    font-size: 18px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.ttl-stle h3 {
  background-color: #b08d57;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  padding: 12px 20px;
  border-radius: 0px px 6px 6px;
}

/* Keep your existing button visuals */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important; /* arrow color */
  background: #b08c5700 !important; /* circle background */
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

/* ✅ Actual arrow size (works with Swiper) */
.product-section .swiper {
  --swiper-navigation-size: 10px; /* arrow smaller than the 20px button */
}

/* Extra safety: directly target the pseudo-element too */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 25px !important;
}

/* Responsive tweaks (optional) */
@media (max-width: 768px) {
  .product-section .swiper {
    --swiper-navigation-size: 9px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 18px !important;
    height: 18px !important;
  }
}
@media (max-width: 480px) {
  .product-section .swiper {
    --swiper-navigation-size: 8px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 16px !important;
    height: 16px !important;
  }
}

.ttle-btm {
  margin-bottom: 50px;
}

.product-section1 {
  padding: 80px 0px 40px 0px !important;
}

.product-section2 {
  padding: 40px 0px 40px 0px !important;
}

.product-section3 {
  padding: 40px 0px 80px 0px !important;
}

/* Gallery Style */

/* Gallery grid */
.gallery-item {
  margin-bottom: 15px;
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
}
.gallery-img:hover {
  transform: scale(1.05);
}

/* Lightbox modal */
.gallery-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}
.gallery-lightbox img {
  max-width: 90%;
  max-height: 80vh;
  margin-top: 5%;
  border-radius: 8px;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  padding: 10px;
  margin-top: -25px;
  transition: 0.3s;
  user-select: none;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
.prev:hover,
.next:hover {
  color: #ffcc00;
}

/* Home Our-Collections */

.collections-section {
  padding-top: 20px;
  text-align: center;
}

.collections-title h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #d62a5b;
  margin-bottom: 30px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.collection-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.2rem;
  padding: 12px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.collection-card:hover .overlay {
  opacity: 1;
}
