/* =====================================================
   HERO SWIPER SLIDER
   ===================================================== */
.hero-swiper {
  margin-top: 92px;
  width: 100%;
  height: calc(100vh - 92px);
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden; /* zoom image bahar na jaye */
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}

.slide-image.desktop { display: block; }
.slide-image.mobile  { display: none; }

/* Dark gradient overlay at bottom */
.slide-content::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.slide-text {
  max-width: 750px;
}

/* =====================================================
   SLIDE CONTENT — initial hidden state for GSAP
   ===================================================== */

.slide-title,
.slide-subtitle,
.slide-btn {
  opacity: 0;
  will-change: transform, opacity;
}

.slide-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
  font-family: "Nocturnal";
  text-transform: uppercase;
  letter-spacing: 3px;
}

.slide-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.slide-btn {
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 12px 35px;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
  background: transparent;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.slide-btn:hover {
  background: #fff;
  color: #000;
  transform: translateX(5px);
}

/* =====================================================
   SWIPER PAGINATION — right side vertical
   ===================================================== */

.swiper-pagination {
  right: 50px !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%);
  width: auto !important;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(236, 234, 234, 0.5);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

/* =====================================================
   ARROW BUTTON — below pagination, next slide
   ===================================================== */

.slider-arrow-btn {
  position: absolute;
  right: 43px;
  top: 50%;
  transform: translateY(calc(-50% + 115px));
  z-index: 10;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  animation: arrowBounce 2.2s ease-in-out infinite;
}

.slider-arrow-btn::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg) translateY(-2px);
  transition: border-color 0.3s ease;
}

.slider-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  animation: none;
  transform: translateY(calc(-50% + 115px)) scale(1.1);
}

.slider-arrow-btn:hover::before {
  border-color: #fff;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(calc(-50% + 115px)); }
  50%       { transform: translateY(calc(-50% + 125px)); }
}


/* =====================================================
   MEDIA QUERIES — HERO SLIDER
   ===================================================== */

@media (max-width: 768px) {
  .hero-swiper {
    margin-top: 75px;
    height: calc(100vh - 75px);
  }

  .slide-image.desktop { display: none; }
  .slide-image.mobile  { display: block; }

  .slide-content { padding-bottom: 100px; }

  .container {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .slide-text { max-width: 100%; }

  .slide-title {
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }

  .slide-subtitle {
    font-size: 11px;
    letter-spacing: 0.6px;
  }

  .slide-btn {
    padding: 10px 28px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .swiper-pagination {
    right: 20px !important;
    gap: 10px;
  }

  .swiper-pagination-bullet { width: 8px; height: 8px; }

  .swiper-pagination-bullet-active {
    height: 35px;
    border-radius: 4px;
    transform: none;
  }

  .slider-arrow-btn {
    right: 13px;
    width: 34px;
    height: 34px;
    animation: arrowBounceMobile 2.2s ease-in-out infinite;
  }

  .slider-arrow-btn:hover { animation: none; }

  @keyframes arrowBounceMobile {
    0%, 100% { transform: translateY(calc(-50% + 100px)); }
    50%       { transform: translateY(calc(-50% + 110px)); }
  }
}

@media (max-width: 480px) {
  .slide-title { font-size: 24px; letter-spacing: 1.5px; }
  .slide-subtitle { font-size: 10px; }
}


/* =====================================================
   STATS / COUNTER SECTION
   ===================================================== */

.stats-section {
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.stats-section .stats-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

/* Cards — initial hidden state, GSAP reveals */
.stats-section .stat-card {
  position: relative;
  padding: 40px 28px;
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}

/* polygon border */
.stats-section .stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b8b8b8;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  z-index: 0;
}

/* inner white card */
.stats-section .stat-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  z-index: 1;
}

/* content above pseudo layers */
.stats-section .stat-card > * {
  position: relative;
  z-index: 2;
}

/* Icon */
.stats-section .stat-icon img {
  width: 50px;
  margin-bottom: 22px;
  filter: brightness(0) saturate(100%)
          invert(15%) sepia(35%)
          saturate(1500%)
          hue-rotate(320deg);
}

/* Number */
.stats-section .stat-number {
  font-size: 45px;
  font-weight: 600;
  color: #020000;
  margin-bottom: 8px;
  font-family: "Nocturnal-SemiBold";
  line-height: 1;
}

.stats-section .stat-number .counter {
  display: inline-block;
  background: linear-gradient(135deg, #020000 0%, #6b0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Label */
.stats-section .stat-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  font-family: "GeneralSans-Regular";
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .stats-section .stats-container { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .stats-section { padding: 50px 0; }

  .stats-section .stats-container { padding: 0 10px; gap: 16px; }

  .stats-section .stat-card { padding: 28px 18px; }

  .stats-section .stat-icon img { width: 30px; margin-bottom: 18px; }

  .stats-section .stat-number { font-size: 30px; }

  .stats-section .stat-text { font-size: 12px; }
}

@media (max-width: 600px) {
  .stats-section .stats-container { grid-template-columns: repeat(2, 1fr); }
}


/* =====================================================
   STORY SECTION
   ===================================================== */

.story-section {
  background: url("../images/building-dream-backgrund.webp") center/cover no-repeat fixed;
  padding: 120px 0;
  position: relative;
  font-family: "Nocturnal-Light";
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.9) 0%,
    rgba(255,255,255,0.3) 40%,
    rgba(255,255,255,0) 70%
  );
}

.story-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

/* Card — initial hidden state for GSAP */
.story-content {
  background: #8a3f4f;
  color: #fff;
  padding: 50px;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  font-family: "Nocturnal-ExtraLight";
  opacity: 0;
  transform: translateX(80px);
  will-change: transform, opacity;
}

.story-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0;
}

.story-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0;
  font-family: "GeneralSans-Medium";
}

/* Button — same padding style as slide-btn, arrow gap fix */
.story-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #111;
  padding: 12px 35px;
  border-radius: 40px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  font-family: "GeneralSans-Medium";
  transition: gap 0.3s ease, transform 0.3s ease;
  opacity: 0;
}

.story-btn:hover {
  gap: 20px;
  transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .story-section {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .story-container { justify-content: center; }

  .story-content {
    max-width: 100%;
    padding: 35px;
  }
}



/* =====================================================
   SIGNATURE DEVELOPMENTS SECTION CSS
   ===================================================== */
/* =====================================================
   SIGNATURE DEVELOPMENTS SECTION
   ===================================================== */

.signature-section {
  padding: 80px 0 60px;
  background: #fff;
  overflow: visible;
}

/* =====================================================
   TOP ROW — heading + dropdown
   ===================================================== */

.signature-header {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

.signature-heading {
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  color: #111;
  font-family: "Nocturnal-Light";
  opacity: 0;
}

/* =====================================================
   FILTER WRAPPER — relative for dropdown positioning
   ===================================================== */

.sig-filter-wrap {
  position: relative;
}

/* Filter trigger button */
.signature-filter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #111;
  border-radius: 50px;
  padding: 12px 60px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  background: #fff;
  cursor: pointer;
  font-family: "GeneralSans-Medium";
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  white-space: nowrap;
  user-select: none;
}

.signature-filter .filter-arrow {
  font-size: 13px;
  transition: transform 0.35s ease;
}

.signature-filter.open {
  background: #111;
  color: #fff;
  border-color: #111;
  border-radius: 22px 22px 0 0;
}

.signature-filter.open .filter-arrow {
  transform: rotate(180deg);
}

/* =====================================================
   DROPDOWN MENU
   ===================================================== */

.sig-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100%;
  background: #111;
  border-radius: 0 0 18px 18px;
  list-style: none;
  padding: 6px 0 10px;
  margin: 0;
  overflow: hidden;

  /* Hidden state */
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  z-index: 200;
}

.sig-dropdown.open {
  max-height: 260px;
  opacity: 1;
  margin-top:10px;
  pointer-events: all;
}

.sig-drop-item {
  padding: 11px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-family: "GeneralSans-Medium";
  transition: color 0.2s ease, padding-left 0.2s ease;
  white-space: nowrap;
}

.sig-drop-item:hover {
  color: #fff;
  padding-left: 34px;
}

.sig-drop-item.active {
  color: #fff;
}

/* =====================================================
   IMAGES ROW
   ===================================================== */

.signature-images {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.sig-img-wrap {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  border-radius: 0;
}

.sig-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  will-change: transform;
}

.sig-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.08) 35%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

.sig-img-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
  opacity: 0;
}

.sig-img-label .proj-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  font-family: "GeneralSans-Medium";
}

.sig-img-label .proj-location {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-top: 3px;
  font-family: "GeneralSans-Regular";
}

/* =====================================================
   VIEW ALL BUTTON
   ===================================================== */

.signature-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #111;
  color: #fff;
  padding: 16px 52px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "GeneralSans-Medium", "sans-serif";
  transition: background 0.3s ease, transform 0.3s ease;
  opacity: 0;
  cursor: pointer;
  border: none;
}

.view-all-btn .btn-icon {
  font-size: 13px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.view-all-btn:hover {
  background: #333;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
  .sig-img-wrap img { height: 350px; }
}

@media (max-width: 768px) {
  .signature-section { padding: 60px 0 50px; }

  .signature-header {
    padding: 0 20px;
    margin-bottom: 24px;
  }

  .signature-heading {
    font-size: 15px;
    letter-spacing: 2px;
  }

  .signature-filter {
    padding: 10px 20px;
    font-size: 11px;
    gap: 8px;
    letter-spacing: 1.5px;
  }

  .sig-drop-item {
    padding: 10px 20px;
    font-size: 11px;
  }

  .sig-drop-item:hover { padding-left: 26px; }

  .signature-images {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sig-img-wrap img { height: 260px; }

  .signature-footer { padding: 0 20px; }

  .view-all-btn {
    padding: 14px 36px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .signature-heading { font-size: 13px; letter-spacing: 1.5px; }

  .sig-img-wrap img { height: 210px; }

  .view-all-btn { padding: 13px 28px; font-size: 11px; width: 100%; justify-content: center; }
}


/* =====================================================
   THE SARVOTTAM DIFFERENCE SECTION
   ===================================================== */

.difference-section {
  background: #c8d8ea;
  overflow: hidden;
  padding: 0;
}

.difference-inner {
  display: flex;
  align-items: stretch;
  min-height: 560px;
}

/* =====================================================
   LEFT — heading + paragraph
   ===================================================== */

.diff-left {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 135px;
  padding-right: 100px;
  opacity: 0;
  transform: translateY(30px);
}

.diff-heading {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
 font-family: "Nocturnal-Light";
  margin-bottom: 30px;
  line-height: 1.3;
}

.diff-para {
  font-size: 14.5px;
  line-height: 1.85;
  color: #333;
  font-family: "GeneralSans-Medium";
}

/* =====================================================
   RIGHT — 4 columns
   ===================================================== */

.diff-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: stretch;
}

/* ── single column ── */
.diff-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* left border only — matches reference */
  border-left: 2px solid rgba(114, 5, 5, 0.6);
  overflow: hidden;
  /* GSAP start: curtain from bottom */
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}

/* image block — half height */
.diff-img {
  flex: 1 1 50%;
  overflow: hidden;
  position: relative;
}

.diff-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  will-change: transform;
}

/* base shadow overlay */
.diff-img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* 1st image — LEFT + BOTTOM shadow */
.diff-col:nth-child(1) .diff-img::after {
  background:
   linear-gradient(to right, rgb(200 216 234), transparent 50%),
    linear-gradient(to top, rgba(135, 181, 207, 0.35), transparent 50%);
}

/* 2nd image — TOP shadow */
.diff-col:nth-child(2) .diff-img::after {
  background:
    linear-gradient(to bottom, rgb(200 216 234), transparent 50%);
}

/* 3rd image — BOTTOM shadow */
.diff-col:nth-child(3) .diff-img::after {
  background:
    linear-gradient(to top, rgb(200 216 234), transparent 50%);
}

/* 4th image — TOP shadow */
.diff-col:nth-child(4) .diff-img::after {
  background:
    linear-gradient(to bottom, rgb(200 216 234), transparent 50%);
}

/* label block — other half */
.diff-label {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.diff-label span {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #1a2035;
   font-family: "Nocturnal-Light";
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  opacity: 0;
  will-change: opacity, transform;
}


/*
  COLUMN PATTERN (from reference screenshot):
  Col 1 → image TOP,    label BOTTOM  (default flex-col)
  Col 2 → label TOP,    image BOTTOM  (reverse)
  Col 3 → image TOP,    label BOTTOM  (default)
  Col 4 → label TOP,    image BOTTOM  (reverse)
*/
.diff-col:nth-child(2),
.diff-col:nth-child(4) {
  flex-direction: column-reverse;
}
.diff-col:first-child {
  border-left: none;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {
  .diff-left       { padding: 60px 40px 60px 50px; }
  .diff-heading    { font-size: 20px; }
  .diff-para       { font-size: 13.5px; }
  .diff-label span { font-size: 21px; letter-spacing: 5px; }
}

@media (max-width: 900px) {
  .difference-inner {
    flex-direction: column;
    min-height: auto;
  }

  .diff-left {
    flex: none;
    max-width: 100%;
    padding: 55px 36px;
    text-align: center;
  }

  .diff-right {
    flex: none;
    max-width: 100%;
    height: 420px;
  }

  .diff-label span { font-size: 17px; letter-spacing: 4px; }
}

@media (max-width: 600px) {
  .diff-left    { padding: 45px 22px; }
  .diff-heading { font-size: 17px; letter-spacing: 1.5px; }
  .diff-para    { font-size: 13px; }

  .diff-right   { height: 320px; }

  .diff-label span { font-size: 13px; letter-spacing: 3px; }
}

@media (max-width: 420px) {
  .diff-right   { height: 260px; }
  .diff-label span { font-size: 11px; letter-spacing: 2.5px; }
}


/* ===== Clients Section ===== */

.clients-section {
  background: #e5e1e2;
  padding-top:70px;
  padding-bottom:40px;
}

.clients-section-sec {
  background: #e5e1e2;
  padding-top:50px;
  padding-bottom:50px;
}

/* container */

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* title */

.clients-title {
  font-size: 24px;
  letter-spacing: 2px;
   font-family: "Nocturnal-Light";
   color:#111;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
}

.clients-title::after {
  content: "";
  width: 120px;
  height: 2px;
  background: #000;
  display: block;
  margin: 12px auto 0;
}

/* logos grid */

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.client-logo {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
    will-change: transform, opacity, filter;
}

/* logos */

.clients-logos img {
  max-height: 55px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.35s ease;
  cursor: pointer;
}

.clients-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .clients-logos {
    gap: 35px;
  }

  .clients-logos img {
    max-height: 40px;
  }
}


.spotlight-section {
  background: #8d4752;
  padding: 110px 0;
  color: #fff;
}

.spotlight-container {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}

.spotlight-header {
  margin-bottom: 55px;
}

.spotlight-sub {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.85;
}

.spotlight-title {
  font-size: 30px;
  font-family: "Nocturnal-Light";
  margin-top: 10px;
}

/* slider layout */

.spotlight-slider-wrap {
  display: flex;
  align-items: center;
  gap: 35px;
}

.spotlightSwiper {
  width: 100%;
}

/* card */

.spotlight-card {
  background: #fff;
  color: #000;
  border: 6px solid #eee;
  overflow: hidden;
  transition: transform .4s ease;
}

.spotlight-img {
  height: 230px;
  overflow: hidden;
}

.spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.spotlight-card:hover img {
  transform: scale(1.08);
}

/* bottom info */

.spotlight-info {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spotlight-info h3 {
  font-size: 15px;
  margin-bottom: 3px;
}

.spotlight-info p {
  font-size: 12px;
  opacity: 0.7;
}

/* button */

.spotlight-btn {
  border: 1px solid #000;
  background: transparent;
  padding: 6px 16px;
  font-size: 12px;
  cursor: pointer;
  transition: all .3s ease;
}

.spotlight-btn:hover {
  background: #000;
  color: #fff;
}

/* arrows */

.spotlight-arrow {
  font-size: 38px;
  cursor: pointer;
  user-select: none;
  color: #000;
  transition: transform .3s ease;
}

.spotlight-arrow:hover {
  transform: scale(1.2);
}

/* responsive */

@media (max-width: 992px) {
  .spotlight-slider-wrap {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .spotlight-arrow {
    display: none;
  }
}
