body {
  font-family: "Inter", sans-serif;
  overflow-x: clip !important;
}
@keyframes goldPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}
.gold-glow {
  animation: goldPulse 2.5s infinite;
}
/* custom staggered fade + up (like framer) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-1 {
  animation-delay: 0.15s;
}
.delay-2 {
  animation-delay: 0.3s;
}
.delay-3 {
  animation-delay: 0.45s;
}
.delay-4 {
  animation-delay: 0.6s;
}
.delay-5 {
  animation-delay: 0.75s;
}

@keyframes softFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-card {
  opacity: 0; /* hidden until animation plays */
  animation: softFadeUp 0.7s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.25s;
}
.delay-3 {
  animation-delay: 0.4s;
}
.delay-4 {
  animation-delay: 0.55s;
}
.gold-underline {
  background: linear-gradient(90deg, #d4af37 0%, rgba(212, 175, 55, 0.2) 80%);
  height: 2px;
  width: 60px;
  transition: width 0.3s ease;
}
.group:hover .gold-underline {
  width: 100px;
}

.offerings .group {
  background-color: #ffffff08;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offerings .group h3 {
  text-align: center;
}

/* landing page */

.gold-underline {
  position: relative;
  display: inline-block;
}
.gold-underline::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d4af37;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.group:hover .gold-underline::after {
  transform: scaleX(1);
}
/* optional overlay to keep text readable */
.hero-overlay {
  background: linear-gradient(
    89deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero-text {
  font-family: "Playfair Display", serif;
}

.gold-underline {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: #d4af37;
}
.gold-underline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d4af37;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.gold-underline:hover::after {
  transform: scaleX(1);
}
/* card styling */
.service-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 0; /* sharp edges as per minimal luxury */
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: #D4AF37/40;
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.15);
}
/* optional image placeholder styling */
.card-image {
  width: 100%;
  height: 220px;
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
  position: relative;
}
.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.1) 50%
  );
}
/* custom pagination bullets (gold) */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  background: #d4af37 !important;
  opacity: 1;
}

.mySwiper {
  position: relative;
}
.mySwiper .joint {
  position: absolute;
  top: 0;
  right: 0;
}
/* Pull arrows out of Swiper's default absolute flow */
.swiper-button-next,
.swiper-button-prev {
  margin-top: 0 !important;
  width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white !important;
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
  flex-shrink: 0;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 20px !important;
  height: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  border-color: #d4af37;
  color: #d4af37 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 13px !important;
  font-weight: 700;
}

.text-gold {
  color: #d4af37;
}

.border-gold {
  border-color: #d4af37;
}

.bg-gold {
  background-color: #d4af37;
}

/* Swiper pagination styling */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: #d4af37 !important;
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Custom navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #d4af37;
  background: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  transform: scale(1.1);
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Testimonial card styling */
.testimonial-card {
  background: linear-gradient(145deg, #111111 0%, #1a1a1a 100%);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 0;
  padding: 40px 35px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: "Playfair Display", serif;
  font-size: 150px;
  line-height: 1;
  color: rgba(212, 175, 55, 0.05);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

.testimonial-card:hover .gold-underline {
  width: 80px;
}

/* Star rating */
.stars {
  color: #d4af37;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

/* Gold underline animation */
.gold-underline {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37 0%, rgba(212, 175, 55, 0.1) 100%);
  margin: 20px 0 15px;
  transition: width 0.4s ease;
}

/* Client designation */
.client-designation {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #d4af37;
  opacity: 0.8;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Quote icon */
.quote-icon {
  color: #d4af37;
  font-size: 3rem;
  line-height: 1;
  opacity: 0.2;
  margin-bottom: 10px;
}

/* Animation delays */
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}

/* Fade up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

/* External nav buttons (outside swiper container) must be static */
.service-prev,
.service-next,
.elite-prev,
.elite-next {
  position: static !important;
  margin-top: 0 !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 50% !important;
  color: #d4af37 !important;
  background: rgba(0, 0, 0, 0.5) !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  flex-shrink: 0;
}

.service-prev:hover,
.service-next:hover,
.elite-prev:hover,
.elite-next:hover {
  background: rgba(212, 175, 55, 0.15) !important;
  border-color: #d4af37 !important;
}

.service-prev::after,
.service-next::after,
.elite-prev::after,
.elite-next::after {
  font-size: 14px !important;
  font-weight: 700 !important;
}

.why-choose-section .feature-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

/* about section */
.est-badge {
  display: inline-block;
  background-color: #d4af371a;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid #c9a84c44;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── Decorative vertical line ── */
.v-rule {
  width: 1px;
  background: linear-gradient(to bottom, transparent, #c9a84c66, transparent);
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
}

/* ── Stat card ── */
.stat-card {
  background: #c9a84c;
  position: absolute;
  bottom: -2rem;
  left: -1.5rem;
  padding: 1.4rem 2rem;
  z-index: 10;
}
.stat-card .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.stat-card .label {
  font-family: "Jost", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 4px;
}

/* ── Image frame ── */
.img-frame {
  position: relative;
}

.img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85);
  transition: filter 0.5s;
}
.img-frame:hover img {
  filter: brightness(0.95) saturate(0.95);
}

/* ── Divider dots ── */
.dot-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
}
.dot-rule span {
  width: 4px;
  height: 4px;
  background: #c9a84c;
  border-radius: 50%;
  display: inline-block;
}
.dot-rule hr {
  flex: 1;
  border: none;
  border-top: 1px solid #c9a84c33;
}

/* ── Parallax grain overlay ── */
.grain::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
}

.values-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      #0e0e0e 0%,
      rgba(14, 14, 14, 0.55) 30%,
      rgba(14, 14, 14, 0.55) 70%,
      #0e0e0e 100%
    ),
    linear-gradient(
      to right,
      #0e0e0e 0%,
      transparent 18%,
      transparent 82%,
      #0e0e0e 100%
    ),
    url("./assets/image/lambo.png") center/cover no-repeat;
  filter: brightness(0.4) saturate(0.5);
  z-index: 0;
}

/* ── Gold underline on heading ── */
.heading-rule {
  width: 52px;
  height: 2px;
  background: #c9a84c;
  margin: 12px auto 0;
}

/* ── Value card ── */
.val-card {
  background: rgba(14, 14, 14, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 3rem 3.8rem;
  position: relative;
  transition:
    border-color 0.35s,
    transform 0.35s;
  overflow: hidden;
  text-align: center;
}
.val-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 55%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
.val-card:hover::after {
  opacity: 1;
}
.val-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-5px);
}

/* Vertical divider between cards */
.card-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    to bottom,
    transparent 5%,
    rgba(201, 168, 76, 0.4) 50%,
    transparent 95%
  );
  flex-shrink: 0;
}

/* ── Animated gold ring icon ── */
.ring-wrap {
  width: 48px;
  height: 48px;
  position: relative;
  margin: 0 auto 1.8rem;
}
.ring-wrap svg {
  width: 48px;
  height: 48px;
}
.pulse-ring {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  animation: pulse-ring 2.6s ease-out infinite;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.82);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* bottom accent bar */
.accent-bar {
  width: 32px;
  height: 1px;
  background: #c9a84c;
  opacity: 0.5;
  margin: 2rem auto 0;
}

/* ── Image frame with corner accents ── */
.img-frame {
  position: relative;
  overflow: hidden;
}
.img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.92) saturate(0.85);
  transition:
    filter 0.6s,
    transform 0.6s;
}
.img-frame:hover img {
  filter: brightness(1) saturate(0.95);
  transform: scale(1.03);
}

/* Corner bracket decorations */
.corner-tl,
.corner-br {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 2;
}
.corner-tl {
  top: 10px;
  left: 10px;
  border-top: 1.5px solid #c9a84c;
  border-left: 1.5px solid #c9a84c;
}
.corner-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 1.5px solid #c9a84c;
  border-right: 1.5px solid #c9a84c;
}

/* ── Feature list items ── */
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s;
}
.feat-item:last-child {
  border-bottom: none;
}
.feat-item:hover {
  transform: translateX(4px);
}

/* Gold check circle */
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

/* ── Heading underline rule ── */
.heading-rule {
  width: 48px;
  height: 2px;
  background: #c9a84c;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Section background */
.section-bg {
  background:
    radial-gradient(
      ellipse at 10% 50%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 55%
    ),
    #161616;
}

/* ── Feature card ── */
.feat-card {
  padding: 2rem 1.6rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s,
    transform 0.35s,
    background 0.35s;
}
.feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.feat-card:hover::before {
  opacity: 1;
}
.feat-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.035);
}

/* Bottom accent bar on hover */
.feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a84c;
  transition: width 0.4s ease;
}
.feat-card:hover::after {
  width: 100%;
}

/* ── Icon wrapper ── */
.icon-wrap {
  width: 46px;
  height: 46px;
  position: relative;
  margin-bottom: 1.4rem;
}
.icon-wrap svg {
  width: 46px;
  height: 46px;
}

/* Pulse ring for icons */
.pulse-ring {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 50%;
  animation: pulse-ring 2.8s ease-out infinite;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ── Section divider ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gold-divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.gold-divider span {
  width: 5px;
  height: 5px;
  background: #c9a84c;
  border-radius: 50%;
  display: inline-block;
}

/* ── Commitment section ── */
.commitment-bg {
  position: relative;
}

/* Car image with mask */
.car-img-wrap {
  position: relative;
}
.car-img-wrap img {
  position: absolute;
  right: 0;
  transform: translate(10px, 10px);
  object-fit: contain;
  object-position: right bottom;
  filter: brightness(0.9) saturate(0.7);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 30%,
    transparent 100%
  );
}

/* ── Quote styling ── */
.quote-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: #d4d4d4;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c9a84c;
  color: #0e0e0e;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1px solid #c9a84c;
  transition:
    background 0.3s,
    color 0.3s;
}
.btn-gold:hover {
  background: transparent;
  color: #c9a84c;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #c9a84c;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1px solid #c9a84c;
  transition:
    background 0.3s,
    color 0.3s;
}
.btn-ghost:hover {
  background: #c9a84c;
  color: #0e0e0e;
}

/* fleet page */
/* ── Car card ── */
.car-card {
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s,
    transform 0.35s;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-5px);
}

/* Image container */
.car-img {
  width: 100%;
  height: 175px;
  overflow: hidden;
  position: relative;
  background: #141414;
}
.car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) saturate(0.75);
  transition:
    transform 0.55s ease,
    filter 0.4s;
}
.car-card:hover .car-img img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(0.85);
}

/* Badge */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d4af37;
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 14px;
  z-index: 2;
}

/* Card body */
.card-body {
  padding: 1.1rem 1.2rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Specs row */
.spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Jost", sans-serif;
  font-size: 0.878rem;
  color: #888;
}
.spec-item svg {
  flex-shrink: 0;
}

/* View details button */
.btn-view {
    font-family: "Jost", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background-color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 12px 18px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    white-space: nowrap;
    color: #fff;
}
.btn-view:hover {
  background: #c9a84c;
  color: #0e0e0e;
  border-color: #c9a84c;
}

/* Circle icon button */
.btn-circle {
width: 46px;
    height: 47px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}
.btn-circle:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: #c9a84c;
}

/* ── CTA card ── */
.cta-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.8rem;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
}

/* Nav arrows */
.nav-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.nav-arrow:hover {
  background: #c9a84c;
  border-color: #c9a84c;
}
.nav-arrow:hover svg path {
  stroke: #0e0e0e;
}

/* Divider under heading */
.heading-rule {
  width: 44px;
  height: 1.5px;
  background: #c9a84c;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .mySwiper .fit-container {
    display: flex;
    width: calc(100% - 25%);
    flex-direction: column;
  }
  .testimonial-card {
    padding: 30px 15px;
  }
  .val-card {
    padding: 3rem 0.8rem;
  }
} /* Make sure this brace exists */
