:root {
  --orange: #f5940c;
  --orange-light: #ffb143;
  --navy: #1b1f6b;
  --ink: #1c1c1c;
  --muted: #6b6b6b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

body {
  font-family: "Poppins", sans-serif;
  background: #efe9df;
  padding-top: var(--navbar-height, 140px);
}

.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  background: rgba(248, 243, 234, 0.98);
  box-shadow: 0 2px 10px rgba(59, 42, 34, 0.06);
  backdrop-filter: blur(8px);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.navbar-wrap.sticky {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  background: rgba(248, 243, 234, 0.98);
}

.navbar-wrap.sticky .mainbar {
  padding-top: 14px;
  padding-bottom: 14px;
}

/* ---- Top strip - HIDES COMPLETELY ON SCROLL ---- */
.topbar {
  background: #593f33;
  padding: 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  overflow: hidden;
  max-height: 120px;
  opacity: 1;
  visibility: visible;
  margin: 0;
  transition:
    opacity 0.4s ease,
    max-height 0.4s ease,
    padding 0.4s ease,
    margin 0.4s ease,
    visibility 0.4s ease;
}

/* When sticky, topbar completely disappears */
.navbar-wrap.sticky .topbar {
  opacity: 0 !important;
  visibility: hidden !important;
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  transition:
    opacity 0.3s ease,
    max-height 0.3s ease,
    padding 0.3s ease,
    visibility 0.3s ease;
}

.topbar .phone {
  color: #f1e7db;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.topbar .phone i {
  font-size: 14px;
  color: #c98a45;
}

.topbar .socials {
  display: flex;
  gap: 10px;
}

.topbar .socials a {
  width: 23px;
  height: 23px;
  border: 1px solid #6b5344;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1e7db;
  font-size: 13px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.topbar .socials a:hover {
  background: #c98a45;
  border-color: #c98a45;
}

/* ---- Main nav ---- */
.mainbar {
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  transition: padding 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  min-width: 64px;
  object-fit: contain;
  display: block;
}

/* ---- Main nav styles ---- */
nav.links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

nav.links a,
.dropdown-trigger {
  text-decoration: none;
  color: #3b2a22;
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding-bottom: 6px;
  cursor: pointer;
}

nav.links a.active {
  border-bottom: 2px solid #c98a45;
}

nav.links i {
  font-size: 11px;
  margin-left: 4px;
}
nav.links a i {
  font-size: 11px;
  margin-left: 4px;
}

.contact-cluster {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.divider {
  width: 1px;
  height: 34px;
  background: #ddd0be;
}

.call-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  text-decoration: none;
}

.call-badge .icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #c98a45;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-badge .icon i {
  font-size: 13px;
  color: #fff;
}

.call-badge span {
  font-size: 13.5px;
  color: #3b2a22;
  font-weight: 500;
}

.qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qr-block .qr-frame {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px solid #3b2a22;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.qr-block .qr-frame .qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---- Products dropdown ---- */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger .dd-arrow {
  transition: transform 0.3s ease;
}

.dropdown.open .dropdown-trigger .dd-arrow,
.dropdown:hover .dropdown-trigger .dd-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%; /* gap hataya */
  padding-top: 18px; /* visual gap ab yahan se aayega */
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  max-height: 280px;
  overflow-y: auto;
  background: #fdfaf5;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(59, 42, 34, 0.18);
  border: 1px solid rgba(201, 138, 69, 0.2);
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  z-index: 2100;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  color: #3b2a22;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}

.dropdown-menu a i {
  font-size: 12px;
  color: #c98a45;
  margin: 0;
  flex-shrink: 0;
}

.dropdown-menu a:hover {
  background: #f3e6d4;
  color: #c98a45;
  padding-left: 18px;
}

/* Custom scrollbar */
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: #c98a45;
  border-radius: 10px;
}
.dropdown-menu {
  scrollbar-width: thin;
  scrollbar-color: #c98a45 transparent;
}

/* Change this - make the button always visible on mobile */
.ss-menu-btn {
  display: flex; /* Changed from 'none' to 'flex' */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: #593f33;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

/* Hide on desktop (above 960px) */
@media (min-width: 961px) {
  .ss-menu-btn {
    display: none !important;
  }
}

/* Show on mobile (below 960px) */
@media (max-width: 960px) {
  .ss-menu-btn {
    display: flex !important;
  }
}
.ss-menu-btn:hover {
  background: #6b4d3e;
}

.ss-menu-btn span {
  width: 20px;
  height: 2px;
  background: #efe9df;
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    opacity 0.25s ease;
}

.ss-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ss-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ss-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ss-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 15, 0.55);
  backdrop-filter: blur(2px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.ss-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ss-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 84vw);
  background: #593f33;
  color: #efe9df;
  z-index: 3001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.ss-sidebar.active {
  transform: translateX(0);
}

.ss-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(239, 233, 223, 0.12);
}

.ss-sidebar-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 50%;
  padding: 4px;
  box-sizing: border-box;
}

.ss-sidebar-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(239, 233, 223, 0.25);
  background: transparent;
  color: #efe9df;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.ss-sidebar-close:hover {
  background: #c98a45;
  border-color: #c98a45;
  transform: rotate(90deg);
}

.ss-sidebar-links {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  overflow-y: auto;
}
.ss-sidebar-links > a {
  padding: 16px 26px;
  color: #efe9df;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(239, 233, 223, 0.08);
  opacity: 0;
  transform: translateX(24px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    opacity 0.45s ease,
    transform 0.45s ease;
}

.ss-sidebar.active .ss-sidebar-links > a,
.ss-sidebar.active .ss-sidebar-dropdown {
  opacity: 1;
  transform: translateX(0);
}
.ss-sidebar-links > a:nth-child(1) {
  transition-delay: 0.08s;
}
.ss-sidebar-links > a:nth-child(2) {
  transition-delay: 0.13s;
}
.ss-sidebar-dropdown {
  transition-delay: 0.18s;
}
.ss-sidebar-links > a:nth-child(4) {
  transition-delay: 0.23s;
}
.ss-sidebar-links > a:nth-child(5) {
  transition-delay: 0.28s;
}

.ss-sidebar-links > a:hover,
.ss-sidebar-links > a.active {
  background: rgba(201, 138, 69, 0.15);
  border-left-color: #c98a45;
  color: #f6c98f;
}

.ss-sidebar-dropdown {
  border-bottom: 1px solid rgba(239, 233, 223, 0.08);
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.ss-sidebar-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  color: #efe9df;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.ss-sidebar-dropdown-toggle:hover,
.ss-sidebar-dropdown-toggle.open {
  background: rgba(201, 138, 69, 0.15);
  border-left-color: #c98a45;
  color: #f6c98f;
}
.ss-sidebar-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.35s ease;
}
.ss-sidebar-dropdown-toggle.open i {
  transform: rotate(180deg);
}

.ss-sidebar-dropdown-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(0, 0, 0, 0.15);
}

.ss-sidebar-dropdown-panel.open {
  max-height: 165px;
  overflow-y: auto;
}

.ss-sidebar-dropdown-panel::-webkit-scrollbar {
  width: 5px;
}
.ss-sidebar-dropdown-panel::-webkit-scrollbar-track {
  background: transparent;
}
.ss-sidebar-dropdown-panel::-webkit-scrollbar-thumb {
  background: #c98a45;
  border-radius: 10px;
}

.ss-sidebar-dropdown-panel a {
  display: block;
  padding: 12px 26px 12px 42px;
  font-size: 14px;
  color: #d9cdbf;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.ss-sidebar-dropdown-panel a:hover {
  background: rgba(201, 138, 69, 0.12);
  color: #f6c98f;
}

.ss-sidebar-foot {
  margin-top: auto;
  padding: 20px 26px;
  border-top: 1px solid rgba(239, 233, 223, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #cbbba9;
}

.ss-sidebar-foot i {
  color: #c98a45;
}

@media (max-width: 960px) {
  nav.links {
    display: none !important;
  }
  .contact-cluster .divider,
  .contact-cluster .call-badge {
    display: none !important;
  }
  .mainbar {
    justify-content: space-between !important;
    padding: 12px 24px !important;
  }
  .qr-block {
    display: flex !important;
  }
  .ss-menu-btn {
    display: flex;
  }
}

@media (max-width: 640px) {
  .qr-block {
    display: none;
  }
  .topbar .phone span {
    display: none;
  }
}

@media (max-width: 480px) {
  .mainbar {
    padding: 12px 16px !important;
  }
  .qr-block .qr-frame {
    width: 50px;
    height: 50px;
  }
}

/* ============================================================
     FOOTER
     ============================================================ */
footer {
  position: relative;
  background: #593f33;
  color: #ddd0be;
  overflow: hidden;
  padding-top: 30px;
}

.wave-wrap {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-wrap svg {
  width: 100%;
  height: 70px;
  display: block;
}

.footer-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 40px 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 0px;
  padding-top: 20px;
}

.footer-col ul {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.footer-col ul::-webkit-scrollbar {
    width: 6px;
}

.footer-col ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.footer-col ul::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.footer-col ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.footer-col {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.footer-col.in-view {
  opacity: 1;
  transform: translateY(0);
}

.footer-col:nth-child(1) {
  transition-delay: 0s;
}
.footer-col:nth-child(2) {
  transition-delay: 0.1s;
}
.footer-col:nth-child(3) {
  transition-delay: 0.2s;
}
.footer-col:nth-child(4) {
  transition-delay: 0.3s;
}

.f-logo {
  display: inline-block;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  margin-bottom: 22px;
  line-height: 0;
}

.footer-logo-img {
  display: block;
  max-width: 160px;
  height: 75px;
  object-fit: contain;
}

.footer-col p.desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: #b8ab98;
  margin-bottom: 22px;
  max-width: 320px;
}

.f-socials {
  display: flex;
  gap: 10px;
}

.f-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #55453a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd0be;
  font-size: 13px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.f-socials a:hover {
  background: #c98a45;
  border-color: #c98a45;
  color: #2c2019;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 600;
  color: #f1e7db;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #c98a45;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #b8ab98;
  text-decoration: none;
  font-size: 13.5px;
  position: relative;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
  display: inline-block;
}

.footer-col ul li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #c98a45;
  opacity: 0;
  margin-right: 0;
  transition:
    opacity 0.2s ease,
    margin-right 0.2s ease;
}

.footer-col ul li a:hover {
  color: #f1e7db;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  margin-right: 6px;
}

.contact-line {
  color: #f1e7db;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #ddd0be;
  margin-bottom: 12px;
  text-decoration: none;
}

.contact-line i {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgba(201, 138, 69, 0.15);
  color: #c98a45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid #443830;
  padding: 20px 40px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #8a7a68;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
     HERO STYLES
     ============================================================ */
/* Keep the hero section unrestricted so it spans the full width */
.hero-card {
  width: 100%;
  background: #efe9df;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.hero-visual,
.hero-lower {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-visual {
  position: relative;
  height: 480px;
  background: #efe9df;
  overflow: hidden;
}

.hero-visual .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1.2s ease,
    transform 1.6s ease;
}

.hero-visual .slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Yahan humne badlav kiya hai */
.hero-visual .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Image ab poore area ko cover karegi */
  object-position: center; /* Image ka center part humesha focus mein rahega */
  display: block;
}

.hero-visual .scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(8, 14, 28, 0.82) 0%,
      rgba(8, 14, 28, 0.55) 30%,
      rgba(8, 14, 28, 0.05) 58%,
      transparent 72%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.15), transparent 40%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-visual .slide img {
    object-fit: contain; /* Image 100% poori dikhegi, kategi nahi */
  }
}

.ambient-glow {
  position: absolute;
  z-index: 1;
  top: -10%;
  right: -8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(255, 177, 67, 0.35) 0%,
    rgba(255, 177, 67, 0.12) 40%,
    transparent 72%
  );
  filter: blur(6px);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.scan-ring {
  position: absolute;
  z-index: 2;
  top: 8%;
  right: 6%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 177, 67, 0.4);
  animation: spinSlow 22s linear infinite;
  pointer-events: none;
}

.scan-ring.inner {
  top: 14%;
  right: 11%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: spinSlow 30s linear infinite reverse;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #ffe1a8 0%,
    #f5940c 65%,
    transparent 100%
  );
  box-shadow: 0 0 6px 1px rgba(245, 148, 12, 0.7);
  opacity: 0;
  animation: riseFade linear infinite;
}

@keyframes riseFade {
  0% {
    transform: translate(0, 0) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  50% {
    transform: translate(var(--drift, 14px), -220px) scale(1);
    opacity: 0.85;
  }
  90% {
    opacity: 0.35;
  }
  100% {
    transform: translate(calc(var(--drift, 14px) * 1.6), -400px) scale(0.5);
    opacity: 0;
  }
}

.particle:nth-child(1) {
  left: 52%;
  width: 4px;
  height: 4px;
  --drift: 10px;
  animation-duration: 9s;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 58%;
  width: 6px;
  height: 6px;
  --drift: -16px;
  animation-duration: 11s;
  animation-delay: 1.4s;
}
.particle:nth-child(3) {
  left: 64%;
  width: 3px;
  height: 3px;
  --drift: 12px;
  animation-duration: 7.5s;
  animation-delay: 2.6s;
}
.particle:nth-child(4) {
  left: 70%;
  width: 5px;
  height: 5px;
  --drift: -10px;
  animation-duration: 10s;
  animation-delay: 0.8s;
}
.particle:nth-child(5) {
  left: 76%;
  width: 4px;
  height: 4px;
  --drift: 18px;
  animation-duration: 8.5s;
  animation-delay: 3.4s;
}
.particle:nth-child(6) {
  left: 82%;
  width: 6px;
  height: 6px;
  --drift: -14px;
  animation-duration: 12s;
  animation-delay: 1.9s;
}
.particle:nth-child(7) {
  left: 88%;
  width: 3px;
  height: 3px;
  --drift: 9px;
  animation-duration: 9.5s;
  animation-delay: 4.1s;
}
.particle:nth-child(8) {
  left: 47%;
  width: 4px;
  height: 4px;
  --drift: -11px;
  animation-duration: 10.5s;
  animation-delay: 2.2s;
}
.particle:nth-child(9) {
  left: 93%;
  width: 5px;
  height: 5px;
  --drift: 13px;
  animation-duration: 8s;
  animation-delay: 0.3s;
}
.particle:nth-child(10) {
  left: 38%;
  width: 3px;
  height: 3px;
  --drift: 8px;
  animation-duration: 11.5s;
  animation-delay: 3.9s;
}

.dots-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-visual .curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  z-index: 3;
  width: 100%;
  height: 120px;
  pointer-events: none;
  overflow: visible;
}

.hero-lower {
  --navy: #593f33;
  --orange: #b35c10;
  --muted: #6a6a6a;

  position: relative;
  box-sizing: border-box;
  align-items: center;

  /* --- Size and Centering Adjustments --- */
  width: 90%; /* Matches the 90% width of the upper section */
  max-width: 1200px; /* Caps the width at 1200px so it perfectly mirrors the top section */
  margin: 0 auto; /* Centers it horizontally on the page */
  padding: 20px 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-lower * {
  box-sizing: border-box;
}

.hero-lower::before {
  content: "";
  position: absolute;
  top: 0;
  left: 56px;
  right: 56px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 148, 12, 0.35) 20%,
    rgba(245, 148, 12, 0.35) 80%,
    transparent
  );
}

.hero-lower .reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: revealUp 0.8s ease forwards;
}
@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Brand Header Row ---- */
.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.brand-lockup .mark {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-lockup .mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--navy),
    #593f33,
    var(--orange),
    var(--navy)
  );
  animation: markSpin 5s linear infinite;
}
.brand-lockup .mark::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(245, 148, 12, 0.35);
  animation: markPulse 2.6s ease-out infinite;
}
@keyframes markPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
@keyframes markSpin {
  to {
    transform: rotate(360deg);
  }
}

.brand-lockup .mark span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: conic-gradient(
    from 0deg,
    var(--navy),
    #593f33,
    var(--orange),
    var(--navy)
  );
  font-size: 24px;
}

.brand-lockup .txt h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0;
  background: conic-gradient(
    from 0deg,
    var(--navy),
    #593f33,
    var(--orange),
    var(--navy)
  );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerText 5.5s ease-in-out infinite;
}
@keyframes shimmerText {
  0% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.brand-lockup .txt .wave {
  display: block;
  width: 74px;
  height: 9px;
  margin: 6px 0 0 0;
}
.brand-lockup .txt .wave path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 6 4;
  animation: waveFlow 2.4s linear infinite;
}
@keyframes waveFlow {
  to {
    stroke-dashoffset: -20;
  }
}

.brand-lockup .txt p {
  margin: 8px 0 0 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2px;
}

/* ---- Main Split Row Container ---- */
.hero-lower .lower-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 40px;
}

/* ---- Compact Left Stats Layout ---- */
.hero-lower .stat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.hero-lower .stat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px; /* Tightened padding so it pulls left */
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #eee;
  min-width: 145px; /* Keeps them compact */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.hero-lower .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(27, 31, 107, 0.15);
  border-color: rgba(245, 148, 12, 0.4);
}

.hero-lower .stat-card .ring-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.hero-lower .stat-card .ring-wrap svg {
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
}
.hero-lower .stat-card .ring-wrap .bg {
  fill: none;
  stroke: #ececec;
  stroke-width: 3.5;
}
.hero-lower .stat-card .ring-wrap .fg {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 122.5;
  stroke-dashoffset: 35;
}
.hero-lower .stat-card .ring-wrap .icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-lower .stat-card .ring-wrap .icon svg.ico {
  width: 18px;
  height: 18px;
}

.hero-lower .stat-card .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-lower .stat-card .num {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--navy), #3b3fa0 55%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lower .stat-card .num .suffix {
  font-size: 14px;
}
.hero-lower .stat-card .lbl {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-top: 1px;
  font-weight: 600;
}

/* ---- Large Right Logo Layout ---- */
.hero-lower .right-content {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* ---- Responsive Layout Systems ---- */
@media (max-width: 992px) {
  .hero-lower .lower-row {
    flex-direction: column-reverse; /* Places the prominent logo cleanly at the top on tablet breakdown */
    align-items: flex-start;
    gap: 32px;
  }
  .hero-lower .right-content {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-lower {
    padding: 16px 24px;
  }
  .hero-lower .stat-row {
    width: 100%;
    flex-wrap: wrap;
  }
  .hero-lower .stat-card {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .hero-lower .stat-card {
    flex: 1 1 100%;
  }
}

/* ============================================================
   RESPONSIVE HERO SLIDER
   ============================================================ */

@media (max-width: 992px) {
  .hero-visual {
    height: 360px;
  }

  .ambient-glow {
    width: 420px;
    height: 420px;
    top: -12%;
    right: -14%;
  }

  .scan-ring {
    width: 260px;
    height: 260px;
    top: 6%;
    right: 4%;
  }

  .scan-ring.inner {
    width: 190px;
    height: 190px;
    top: 12%;
    right: 8%;
  }

  .hero-visual .curve {
    height: 90px;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    height: 280px;
    border-radius: 18px 18px 0 0;
  }

  .hero-visual .scrim {
    background:
      linear-gradient(
        100deg,
        rgba(8, 14, 28, 0.85) 0%,
        rgba(8, 14, 28, 0.6) 40%,
        rgba(8, 14, 28, 0.1) 68%,
        transparent 82%
      ),
      linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 40%);
  }

  .ambient-glow {
    width: 300px;
    height: 300px;
    top: -14%;
    right: -18%;
  }

  .scan-ring {
    width: 190px;
    height: 190px;
  }

  .scan-ring.inner {
    width: 140px;
    height: 140px;
  }

  .hero-visual .curve {
    height: 60px;
  }

  .particle {
    display: none; /* keep it clean on small screens */
  }
}

@media (max-width: 480px) {
  .hero-visual {
    height: 220px;
    border-radius: 14px 14px 0 0;
  }

  .ambient-glow {
    width: 220px;
    height: 220px;
    top: -16%;
    right: -20%;
  }

  .scan-ring,
  .scan-ring.inner {
    display: none; /* too cramped at this size, cleaner without */
  }

  .hero-visual .curve {
    height: 44px;
  }
}
@media (max-width: 768px) {
  .hero-lower .right-content,
  .hero-lower .stat-row {
    display: none;
  }
}
/* ============================================================
     PRODUCTS SECTION
     ============================================================ */
:root {
  --prod-cream: #efe9df;
  --prod-panel: #f8f3ea;
  --prod-brown-dark: #3b2a22;
  --prod-brown-mid: #593f33;
  --prod-gold: #c98a45;
  --prod-gold-deep: #a5702f;
  --prod-muted: #8a7a68;
}

.products-section {
  padding: 35px 20px 45px;
  background: var(--prod-cream);
}

.products-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.products-heading h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 44px;
  color: var(--prod-brown-dark);
  line-height: 1.15;
}

.products-heading p {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--prod-muted);
  line-height: 1.7;
}

.products-viewport {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 74px;
  background-color: #efe9df;
}

.products-viewport .scroll-btn {
  position: absolute;
  top: 130px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ddd0be;
  background: var(--prod-panel);
  color: var(--prod-brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  z-index: 20;
  box-shadow: 0 10px 24px -10px rgba(59, 42, 34, 0.3);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.products-viewport .scroll-btn:hover {
  background: var(--prod-gold);
  border-color: var(--prod-gold);
  color: #fff;
  transform: translateY(-2px);
}

#prevProduct {
  left: 0;
}
#nextProduct {
  right: 0;
}

.products-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 20px;
  scrollbar-width: none;
}

.products-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 calc((100% - 52px) / 3);
  scroll-snap-align: start;
}

.product-photo {
  position: relative;
  height: 300px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(89, 63, 51, 0.15);
  background: #ffffff;
  padding: 14px;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  transition: transform 0.6s ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.06);
}

.product-info {
  position: relative;
  margin: -46px 10px 0;
  background: linear-gradient(#593f33, #825f4f);
  border-radius: 20px;
  padding: 18px 20px 20px;
  color: #f1e7db;
  box-shadow: 0 18px 30px -14px rgba(59, 42, 34, 0.45);
}

.product-info .meta-top {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: #e9d8c2;
  margin-bottom: 8px;
}

.product-info .meta-top i {
  color: var(--prod-gold);
  font-size: 11px;
}

.product-info h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 19px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 11.5px;
  color: #ecdfc9;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.specs-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.specs-row i {
  color: var(--prod-gold);
  font-size: 11px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--prod-brown-dark);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 50px;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.enquire-btn:hover {
  background: var(--prod-gold);
  color: #fff;
  transform: translateY(-2px);
}
.enquire-btn i {
  font-size: 10px;
}

.product-footer .from {
  text-align: right;
  font-size: 10.5px;
  color: #e9d8c2;
  line-height: 1.3;
}

.product-footer .from b {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.products-progress {
  max-width: 1300px;
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.products-progress .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddd0be;
  transition:
    background 0.25s ease,
    width 0.25s ease;
}

.products-progress .dot.active {
  background: var(--prod-gold-deep);
  width: 22px;
  border-radius: 6px;
}

@media (max-width: 980px) {
  .product-card {
    flex: 0 0 calc((100% - 26px) / 2);
  }
  .products-viewport {
    padding: 0 60px;
  }
  .products-viewport .scroll-btn {
    top: 110px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 640px) {
  .products-heading h2 {
    font-size: 32px;
  }
  .product-card {
    flex: 0 0 85%;
  }
  .product-photo {
    height: 250px;
  }
  .products-viewport {
    padding: 0 50px;
  }
  .products-viewport .scroll-btn {
    top: 95px;
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}

/* ============================================================
     SECTION HEADING
     ============================================================ */
.section-heading {
  text-align: center;
  padding: 20px 20px 0px;
  background: #efe9df;
}

.heading-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 5px;
}

.heading-top span {
  width: 70px;
  height: 1px;
  background: #b98a3d;
}

.heading-top p {
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #a54a3a;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 52px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #3d2b22;
  line-height: 1;
  margin-bottom: 10px;
}

.heading-description {
  margin-top: 0px;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .section-heading h2 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .section-heading h2 {
    font-size: 32px;
  }
  .heading-description {
    font-size: 14px;
    padding: 0 10px;
  }
}

@media (max-width: 420px) {
  .section-heading h2 {
    font-size: 27px;
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
:root {
  --bg: #fbf9f4;
  --bg-dark: #faf5ea;
  --card: #ffffff;
  --ink: #1c1814;
  --muted: #665e52;
  --gold: #c2934c;
  --gold-deep: #855a1b;
  --gold-soft: #f3ead3;
  --line: rgba(194, 147, 76, 0.18);
}

.about {
  position: relative;
  padding: 1.5rem 6vw 1.5rem;
  background: #efe9df;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.editorial-flow {
  display: block;
  width: 100%;
}

.stage {
  float: left;
  width: 42%;
  min-width: 340px;
  height: 380px;
  margin-right: 3.5rem;
  margin-bottom: 1rem;
  position: relative;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rig {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.frame {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  left: 50%;
  top: 50%;
  width: 165px;
  height: 240px;
  background: #fff;
  box-shadow: 0 25px 50px -15px rgba(28, 24, 20, 0.22);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    transform 0.75s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.75s cubic-bezier(0.25, 1, 0.5, 1),
    z-index 0.75s step-end;
}

.frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.frame[data-index="0"] {
  z-index: 5;
  transform: translate(-50%, -50%) translateZ(100px) rotateY(0deg);
  opacity: 1;
}
.frame[data-index="1"] {
  z-index: 4;
  transform: translate(5%, -50%) translateZ(40px) rotateY(-22deg) scale(0.9);
  opacity: 0.85;
}
.frame[data-index="2"] {
  z-index: 3;
  transform: translate(50%, -50%) translateZ(-20px) rotateY(-32deg) scale(0.8);
  opacity: 0.5;
}
.frame[data-index="3"] {
  z-index: 1;
  transform: translate(-50%, -50%) translateZ(-100px) scale(0.7);
  opacity: 0;
}
.frame[data-index="4"] {
  z-index: 1;
  transform: translate(-50%, -50%) translateZ(-100px) scale(0.7);
  opacity: 0;
}
.frame[data-index="5"] {
  z-index: 1;
  transform: translate(-50%, -50%) translateZ(-100px) scale(0.7);
  opacity: 0;
}
.frame[data-index="6"] {
  z-index: 1;
  transform: translate(-50%, -50%) translateZ(-100px) scale(0.7);
  opacity: 0;
}
.frame[data-index="7"] {
  z-index: 1;
  transform: translate(-50%, -50%) translateZ(-100px) scale(0.7);
  opacity: 0;
}
.frame[data-index="8"] {
  z-index: 3;
  transform: translate(-150%, -50%) translateZ(-20px) rotateY(32deg) scale(0.8);
  opacity: 0.5;
}
.frame[data-index="9"] {
  z-index: 4;
  transform: translate(-105%, -50%) translateZ(40px) rotateY(22deg) scale(0.9);
  opacity: 0.85;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

/* --- TEXT STYLES FOR CMS COMPATIBILITY --- */
.editorial-flow h2 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.editorial-flow h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  margin: 1.2rem 0 0.4rem;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.editorial-flow p {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 0.6rem;
  text-align: justify;
}

.editorial-flow p strong,
.editorial-flow p b {
  font-weight: 600;
  color: var(--ink);
}
/* ----------------------------------------- */

.bottom-footer-content {
  clear: both;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  text-align: center;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 800px;
}

.stat {
  flex: 1;
  background: var(--card);
  border: 1px solid rgba(194, 147, 76, 0.14);
  border-radius: 12px;
  padding: 0.9rem;
  box-shadow: 0 12px 28px -18px rgba(133, 90, 27, 0.15);
}

.stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.cta {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
  background: #593f33;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 12px 28px -10px rgba(28, 24, 20, 0.35);
  transition: all 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #593f33, #ba7f63);
}

/* Combined and cleaned up media queries */
@media (max-width: 768px) {
  .about {
    padding: 1rem 4vw;
  }

  .about .stage {
    float: none;
    width: 100%;
    margin: 0 auto 1.5rem;
  }

  .about .stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about .stat {
    padding: 0.5rem 0.2rem;
    min-width: 0;
  }

  .about .stat strong {
    font-size: 1.2rem;
  }

  .about .stat span {
    font-size: 0.52rem;
    white-space: nowrap;
    display: block;
  }
}

/* ============================================================
     VIDEO SECTION
     ============================================================ */
/* This targets the outer canvas area surrounding the card component */

.ss-isolated-wrapper,
.ss-isolated-wrapper * {
  box-sizing: border-box;
}

/* This shifts ONLY this block's immediate area to cream */
.ss-isolated-wrapper,
.ss-force-canvas {
  background-color: #efe9df !important;
  background: #efe9df !important;
  width: 100%;
  display: block;
  padding: 1px 0; /* Prevents margin collapse */
}

/* Text header layout section controls */
.ss-force-canvas .section-heading {
  text-align: center;
  padding: 30px 20px 10px;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: transparent !important;
  background-color: transparent !important;
}
.ss-force-canvas .section-heading .heading-top p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #a9791f;
  margin: 0;
}
.ss-force-canvas .section-heading h2 {
  font-family: "Oswald", sans-serif;
  color: #241f16 !important;
  font-size: clamp(28px, 4vw, 42px);
  margin: 10px 0;
  text-transform: uppercase;
}
.ss-force-canvas .section-heading .heading-description {
  max-width: 650px;
  margin: 0 auto;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: rgba(36, 31, 22, 0.75) !important;
}

/* CARD HERO UNIQUE DESIGN BLOCK */
.ss-vh {
  --ss-vh-ink: #241f16;
  --ss-vh-paper: #efe9df;
  --ss-vh-panel: rgba(247, 242, 231, 0.72);
  --ss-vh-gold: #a9791f;
  --ss-vh-gold-bright: #8a611a;
  --ss-vh-gold-soft: #d8b56b;
  --ss-vh-silver: #8b8f95;
  --ss-vh-font-display: "Oswald", "Arial Narrow", sans-serif;
  --ss-vh-font-body: "Inter", "Segoe UI", sans-serif;
  --ss-vh-font-mono: "IBM Plex Mono", "Courier New", monospace;

  position: relative;
  isolation: isolate;
  width: calc(100% - 80px);
  max-width: 1200px;
  margin: 15px auto 30px;
  border-radius: 12px;
  height: 70vh;
  min-height: 560px;
  max-height: 580px;
  overflow: hidden;
  background: #14120e;
  font-family: var(--ss-vh-font-body);
  color: var(--ss-vh-ink);
  box-shadow: 0 30px 60px rgba(36, 31, 22, 0.18);
}

.ss-vh__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #efe9df;
}

.ss-vh__video-stream {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0.95;
}

.ss-vh__blueprint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(169, 121, 31, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(169, 121, 31, 0.04) 1px, transparent 1px);
}

.ss-vh__scrim {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    90deg,
    rgba(20, 18, 14, 0.85) 0%,
    rgba(20, 18, 14, 0.6) 40%,
    transparent 75%
  );
  pointer-events: none;
}

.ss-vh__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 16px);
  height: 100%;
  max-width: 580px;
  padding: clamp(24px, 5vw, 50px);
  box-sizing: border-box;
}

.ss-vh__eyebrow {
  margin: 0;
  font-family: var(--ss-vh-font-mono);
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ss-vh-gold-soft);
  opacity: 0;
  transform: translateY(14px);
}

.ss-vh__headline {
  margin: 0;
  font-family: var(--ss-vh-font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(18px);
}

.ss-vh__headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--ss-vh-gold-soft) 0%, #ffe4a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ss-vh__quote {
  margin: 0;
  max-width: 50ch;
  font-size: clamp(13px, 1.1vw, 14.5px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  border-left: 2px solid var(--ss-vh-gold-soft);
  padding-left: 12px;
  opacity: 0;
  transform: translateY(16px);
}

.ss-vh__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  width: 100%;
}

.ss-vh__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12.5px, 0.95vw, 13.5px);
  font-weight: 500;
  color: #ffffff;
  opacity: 0;
  transform: translateX(-14px);
}

.ss-vh__tick {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--ss-vh-gold-soft);
  color: var(--ss-vh-gold-soft);
  background: rgba(216, 181, 107, 0.15);
  font-family: var(--ss-vh-font-mono);
  font-size: 10px;
}

.ss-vh__cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  font-family: var(--ss-vh-font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ss-vh-ink);
  background: #ffffff;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.25s ease;
  opacity: 0;
  transform: translateY(16px);
}

.ss-vh__cta:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.ss-vh__cta svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}
.ss-vh__cta:hover svg {
  transform: translateX(4px);
}

.ss-vh__badge {
  position: relative;
  width: clamp(54px, 6vw, 76px);
  height: clamp(54px, 6vw, 76px);
  margin-bottom: 2px;
  opacity: 0;
  transform: scale(0.3) rotate(-20deg);
}

.ss-vh.is-live .ss-vh__badge {
  animation: ssVhStamp 0.9s cubic-bezier(0.2, 1.4, 0.4, 1) 0.15s forwards;
}

.ss-vh__badge::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(216, 181, 107, 0.55);
  opacity: 0;
  transform: scale(0.6);
}

.ss-vh.is-live .ss-vh__badge::before {
  animation: ssVhRipple 1s ease-out 0.2s forwards;
}

.ss-vh__badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* TIMINGS & KEYFRAMES */
@keyframes ssVhStamp {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-20deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.12) rotate(4deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes ssVhRipple {
  0% {
    opacity: 0.8;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

.ss-vh.is-live .ss-vh__eyebrow {
  animation: ssVhRise 0.7s ease forwards 0.05s;
}
.ss-vh.is-live .ss-vh__headline {
  animation: ssVhRise 0.8s ease forwards 0.18s;
}
.ss-vh.is-live .ss-vh__quote {
  animation: ssVhRise 0.8s ease forwards 0.36s;
}
.ss-vh.is-live .ss-vh__list li {
  animation: ssVhSlide 0.6s ease forwards;
}
.ss-vh.is-live .ss-vh__list li:nth-child(1) {
  animation-delay: 0.5s;
}
.ss-vh.is-live .ss-vh__list li:nth-child(2) {
  animation-delay: 0.58s;
}
.ss-vh.is-live .ss-vh__list li:nth-child(3) {
  animation-delay: 0.66s;
}
.ss-vh.is-live .ss-vh__list li:nth-child(4) {
  animation-delay: 0.74s;
}
.ss-vh.is-live .ss-vh__cta {
  animation: ssVhRise 0.7s ease forwards 0.9s;
}

@keyframes ssVhRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ssVhSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE LAYOUT RESIZES */
@media (max-width: 780px) {
  .ss-vh {
    width: calc(100% - 32px);
    margin: 10px auto;
    height: auto;
    min-height: auto;
  }
  .ss-vh__content {
    max-width: 100%;
    padding: 36px 20px;
  }
  .ss-vh__list {
    grid-template-columns: 1fr;
  }
  .ss-vh__scrim {
    background: linear-gradient(
      180deg,
      rgba(20, 18, 14, 0.5) 0%,
      rgba(20, 18, 14, 0.9) 60%,
      #14120e 100__
    );
  }
}

/* ============================================================
     SHOWCASE CARDS
     ============================================================ */
.ss-showcase {
  --ss-color-dark: #593f33;
  --ss-color-light: #efe9df;
  --ss-color-red: #ff1a1a;
  --ss-font-sans: "Inter", system-ui, sans-serif;

  padding: 30px 24px;
  background-color: #efe9df;
  font-family: var(--ss-font-sans);
}

.ss-showcase__container {
  max-width: 1240px;
  margin-top: 1px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ss-card {
  position: relative;
  border-radius: 14px;
  min-height: 370px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-sizing: border-box;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ss-card__content {
  position: relative;
  z-index: 3;
  max-width: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ss-card__bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
  background-size: 30px 30px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ss-card--dark {
  background-color: var(--ss-color-dark);
  color: #ffffff;
}

.ss-card--dark .ss-card__bg-pattern {
  background-image:
    linear-gradient(to right, #ffffff 1px, transparent 1px),
    linear-gradient(to bottom, #ffffff 1px, transparent 1px);
}

.ss-card--dark .ss-card__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.ss-card--dark .ss-card__title {
  color: #ffffff;
}
.ss-card--dark .ss-card__highlight {
  color: var(--ss-color-red);
}
.ss-card--dark .ss-card__tagline {
  color: #ffffff;
}
.ss-card--dark .ss-card__description {
  color: rgba(255, 255, 255, 0.85);
}
.ss-card--dark .ss-card__btn {
  background-color: #ffffff;
  color: #000000;
}
.ss-card--dark .ss-card__btn::before {
  background-color: #593f33;
}
.ss-card--dark .ss-card__btn:hover {
  color: #ffffff;
}

.ss-card--light {
  background-color: darken(var(--ss-color-light));
  color: var(--ss-color-dark);
  border: 2px solid #593f33;
}

.ss-card--light .ss-card__bg-pattern {
  opacity: 0.08;
  background-image:
    linear-gradient(to right, var(--ss-color-dark) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ss-color-dark) 1px, transparent 1px);
}

.ss-card--light .ss-card__subtitle {
  color: rgba(89, 63, 51, 0.85);
}
.ss-card--light .ss-card__title {
  color: var(--ss-color-dark);
}
.ss-card--light .ss-card__highlight {
  color: var(--ss-color-red);
}
.ss-card--light .ss-card__tagline {
  color: var(--ss-color-dark);
}
.ss-card--light .ss-card__description {
  color: rgba(89, 63, 51, 0.9);
}
.ss-card--light .ss-card__btn {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}
.ss-card--light .ss-card__btn::before {
  background-color: var(--ss-color-dark);
}
.ss-card--light .ss-card__btn:hover {
  color: #ffffff;
}

.ss-card__subtitle {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 14px;
}

.ss-card__title {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px 0;
}

.ss-card__tagline {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 14px 0;
}

.ss-card__description {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 28px 0;
  font-weight: 400;
}

.ss-card__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

.ss-card__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ss-card__btn:hover::before {
  transform: scaleX(1);
}

.ss-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.ss-card__image-wrapper {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 38%;
  height: 80%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ss-card__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
  transition:
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.5s ease;
}

.ss-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(89, 63, 51, 0.08);
}

.ss-card:hover .ss-card__img {
  transform: translateY(-10px) scale(1.03) rotate(1deg);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.ss-card:hover .ss-card__bg-pattern {
  transform: scale(1.15) translate(5px, 5px);
}

@media (max-width: 992px) {
  .ss-showcase__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .ss-showcase {
    padding: 20px 16px;
  }
  .ss-card {
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }
  .ss-card__content {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .ss-card__image-wrapper {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 220px;
  }
  .ss-card__btn {
    width: 100%;
  }
}

/* ============================================================
     PARTNERS
     ============================================================ */
.partners {
  position: relative;
  background: #593f33;
  padding: 20px 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 6px;
}

.partners::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -140%;
  width: 6%;
  height: 340%;
  background: #868074;
  transform: rotate(28deg);
  opacity: 0.25;
}

.partners-heading {
  flex: 0 0 auto;
  padding-left: 56px;
  z-index: 2;
}

.partners-heading h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  color: #f3ead8;
  margin: 0;
  white-space: nowrap;
}

.marquee {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 90px;
  overflow: hidden;
}

.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(160px, 14vw);
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(270deg, #2e1e16, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: slide 26s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes slide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 46px;
}

.logo-item img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  opacity: 0.95;
  will-change: transform, opacity;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover img {
  transform: translateY(-2px) scale(1.06);
  opacity: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .partners {
    gap: 0;
    padding: 15px 15px; /* Slightly tighter padding for smaller mobile viewports */
  }

  /* Hides the text section completely so only the marquee takes space */
  .partners-heading {
    display: none;
  }

  .logo-item {
    padding: 0 26px;
  }

  .logo-item img {
    height: 52%;
  }
}

/* ============================================================
     TESTIMONIALS
     ============================================================ */
.testimonials-section {
  font-family: "Inter", sans-serif;
  background-color: #efe9df;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 24px 20px 48px;
  overflow: visible;
}

.canvas-container {
  position: relative;
  width: min(100%, 1320px);
  min-height: 720px;
  height: auto;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 70px;
}

.photo-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 65%
  );
  animation: pulseGlow 6s ease-in-out infinite;
}

/* --- Smooth Floating Keyframes for Center Photos (No layout shifts) --- */
@keyframes floatAndGlow {
  0%,
  100% {
    transform: translateY(0px) scale(1.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
  }
}

.testimonials-section .img-5 {
  animation: floatAndGlow 3.5s infinite ease-in-out;
}
.testimonials-section .img-6 {
  animation: floatAndGlow 4.2s infinite ease-in-out 0.8s;
}
.testimonials-section .img-7 {
  animation: floatAndGlow 3.8s infinite ease-in-out 0.3s;
}
.testimonials-section .img-8 {
  animation: floatAndGlow 4.5s infinite ease-in-out 1.5s;
}
.testimonials-section .img-9 {
  animation: floatAndGlow 4s infinite ease-in-out 0.6s;
}
.testimonials-section .img-10 {
  animation: floatAndGlow 4.8s infinite ease-in-out 1.2s;
}

.testimonials-section .grid-img {
  position: absolute;
  width: 100px;
  height: 134px;
  object-fit: cover;
  border-radius: 18px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Center Group Base State --- */
.testimonials-section .img-5,
.testimonials-section .img-6,
.testimonials-section .img-7,
.testimonials-section .img-8,
.testimonials-section .img-9,
.testimonials-section .img-10 {
  filter: blur(0px) brightness(1.1);
  z-index: 5;
}

/* --- Left & Right Side Base State (Blurry / Dim) --- */
.testimonials-section .img-1,
.testimonials-section .img-2,
.testimonials-section .img-3,
.testimonials-section .img-4,
.testimonials-section .img-11,
.testimonials-section .img-12,
.testimonials-section .img-13,
.testimonials-section .img-14 {
  filter: blur(1.5px) brightness(0.95) grayscale(10%);
  opacity: 0.7;
  transform: scale(0.98);
  z-index: 1;
}

/* --- Hover State: Only triggers on Outer Left/Right Photos --- */
.testimonials-section .img-1:hover,
.testimonials-section .img-2:hover,
.testimonials-section .img-3:hover,
.testimonials-section .img-4:hover,
.testimonials-section .img-11:hover,
.testimonials-section .img-12:hover,
.testimonials-section .img-13:hover,
.testimonials-section .img-14:hover {
  filter: blur(0px) brightness(1.2) !important;
  transform: scale(1.1) !important;
  opacity: 1 !important;
  z-index: 10;
  cursor: pointer;
}

.testimonials-section .img-1 {
  top: 114px;
  left: 5%;
}
.testimonials-section .img-2 {
  top: 260px;
  left: 5%;
}
.testimonials-section .img-3 {
  top: 64px;
  left: 15%;
}
.testimonials-section .img-4 {
  top: 210px;
  left: 15%;
}
.testimonials-section .img-5 {
  top: 125px;
  left: 25%;
}
.testimonials-section .img-6 {
  top: 70px;
  left: 35.1%;
}
.testimonials-section .img-7 {
  top: 230px;
  left: 35.1%;
}
.testimonials-section .img-8 {
  top: 102px;
  left: 45.2%;
}
.testimonials-section .img-9 {
  top: 66px;
  left: 55.3%;
}
.testimonials-section .img-10 {
  top: 125px;
  left: 65.3%;
}
.testimonials-section .img-11 {
  top: 210px;
  left: 74.8%;
}
.testimonials-section .img-12 {
  top: 64px;
  left: 75.4%;
}
.testimonials-section .img-13 {
  top: 114px;
  left: 85.4%;
}
.testimonials-section .img-14 {
  top: 260px;
  left: 84.8%;
}

.testimonials-section .static-header {
  position: absolute;
  top: 240px;
  text-align: center;
  z-index: 5;
}

.testimonials-section .heading {
  font-size: 35px;
  font-weight: 700;
  color: #111;
  margin-top: 25px;
}

.testimonials-section .subheading {
  font-size: 35px;
  font-weight: 700;
  color: #999;
}

.testimonials-section .slider-wrapper {
  position: absolute;
  bottom: 140px;
  width: 100%;
  max-width: 650px;
  height: 260px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Ultra-Smooth Text Slide Transitions --- */
.testimonials-section .slide {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 150px;

  transform: translateY(6px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.testimonials-section .slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testimonials-section .client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.testimonials-section .stars {
  color: #9061f9;
  font-size: 15px;
  margin-bottom: 10px;
}

.testimonials-section .client-name {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.testimonials-section .client-role {
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
}

.testimonials-section .testimonial-body {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  max-width: 540px;
}

.testimonials-section .nav-btn {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  z-index: 20;
  transition:
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-section .nav-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.testimonials-section .prev-btn {
  left: -60px;
}
.testimonials-section .next-btn {
  right: -60px;
}

.testimonials-section .pagination-dots {
  position: absolute;
  bottom: 50px;
  display: flex;
  gap: 8px;
  z-index: 15;
}

.testimonials-section .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition:
    background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-section .dot:hover {
  transform: scale(1.2);
}

.testimonials-section .dot.active {
  background: #111;
  transform: scale(1.25);
}

@media (max-width: 900px) {
  .canvas-container {
    height: auto;
    min-height: 520px;
    padding: 20px 20px 40px;
  }
  .photo-grid-bg {
    display: none;
  }
  .testimonials-section .static-header {
    position: static;
    margin-bottom: 18px;
  }
  .testimonials-section .heading,
  .testimonials-section .subheading {
    font-size: 26px;
  }
  .testimonials-section .slider-wrapper {
    position: relative;
    bottom: auto;
    height: auto;
    padding: 0 50px;
  }

  .testimonials-section .slide {
    position: relative;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
    transition: none;
  }
  .testimonials-section .slide.active {
    display: flex;
  }
  .testimonials-section .nav-btn {
    top: 110px;
  }
  .testimonials-section .prev-btn {
    left: 0;
  }
  .testimonials-section .next-btn {
    right: 0;
  }
  .testimonials-section .pagination-dots {
    position: static;
    margin-top: 18px;
    justify-content: center;
  }
}

/* ============================================================
     CONTACT
     ============================================================ */
/* --- Outer Contact Section Container --- */
.contact-section {
  position: relative;
  box-sizing: border-box;

  /* --- Shared Layout Alignment & Constraints --- */
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px 40px;

  min-height: 90vh;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(92, 45, 14, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%),
    url("/assets/photos/Contact\ Background\ Img.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", sans-serif;
}

/* --- Inner Content Row Container --- */
.contact-section .container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  gap: 80px;
  align-items: center;
}

/* --- Left Column Content --- */
.contact-section .left-content {
  flex: 1;
  color: white;
}

/* --- Scaled-Down Clean Typography --- */
.contact-section .left-content h1 {
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.contact-section .left-content p {
  font-size: 13px;
  margin-bottom: 16px;
  opacity: 0.85;
  line-height: 1.5;
}

/* --- Compact Button Group & Actions --- */
.contact-section .btn-group {
  display: flex;
  gap: 15px;
}

.contact-section .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #e53935;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.2);
  margin-top: 8px;
}

.contact-section .contact-btn svg {
  width: 18px;
  height: 18px;
}

.contact-section .contact-btn:hover {
  background: #d32f2f;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.3);
}

.contact-section .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.2);
  margin-top: 8px;
}

.contact-section .whatsapp-btn svg {
  width: 18px;
  height: 18px;
}

.contact-section .whatsapp-btn:hover {
  background: #20c45a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

/* --- Form Box & Layout Inputs --- */
.contact-section .form-box {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-section .form-box h2 {
  font-size: 20px;
  margin-bottom: 18px;
}

.contact-section .form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-section .input-field {
  width: 100%;
  padding: 12px;
  background: #2a2a2a;
  border: 1px solid #444;
  color: white;
  border-radius: 4px;
}

.contact-section textarea {
  width: 100%;
  height: 100px;
  background: #2a2a2a;
  border: 1px solid #444;
  color: white;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.contact-section .submit-btn {
  width: 100%;
  padding: 15px;
  background: #8d3e1a;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

/* --- Contact Information Display Blocks --- */
.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-section .info-item i {
  font-size: 18px;
  color: #ffd54f;
  min-width: 24px;
  margin-top: 2px;
}

.contact-section .info-item h5 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.contact-section .info-item p,
.contact-section .info-item a {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.5;
  font-size: 13.5px;
  transition: 0.3s;
}

.contact-section .info-item a:hover {
  color: #ffd54f;
}

/* --- Layout Utility Overrides --- */
.mainbar {
  flex-wrap: nowrap !important;
}

.contact-cluster {
  flex-wrap: nowrap !important;
}

/* --- Responsive Media Viewports --- */
@media (max-width: 900px) {
  .contact-section {
    width: 90%;
    margin: 12px auto;
    padding: 12px 24px;
    min-height: auto;
  }
  .contact-section .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .contact-section .left-content h1 {
    font-size: 22px;
  }
  .contact-section .form-box {
    padding: 26px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    width: calc(100% - 28px);
    margin: 10px auto;
    padding: 10px 18px;
    border-radius: 16px;
  }
  .contact-section .form-group {
    flex-direction: column;
    gap: 12px;
  }
  .contact-section .btn-group {
    flex-direction: column;
  }
  .contact-section .contact-btn,
  .contact-section .whatsapp-btn {
    justify-content: center;
    width: 100%;
  }
}

.contact-section .contact-info {
  display: inline-flex;
  align-items: flex-start; /* Keeps structural block left-heavy */
  text-align: left; /* Restores clean reading format */
  margin: 0 auto; /* Centers the whole collective cluster block in the container */
}
.contact-section .info-item {
  text-align: left;
}

.ss-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: #593f33;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.ss-menu-btn:hover {
  background: #6b4d3e;
}

.ss-menu-btn span {
  width: 20px;
  height: 2px;
  background: #efe9df;
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    opacity 0.25s ease;
}

.ss-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ss-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ss-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

:root {
  --psh-cream: #efe9df;
  --psh-brown: #593f33;
  --psh-brown-deep: #2b1c15;
  --psh-gold: #c98a45;
  --psh-gold-light: #f0c68a;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  background: #fff;
}

/* ============ PSH (Page-Section Header) namespaced section ============ */
/* Swap the URL below for your own asset, e.g. assets/photos/gold-refining-plant.jpg */
.psh-header {
  --psh-bg: url("https://images.unsplash.com/photo-1518709268805-4e9042af2176?q=80&w=1920&auto=format&fit=crop");
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.psh-bg {
  position: absolute;
  inset: 0;
  background-image: var(--psh-bg);
  background-size: cover;
  background-position: center;
  animation: pshKenBurns 16s ease-in-out infinite alternate;
}
@keyframes pshKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}

/* overlay: warm brown gradient rather than a flat black scrim, ties to the refining palette */
.psh-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(43, 28, 21, 0.55) 0%,
      rgba(43, 28, 21, 0.72) 55%,
      rgba(43, 28, 21, 0.85) 100%
    ),
    linear-gradient(
      90deg,
      rgba(43, 28, 21, 0.4) 0%,
      transparent 30%,
      transparent 70%,
      rgba(43, 28, 21, 0.4) 100%
    );
}

/* thin gold pour-line between title and breadcrumb, signature element */
.psh-underline {
  display: block;
  width: 0;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--psh-gold-light),
    transparent
  );
  animation: pshLine 1.1s 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes pshLine {
  to {
    width: 220px;
  }
}

.psh-header {
  width: 100vw;
  max-width: none;
  margin: 0 auto;
}

.psh-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  max-width: none;
}

.psh-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(22px);
  animation: pshRise 0.8s ease forwards;
}

@keyframes pshRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.psh-crumbs {
  margin-top: 14px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14.5px;
  opacity: 0;
  animation: pshRise 0.8s 0.3s ease forwards;
}
.psh-crumb a {
  color: var(--psh-gold-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}
.psh-crumb a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--psh-gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.psh-crumb a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.psh-crumb-current {
  color: rgba(255, 255, 255, 0.85);
}
.psh-crumb-sep {
  width: 5px;
  height: 5px;
  background: var(--psh-gold);
  transform: rotate(45deg);
  opacity: 0.8;
}

@media (max-width: 640px) {
  .psh-header {
    height: 280px;
  }
  .psh-title {
    letter-spacing: 0.8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .psh-bg {
    animation: none;
  }
  .psh-title,
  .psh-crumbs,
  .psh-underline {
    animation: none !important;
    opacity: 1 !important;
    transform: translate(0, 0) !important;
    width: 220px !important;
  }
}

:root {
  --ssrsStat-brown: #593f33;
  --ssrsStat-cream: #efe9df;
}
* body {
  background: #efe9df;
}

/* ============ STC (Stats Counter) namespaced section ============ */
.ssrsStat-section {
  background: var(--ssrsStat-brown);
  padding: 22px 6vw;
  max-width: 1350px;
  margin: 25px auto;
}

.ssrsStat-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ssrsStat-item {
  text-align: center;
  padding: 0 12px;
  border-left: 1px solid rgba(239, 233, 223, 0.15);
}
.ssrsStat-item:first-child {
  border-left: none;
}

.ssrsStat-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

.ssrsStat-number {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--ssrsStat-cream);
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  white-space: nowrap;
}

.ssrsStat-label {
  margin-top: 8px;
  color: rgba(239, 233, 223, 0.75);
  font-size: 14px;
}

@media (max-width: 860px) {
  .ssrsStat-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .ssrsStat-item:nth-child(3) {
    border-left: none;
  }
}
@media (max-width: 480px) {
  .ssrsStat-grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
  .ssrsStat-item {
    border-left: none;
  }
}

:root {
  --bg: #fbf9f4;
  --bg-dark: #faf5ea;
  --card: #ffffff;
  --ink: #1c1814;
  --muted: #665e52;
  --gold: #c2934c;
  --gold-deep: #855a1b;
  --gold-soft: #f3ead3;
  --line: rgba(194, 147, 76, 0.18);
}

.about {
  position: relative;
  padding: 1.5rem 6vw 1.5rem;
  background: #efe9df;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.editorial-flow {
  display: block;
  width: 100%;
}

/* ============ ssaPortrait = Seven Seas About Portrait (unique — won't clash) ============ */
.ssaPortrait-column {
  float: left;
  width: 42%;
  min-width: 340px;
  margin-right: 3.5rem;
  margin-bottom: 1rem;
}

.ssaPortrait-stage {
  width: 100%;
  height: 380px;
  position: relative;
}

.ssaPortrait-glow {
  position: absolute;
  inset: -18px;
  background: radial-gradient(
    ellipse at center,
    rgba(194, 147, 76, 0.22),
    transparent 70%
  );
  filter: blur(6px);
  z-index: 0;
}

.ssaPortrait-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 25px 50px -15px rgba(28, 24, 20, 0.28);
  border: 1px solid rgba(194, 147, 76, 0.35);
}

.ssaPortrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.ssaPortrait-frame:hover img {
  transform: scale(1.09);
}

.ssaPortrait-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 2;
  border: 2px solid var(--gold);
  opacity: 0.9;
}
.ssaPortrait-corner--tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.ssaPortrait-corner--br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

/* ============ ssaShare = deliberately dark + minimal, contrasts with the warm gold photo frame above ============ */
.ssaShare-bar {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ssaShare-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Fraunces", serif;
  font-size: 0.95rem;
  color: var(--ink);
}
.ssaShare-label-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
}

.ssaShare-icons {
  display: flex;
  gap: 8px;
}

.ssaShare-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #1c1814;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.ssaShare-btn svg {
  width: 17px;
  height: 17px;
}
.ssaShare-btn:hover {
  background: var(--gold-deep);
  transform: translateY(-3px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

h2.heading {
  font-family: "Fraunces", serif;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3.sub-heading {
  font-family: "Fraunces", serif;
  font-weight: 600;
  margin: 1.2rem 0 0.4rem;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 0.6rem;
  text-align: justify;
}

.bottom-footer-content {
  clear: both;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  text-align: center;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 800px;
}

.stat {
  flex: 1;
  background: var(--card);
  border: 1px solid rgba(194, 147, 76, 0.14);
  border-radius: 12px;
  padding: 0.9rem;
  box-shadow: 0 12px 28px -18px rgba(133, 90, 27, 0.15);
}

.stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.cta {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
  background: #593f33;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 12px 28px -10px rgba(28, 24, 20, 0.35);
  transition: all 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #593f33, #ba7f63);
}

@media (max-width: 768px) {
  .ssaPortrait-column {
    float: none;
    width: 100%;
    margin: 0 auto 1.5rem;
  }
  .stat-row {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .about {
    padding: 1rem 4vw;
  }
}

.cat-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px 20px;
  background: #f4f4f4;
  width: 100%;
  box-sizing: border-box;
}

.cat-row {
  display: flex;
  flex-wrap: wrap; /* Allows buttons to flow to the next line */
  gap: 14px;
  width: 100%;
}

/* Two-column layout splits 50/50 across the full width */
.cat-row.two-col .cat-btn {
  flex: 1;
}

/* Base button styles applied equally to ALL buttons */
.cat-btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 18px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  background-size: 200% 100%;
  background-position: left;
  transition:
    background-position 0.5s ease,
    color 0.4s ease,
    box-shadow 0.3s ease;
}

.cat-row.two-col .cat-btn {
  color: #f1e7db;
  background-image: linear-gradient(
    90deg,
    rgb(89, 63, 51) 0%,
    rgb(89, 63, 51) 40%,
    #faf5ea 100%
  );
}
.cat-row.two-col .cat-btn:hover {
  background-position: right;
  color: rgb(89, 63, 51);
  box-shadow: 0 4px 12px rgba(89, 63, 51, 0.3);
}

/* 2. MIDDLE BIG BUTTONS (India / State) - Rich Coffee Brown (Darker & Stronger) */
.cat-btn.full {
  width: 100%;
  color: #f1e7db;
  background-image: linear-gradient(
    90deg,
    rgb(110, 82, 67) 0%,
    rgb(110, 82, 67) 40%,
    #faf5ea 100%
  );
}
.cat-btn.full:hover {
  background-position: right;
  color: rgb(110, 82, 67);
  box-shadow: 0 4px 12px rgba(110, 82, 67, 0.3);
}

/* 3. BOTTOM SMALL BUTTON (Port Blair) - Warm Cocoa Brown (Deep & Balanced) */
.cat-btn.small {
  width: fit-content;
  min-width: 180px;
  color: #f1e7db;
  background-image: linear-gradient(
    90deg,
    rgb(133, 101, 84) 0%,
    rgb(133, 101, 84) 40%,
    #faf5ea 100%
  );
}
.cat-btn.small:hover {
  background-position: right;
  color: rgb(133, 101, 84);
  box-shadow: 0 4px 12px rgba(133, 101, 84, 0.3);
}

.float-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe5b);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.float-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: relative;
  z-index: 1;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px -6px rgba(0, 0, 0, 0.55);
}

.float-brochure {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(155, 99, 73);
  color: #fff;
  padding: 16px 10px;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: -6px 0 20px -6px rgba(0, 0, 0, 0.35);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.float-brochure svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

/* ============================================================
   MOBILE-ONLY: REDUCE HERO HEIGHT + SECTION GAPS
   (Does not affect desktop layout)
   ============================================================ */

@media (max-width: 768px) {
  /* ---- Hero banner: shorter on tablets/large phones ---- */
  .hero-visual {
    height: 220px !important;
  }
  .hero-visual .curve {
    height: 44px !important;
  }

  /* ---- Reduce spacing between sections ---- */
  .section-heading {
    padding: 10px 20px 0 !important;
  }
  .about {
    padding: 0.6rem 4vw !important;
  }
  .products-section {
    padding: 18px 20px 22px !important;
  }
  .products-heading {
    margin-bottom: 22px !important;
  }
  .ss-force-canvas .section-heading {
    padding: 14px 20px 6px !important;
  }
  .ss-vh {
    margin: 8px auto 14px !important;
  }
  .ss-showcase {
    padding: 16px 24px !important;
  }
  .partners {
    padding: 12px 15px !important;
  }
  .testimonials-section {
    padding: 4px 20px !important;
  }
  .contact-section {
    margin: 10px auto !important;
    padding: 12px 20px !important;
  }
  .ssrsStat-section {
    padding: 14px 6vw !important;
    margin: 12px auto !important;
  }
  .cat-section {
    padding: 8px 20px !important;
    gap: 10px !important;
  }
}

@media (max-width: 480px) {
  /* ---- Hero banner: even shorter on small phones ---- */
  .hero-visual {
    height: 160px !important;
  }
  .hero-visual .curve {
    height: 30px !important;
  }

  /* ---- Tighter section spacing on very small screens ---- */
  .section-heading {
    padding: 8px 16px 0 !important;
  }
  .about {
    padding: 0.4rem 4vw !important;
  }
  .products-section {
    padding: 12px 16px 16px !important;
  }
  .products-heading {
    margin-bottom: 16px !important;
  }
  .ss-vh {
    margin: 6px auto 10px !important;
  }
  .ss-showcase {
    padding: 12px 16px !important;
  }
  .partners {
    padding: 10px 12px !important;
  }
  .testimonials-section {
    padding: 4px 16px !important;
  }
  .contact-section {
    margin: 8px auto !important;
    padding: 10px 16px !important;
  }
  .ssrsStat-section {
    padding: 10px 6vw !important;
    margin: 8px auto !important;
  }
  .cat-section {
    padding: 6px 16px !important;
    gap: 8px !important;
  }
}
/* ============================================================
   MOBILE-ONLY: RESPONSIVE MARKETPLACE / CATEGORY BUTTONS
   ============================================================ */

@media (max-width: 768px) {
  .cat-section {
    gap: 10px;
  }

  .cat-row {
    gap: 10px;
  }

  /* Stack the two top buttons (Manufacturers / Suppliers) on tablets+phones */
  .cat-row.two-col {
    flex-direction: column;
  }

  .cat-btn {
    padding: 14px 18px;
    font-size: 14px;
    white-space: normal; /* let text wrap instead of overflowing */
  }

  .cat-btn.small {
    width: 100%; /* Port Blair button goes full width too */
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .cat-section {
    gap: 8px;
    padding: 6px 16px;
  }

  .cat-btn {
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 5px;
  }
}

/* ============================================================
   LARGE SCREEN (1920px+ / 2060px) — CENTER ALL SECTIONS
   ============================================================ */

@media (min-width: 1920px) {

  body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* ---- Hero banner: allow it to span the full width ---- */
  .hero-card {
    max-width: none;
    margin: 0;
  }

  .hero-visual,
  .hero-lower {
    max-width: none;
    margin: 0;
  }

  /* ---- Navbar: allow it to span the full width ---- */
  .navbar-wrap {
    max-width: none;
  }

  /* ---- Sections that currently stretch full width — cap + center them ---- */
  .partners,
  .products-section,
  .ss-showcase,
  .cat-section,
  footer,
  .ssrsStat-section {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  /* ---- Video hero section: already has max-width:1200px, bump slightly for big screens ---- */
  .ss-vh {
    max-width: 1400px;
  }

  /* ---- Testimonials canvas: already capped at 1200px, keep centered (no change needed, just reinforcing) ---- */
  .canvas-container {
    margin-left: auto;
    margin-right: auto;
  }

  /* ---- Contact section: already capped, reinforcing centering ---- */
  .contact-section {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1920px) {

  /* ... other rules stay the same ... */

  .ss-showcase {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .ss-showcase__container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
}

