/* Jewelry Section */
.jewelry-section {
  background-color: #ffffff;
}

/* Title */
.jewelry-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #222;
  margin-bottom: 16px;
}

/* Description */
.jewelry-desc {
  font-size: 16px;
  color: #555;
  max-width: 480px;
  margin-bottom: 24px;
}

/* Button */
.jewelry-btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15px;
  background-color: #2f4dff;
  border: none;
}

.jewelry-btn:hover {
  background-color: #1f38d6;
}

/* Image */
.jewelry-image {
  border-radius: 18px;
  max-width: 100%;
}

@media (max-width: 991px) {

  .jewelry-section .jewelry-title,
  .jewelry-section .jewelry-desc {
    text-align: center;
  }

  .jewelry-section .jewelry-btn {
    display: inline-block;
  }

  .jewelry-section .col-lg-6:first-child {
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .jewelry-title {
    font-size: 32px;
  }

  .jewelry-desc {
    max-width: 100%;
  }
}


/* crafted-section */
/* Section */
.crafted-section {
  background-color: #ffffff;
}

/* Heading */
.crafted-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.crafted-desc {
  max-width: 760px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Card */
.crafted-card {
  padding: 25px 20px;
  border-radius: 14px;
  transition: all 0.35s ease;
  height: 100%;
}

.crafted-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.crafted-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Icon */
.crafted-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background-color: #eab23f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.crafted-icon img {
  width: 30px;
  filter: brightness(0) invert(1);
}

/* 🔥 Hover Effects */
.crafted-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.crafted-card:hover .crafted-icon {
  background-color: #d99a1d;
  box-shadow: 0 0 0 8px rgba(234, 178, 63, 0.2);
}

.crafted-card:hover h6 {
  color: #d99a1d;
}


/* gold-collection  */


/* Section */
.gold-collection {
  background-color: #ffffff;
}

/* Title */
.collection-title {
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

/* Card */
.collection-card {
  text-align: center;
  transition: all 0.35s ease;
}

/* Image wrapper */
.collection-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}

/* Image */
.collection-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 18px;
}

/* Text */
.collection-card h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.collection-card p {
  font-size: 14px;
  color: #777;
}

/* 🔥 Hover Effects */
.collection-card:hover {
  transform: translateY(-8px);
}

.collection-card:hover img {
  transform: scale(1.08);
}

/* Optional glow on hover */
.collection-card:hover .collection-img {
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
  .collection-img img {
    height: 200px;
  }
}



/* silver-collection */

/* Section */
.silver-collection {
  background-color: #ffffff;
}

/* Heading */
.silver-title {
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

.silver-desc {
  max-width: 720px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Gift Bar */
.gift-bar {
  background: #bfc3c7;
  border-radius: 14px;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gift-bar .divider {
  opacity: 0.5;
}

/* Card */
.silver-card {
  transition: all 0.35s ease;
}

.silver-card h6 {
  margin-top: 14px;
  font-weight: 600;
}

.silver-card p {
  font-size: 14px;
  color: #777;
}

/* Image */
.silver-img {
  border-radius: 18px;
  overflow: hidden;
}

.silver-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 18px;
}

/* Hover Effects */
.silver-card:hover {
  transform: translateY(-8px);
}

.silver-card:hover img {
  transform: scale(1.08);
}

.silver-card:hover .silver-img {
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .silver-img img {
    height: 200px;
  }

  .gift-bar {
    font-size: 13px;
  }
}

/* occasion-section */

/* Section */
.occasion-section {
  background-color: #ffffff;
}

/* Heading */
.occasion-title {
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

.occasion-desc {
  max-width: 720px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Card */
.occasion-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid #f1f1f1;
}

/* Icon */
.occasion-icon {
  width: 40px;
  height: 40px;
  background-color: #fff3dc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e1a233;
  font-size: 18px;
  margin-bottom: 12px;
  transition: all 0.35s ease;
}

/* Text */
.occasion-card h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.occasion-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Hover Effects */
.occasion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 991px) {
  .occasion-title {
    font-size: 26px;
  }
}


/* trust-section  */

.trust-section {
  background-color: #3e3933;
  color: #ffffff;
}

/* Title */
.trust-title {
  font-size: 32px;
  font-weight: 600;
}

.trust-desc {
  max-width: 680px;
  font-size: 15px;
  color: #d4d1cc;
  line-height: 1.6;
}

/* Card */
.trust-card {
  padding: 20px 16px;
  transition: all 0.35s ease;
  border-radius: 14px;
}

/* Icon */
.trust-icon {
  width: 48px;
  height: 48px;
  background-color: #e2a93b;
  color: #3e3933;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 14px;
  transition: all 0.35s ease;
}

/* Text */
.trust-card h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 13px;
  color: #d4d1cc;
  line-height: 1.5;
}

/* Hover Effects */
.trust-card:hover {
  transform: translateY(-8px);
}

.trust-card:hover .trust-icon {

  box-shadow: 0 0 18px rgba(226, 169, 59, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .trust-title {
    font-size: 26px;
  }
}

/* experience-section */
.experience-section {
  background-color: #ffffff;
}

/* Title */
.experience-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
}

.experience-desc {
  max-width: 700px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Card */
.experience-card {
  padding: 20px 16px;
  border-radius: 16px;
  transition: all 0.35s ease;
}

/* Step Circle */
.step-circle {
  width: 48px;
  height: 48px;
  background-color: #e2a93b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 14px;
  transition: all 0.35s ease;
}

/* Text */
.experience-card h6 {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.experience-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* Hover Effects */
.experience-card:hover {
  transform: translateY(-10px);
}

.experience-card:hover .step-circle {
  box-shadow: 0 0 18px rgba(226, 169, 59, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .experience-title {
    font-size: 26px;
  }
}

/* cta-section */

.cta-section {
  background-color: #ffffff;
}

/* Title */
.cta-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
}

/* Description */
.cta-desc {
  max-width: 700px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Features */
.cta-features li {
  font-size: 14px;
  color: #666;
  margin: 0 10px;
  position: relative;
  padding-left: 14px;
}

.cta-features li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #666;
  font-size: 10px;
  top: 4px;
}

/* Buttons */
.cta-btn-primary {
  padding: 10px 26px;
  border-radius: 50px;
  background-color: #2b3cff;
  border: none;
}

.cta-btn-secondary {
  padding: 10px 26px;
  border-radius: 50px;
  background-color: #7cb342;
  border: none;
}

/* Hover Effects */
.cta-btn-primary:hover {
  background-color: #1f2ee8;
}

.cta-btn-secondary:hover {
  background-color: #689f38;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-features li {
    display: block;
    margin-bottom: 8px;
  }
}

/* video */
.brand-video-section {
  background: #f8f9fa;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.volume-btn {
  position: absolute;
  bottom: 20px;
  right: 80px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

/* Play Button Circle */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Blue Triangle */
.play-btn span {
  width: 0;
  height: 0;
  border-left: 24px solid #2f5bff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-btn span {
    border-left: 18px solid #2f5bff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}



/* Make video taller */
.video-container video {
  width: 100%;
  height: 500px;
  /* 👈 Increase height */
  object-fit: cover;
  /* Prevent distortion */
}

/* Responsive height */
@media (max-width: 992px) {
  .video-container video {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .video-container video {
    height: 260px;
  }
}

.video-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;
  /* Force 1 line */
  overflow: hidden;
  text-overflow: ellipsis;
  /* Add ... if too long */
  max-width: 90%;
}

@media (max-width: 768px) {
  .video-caption {
    font-size: 13px;
    /* Smaller font */
    padding: 6px 12px;
    /* Less padding */
    bottom: 10px;
    /* Slightly closer */
  }
}


.video-container {
  position: relative;
  overflow: hidden;
}

.video-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.video-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
}

/*  e catgloue */
/* Section */
.catalog-section {
  padding: 80px 0;
}

/* Heading */
.catalog-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.catalog-subtitle {
  text-align: center;
  margin-bottom: 30px;
}

/* Wrapper */
.flip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

/* Flipbook */
#flipbook {
  margin: auto;
}

/* Page */
#flipbook .page {
  background: #fff;
  overflow: hidden;
}

/* Image */
#flipbook img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* IMPORTANT */
}

/* Shadow */
#flipbook .page {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
  margin: 5px;
}

/* COVER PAGE */
.cover-content {
  display: flex;
  height: 100%;
}

.cover-left {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cover-left h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.cover-left p {
  font-size: 15px;
  line-height: 1.6;
}

.cover-right {
  width: 50%;
}

.cover-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* END PAGE */
.end-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.end-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.end-content p {
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .cover-content {
    flex-direction: column;
  }

  .cover-left,
  .cover-right {
    width: 100%;
  }

  .cover-left {
    padding: 20px;
    text-align: center;
  }
}

/* Fix wide screen stretching issue */
.flip-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

#flipbook {
  width: 100%;
}

/* Mobile optimization for end page */
@media (max-width: 480px) {

  .end-page h1 {
    font-size: 24px !important;
    line-height: 1.2;
  }

  .end-page p {
    font-size: 14px !important;
    margin-top: 8px;
  }

  .end-page .btn,
  .end-page button {
    font-size: 13px !important;
    padding: 8px 14px !important;
    border-radius: 6px;
  }

  .end-page {
    padding: 15px 10px !important;
    text-align: center;
  }
}