/* ==========================================================
   SWAMI CONSTRUCTIONS & PMC — style.css
   Full-screen Premium Luxury Real Estate Design
   ========================================================== */

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Fustat', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-accent)
}

p,
li,
span,
small,
label,
button,
textarea,
input,
select {
  color: var(--text)
}

a {
  text-decoration: none;
  color: inherit
}

ul,
ol {
  list-style: none
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font: inherit
}

input,
select,
textarea {
  font-family: inherit
}

/* ── CSS Variables ── */
:root {
  --gold: #F58220;
  --gold-h: #f79a45;
  --dark: #223A7A;
  --off: #f8fafc;
  --border: #e2e8f0;
  --text-primary: #223A7A;
  --text-accent: #F58220;
  --text: #223A7A;
  --muted: #223A7A;
  --hdr-h: 64px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: .3s;
}

/* ── Layout helpers ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal.in {
  opacity: 1 !important;
  transform: translateY(0) !important
}

/* ── Site Header, Mobile Nav, Logo ──────────────────────────────
   These styles have moved to components/header.css
   ──────────────────────────────────────────────────────────── */

/* ==========================================================
   FULL-SCREEN PREMIUM HERO SECTION
   ========================================================== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  max-width: 100%;
  background-color: #0c101d;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeIn 0.8s ease-out both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Top Logo Bar (superseded by persistent sticky site-header) */
.hero-logo-bar {
  display: none;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ── Gradual Spacing Character Animation ── */
@keyframes gradualChar {
  from {
    opacity: 0;
    transform: translateX(-14px);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

/* Content Positioning: upper sky region */
.hero-content {
  position: absolute;
  top: 14vh;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  text-align: center;
  z-index: 5;
}

/* Soft black gradient overlay — top of hero only */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* removed the top white/gradient band so the video reaches the top */
  display: none;
}

.hero-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 4px;
}

/* Hide the large welcome heading as requested */
.hero-heading {
  display: none !important
}

/* Each line is a flex row of characters */
.heading-line-1,
.heading-line-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0;
}

.heading-line-1 {
  font-size: clamp(24px, 3.8vw, 52px);
  font-weight: 500;
  color: var(--text-accent);
  letter-spacing: 3.5px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.heading-line-2 {
  font-size: clamp(22px, 3.2vw, 44px);
  font-weight: 500;
  color: var(--text-accent);
  letter-spacing: 3.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Individual animated character */
.gs-char {
  display: inline-block;
  opacity: 0;
  animation: gradualChar 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  /* delay is set via inline style in JS */
}

/* Non-breaking space between words */
.gs-space {
  display: inline-block;
  width: 0.28em;
}

/* Bottom Skyline Sketch Wrapper */
.hero-sketch-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  animation: sketchFadeIn 1s 0.1s ease-out both;
}

@keyframes sketchFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sketch-img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* ==========================================================
   ABOUT SECTION
   ========================================================== */
.about-sec {
  background: #fff;
  padding-bottom: 90px
}

/* Panorama strip */
.about-panorama {
  width: 100%;
  height: 110px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.panorama-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.about-grid {
  padding-top: 64px
}

.about-text {
  max-width: 920px
}

.gold-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(19px, 2.4vw, 50px);
  font-weight: 600;
  color: var(--text-accent);
  letter-spacing: .04em;
  line-height: 1.22;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.home-hero-accent {
  color: #F58220 !important;
}

.about-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 18px;
}

.about-text p:last-of-type {
  margin-bottom: 0
}

.about-text strong {
  font-weight: 600
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 11px 22px;
  border: 1px solid var(--dark);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--dur), color var(--dur), border-color var(--dur), transform var(--dur);
}

.learn-more-btn:hover {
  background: var(--gold);
  color: #ffffff !important;
  border-color: var(--gold);
}

.learn-more-btn svg {
  transition: stroke var(--dur), transform var(--dur)
}

.learn-more-btn:hover svg {
  stroke: #ffffff
}

/* ==========================================================
   STATS SECTION
   ========================================================== */
.stats-sec {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.stat-num {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.count {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
}

.stat-unit {
  font-size: clamp(26px, 3.5vw, 44px);
  padding-bottom: 3px;
  font-weight: 700;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-primary);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ==========================================================
   GROUP / SLIDER SECTION
   ========================================================== */
.group-sec {
  background: #000000;
  color: #ffffff;
  padding: 36px 0 0;
  overflow: hidden;
}

.group-hd {
  text-align: center;
  padding: 0 40px 44px;
}

.group-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  color: #ffffff !important;
  letter-spacing: .14em;
  margin-bottom: 10px;
}

.group-sub {
  font-size: 11px;
  font-weight: 400;
  color: #ffffff !important;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* Slider shell */
.slider-shell {
  position: relative;
  overflow: hidden
}

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 22px;
  padding-bottom: 18px;
}

.slider-track::-webkit-scrollbar {
  display: none
}

/* Cards */
.slide-card {
  flex: 0 0 24%;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.slide-card::before {
  content: '';
  display: block;
  padding-top: 133.333%;
  /* 3:4 */
}

.slide-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.slide-card:hover img {
  transform: scale(1.07)
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .08) 52%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px 16px 20px;
  transition: background .3s;
}

.slide-card:hover .slide-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .22) 58%, transparent 100%);
}

.slide-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  transition: background .3s, color .3s;
}

.slide-card:hover .slide-plus {
  background: var(--gold);
  color: #fff
}

.slide-overlay h3 {
  font-size: 11.5px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .14em;
  line-height: 1.4;
}

.slide-overlay--right {
  align-items: flex-start;
  padding-right: 18px;
}

.slide-plus--right {
  margin-bottom: auto;
  margin-top: auto;
  align-self: center
}

.slide-overlay--right h3 {
  margin-top: auto
}

.slide-nav-arrow {
  position: absolute;
  right: 14px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .12);
  color: var(--dark);
  background: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), border-color var(--dur);
}

.slide-nav-arrow:hover {
  background: rgba(255, 255, 255, .98);
  border-color: rgba(0, 0, 0, .16)
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(255, 255, 255, .92);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--dur), border-color var(--dur);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, .98);
  border-color: rgba(0, 0, 0, .16)
}

.arrow-prev {
  left: 14px
}

.arrow-next {
  right: 14px
}

/* ==========================================================
   BLOGS SECTION
   ========================================================== */
.blogs-sec {
  background: var(--off);
  padding: 80px 0 96px;
}

.blogs-hd {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
}

.blogs-ttl {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  color: var(--text-accent);
  letter-spacing: .16em;
  margin-bottom: 20px;
}

.blogs-desc {
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.82;
  text-align: center;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.blog-item {
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.blog-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-img-wrap::before {
  content: '';
  display: block;
  padding-top: 133.33%
}

.blog-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.blog-item:hover .blog-img-wrap img {
  transform: scale(1.07)
}

.blog-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .1) 52%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  transition: background .3s;
}

.blog-item:hover .blog-info {
  background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .25) 60%, transparent 100%);
}

.blog-info h3 {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.6;
  margin-bottom: 7px;
}

.blog-info time {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  font-weight: 300;
}

/* ==========================================================
   ENQUIRE SECTION
   ========================================================== */
.enquire-sec {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.enquire-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

.enq-eyebrow {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: 10px;
  font-weight: 500;
}

.enq-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: .07em;
  margin-bottom: 16px;
}

.enq-sub {
  font-size: 14px;
  color: #777;
  line-height: 1.75
}

.enq-form {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.enq-field {
  display: flex;
  flex-direction: column
}

.enq-field--full {
  width: 100%
}

.enq-form input,
.enq-form textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
  color: #333;
  outline: none;
  border-radius: 0;
  transition: border-color var(--dur), background var(--dur);
}

.enq-form input:focus,
.enq-form textarea:focus {
  border-color: var(--gold);
  background: #fff
}

.enq-select-wrap {
  position: relative
}

.enq-select-wrap select {
  width: 100%;
  padding: 11px 36px 11px 15px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
  color: #555;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--dur), background var(--dur);
  cursor: pointer;
}

.enq-select-wrap select:focus {
  border-color: var(--gold);
  background: #fff
}

.select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.enq-form textarea {
  resize: vertical;
  min-height: 90px
}

.enq-footer-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.enq-submit {
  padding: 13px 34px;
  background: #223A7A;
  color: #ffffff !important;
  border: 1px solid #223A7A;
  font-size: 13px;
  letter-spacing: .07em;
  font-weight: 500;
  transition: background var(--dur), border-color var(--dur), transform var(--dur), box-shadow var(--dur);
  cursor: pointer;
}

.enq-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff !important;
}

.enq-success {
  display: none;
  font-size: 14px;
  color: #2e7d32;
  font-weight: 500;
}

.enq-success.show {
  display: inline
}

/* ==========================================================
   LUXURY GALLERY SHOWCASE SECTION
   ========================================================== */
.gallery-sec {
  padding: 96px 0;
  background-color: #fafafa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.gallery-hd {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold, #987236);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.gallery-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}

.gallery-divider {
  width: 60px;
  height: 2px;
  background: var(--gold, #987236);
  margin: 0 auto 24px auto;
  opacity: 0.85;
}

/* View Mode Switcher */
.gallery-mode-toggle {
  display: inline-flex;
  gap: 6px;
  background: #ffffff;
  padding: 4px;
  border: 1px solid #e2e2de;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 500;
  color: #666;
  background: transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.mode-btn:hover {
  color: var(--gold, #987236);
}

.mode-btn.active {
  background: var(--dark, #1a1a1a);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ── GRID VIEW (Matching Reference Image: 2 rows of 4 cards) ── */
.gallery-grid-view {
  display: block;
}

.gallery-grid-view[hidden] {
  display: none !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  outline: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.g-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.g-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.08);
}

.g-badge {
  display: none !important;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #ffffff;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.g-overlay h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  line-height: 1.2;
}

.g-overlay p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.g-view-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-h, #c4a26c);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-card:hover .g-view-btn,
.gallery-card:focus-visible .g-view-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ── 3D STACKED / FAN CAROUSEL VIEW ── */
.gallery-stacked-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.gallery-stacked-view[hidden] {
  display: none !important;
}

.fan-carousel-stage {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  margin: 10px auto 0;
  overflow: visible;
  perspective: 1200px;
}

.fan-drag-surface {
  position: absolute;
  inset: 0;
  z-index: 35;
  cursor: grab;
}

.fan-drag-surface:active {
  cursor: grabbing;
}

.fan-cards-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.fan-card {
  position: absolute;
  left: calc(50% - 160px);
  top: calc(50% - 240px);
  width: 320px;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: #14171f;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: auto;
  cursor: pointer;
  will-change: transform, opacity;
  transform-origin: center bottom;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.fan-card:hover {
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(245, 130, 32, 0.5);
}

.fan-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), filter 0.65s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.fan-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.fan-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 14, 20, 0.95) 0%, rgba(12, 14, 20, 0.5) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  text-align: left;
  z-index: 2;
}

.gallery-mode-toggle {
  display: none !important;
}

.fan-card-badge {
  display: none !important;
}

.fan-card-title {
  font-family: 'Outfit', 'Cormorant Garamond', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #f58220;
  margin-bottom: 6px;
  line-height: 1.25;
}

.fan-card-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.fan-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  z-index: 45;
  position: relative;
}

.fan-arrow-btn {
  display: none !important;
}

.fan-arrow-btn:hover {
  border-color: rgba(245, 130, 32, 0.6);
  color: #f58220;
  transform: scale(1.08);
  background: #fff;
  box-shadow: 0 6px 24px rgba(245, 130, 32, 0.25);
}

.fan-arrow-btn:active {
  transform: scale(0.92);
}

.fan-dots-track {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fan-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  padding: 0;
}

.fan-dot.active {
  width: 24px;
  border-radius: 12px;
  background: #f58220;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(245, 130, 32, 0.5);
}

.stacked-hint {
  font-size: 12.5px;
  color: #888;
  letter-spacing: 0.05em;
  margin-top: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .fan-carousel-stage {
    height: 400px;
  }

  .fan-card {
    width: 220px;
    height: 320px;
  }

  .fan-card-title {
    font-size: 18px;
  }

  .fan-card-desc {
    font-size: 11.5px;
  }
}

@media (max-width: 480px) {
  .fan-carousel-stage {
    height: 340px;
  }

  .fan-card {
    width: 190px;
    height: 270px;
  }

  .fan-card-title {
    font-size: 16px;
  }

  .fan-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ── LIGHTBOX MODAL ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.lb-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}

.lb-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 10;
  font-size: 28px;
  line-height: 1;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lb-close:hover {
  color: #1a1a1a;
}

.lb-img-wrap {
  width: 100%;
  height: 420px;
  background: #000;
  overflow: hidden;
}

.lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lb-info {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.lb-badge {
  background: rgba(152, 114, 54, 0.12);
  color: var(--gold, #987236);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.lb-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.25;
}

.lb-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.lb-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.lb-nav-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lb-nav-btn:hover {
  border-color: var(--gold, #987236);
  color: var(--gold, #987236);
}

.lb-counter {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  margin-left: auto;
}

/* ==========================================================
   RESPONSIVE — TABLET & MOBILE (COMPREHENSIVE)
   ========================================================== */

/* ── 1024px — Tablet landscape ── */
@media (max-width: 1024px) {

  /* Layout */
  .container {
    padding: 0 28px;
  }

  .hero-logo-bar {
    padding: 20px 28px;
  }

  /* About */
  .about-sec {
    padding: 64px 0;
  }

  .about-grid {
    padding-top: 0;
  }

  /* Gallery grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-sec {
    padding: 72px 0;
  }

  /* Lightbox */
  .lb-content {
    grid-template-columns: 1fr;
  }

  .lb-img-wrap {
    height: 280px;
  }

  .lb-info {
    padding: 24px 20px;
  }

  /* Enquire */
  .enquire-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Slider */
  .slide-card {
    flex: 0 0 33.333%;
  }

  /* Blogs */
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blogs-sec {
    padding: 60px 0 72px;
  }

  /* Group / black section */
  .group-sec {
    padding: 52px 0 0;
  }

  .group-hd {
    padding: 0 28px 36px;
  }
}

/* ── 768px — Tablet portrait ── */
@media (max-width: 768px) {

  /* Global */
  .container {
    padding: 0 20px;
  }

  body {
    overflow-x: hidden;
  }

  /* Hero */
  .hero {
    height: 100svh;
    min-height: 580px;
  }

  .hero-logo-bar {
    padding: 16px 20px;
  }

  .hero-content {
    top: 18vh;
    padding: 0 16px;
  }

  .heading-line-1 {
    font-size: clamp(18px, 5.2vw, 28px);
    letter-spacing: 2px;
  }

  .heading-line-2 {
    font-size: clamp(16px, 4.6vw, 24px);
    letter-spacing: 2px;
  }

  .hero-sketch-wrap {
    height: 100%;
  }

  /* About section */
  .about-sec {
    padding: 52px 0;
  }

  .about-grid {
    display: block;
  }

  .about-text h2 {
    font-size: clamp(20px, 4.5vw, 28px);
    margin-bottom: 16px;
  }

  .about-text p {
    font-size: 15px;
  }

  .learn-more-btn {
    margin-top: 24px;
    padding: 10px 20px;
    font-size: 12px;
  }

  /* Group / black section */
  .group-sec {
    padding: 44px 0 0;
  }

  .group-hd {
    padding: 0 20px 28px;
  }

  .group-title {
    font-size: clamp(20px, 5.5vw, 32px);
    letter-spacing: 0.08em;
  }

  .group-sub {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  /* Slider cards */
  .slide-card {
    flex: 0 0 78%;
  }

  .slider-shell {
    overflow: hidden;
  }

  /* Gallery */
  .gallery-sec {
    padding: 56px 0;
  }

  .gallery-hd {
    margin-bottom: 32px;
  }

  .gallery-title {
    font-size: clamp(20px, 4.5vw, 28px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mode-btn {
    padding: 7px 14px;
    font-size: 11.5px;
  }

  .fan-carousel-stage {
    height: 380px;
  }

  .fan-card {
    width: 210px;
    height: 300px;
  }

  .fan-card-title {
    font-size: 17px;
  }

  /* Blogs */
  .blogs-sec {
    padding: 52px 0 64px;
  }

  .blogs-hd {
    margin-bottom: 32px;
  }

  .blogs-ttl {
    font-size: clamp(24px, 5vw, 36px);
  }

  .blogs-desc {
    font-size: 15px;
  }

  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Enquire */
  .enquire-sec {
    padding: 56px 0;
  }

  .enquire-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .enq-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .enq-heading {
    font-size: clamp(20px, 4vw, 28px);
  }

  .enq-submit {
    width: 100%;
    padding: 13px 20px;
  }

  /* Lightbox */
  .gallery-lightbox {
    padding: 16px;
  }

  .lb-content {
    grid-template-columns: 1fr;
  }

  .lb-img-wrap {
    height: 240px;
  }

  .lb-info {
    padding: 20px 16px;
  }

  .lb-title {
    font-size: 20px;
  }

  .lb-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }

  /* Export / capabilities */
  .export-heading {
    font-size: clamp(24px, 5vw, 36px);
  }

  .export-header {
    padding: 0 20px;
    text-align: center;
  }
}

/* ── 600px — Mobile large ── */
@media (max-width: 600px) {

  /* Hero */
  .hero-content {
    top: 16vh;
  }

  .heading-line-1 {
    font-size: clamp(16px, 5.6vw, 22px);
    letter-spacing: 1.5px;
  }

  .heading-line-2 {
    font-size: clamp(14px, 5vw, 20px);
    letter-spacing: 1.5px;
  }

  .hero-sketch-wrap {
    height: 46vh;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-sec {
    padding: 44px 0;
  }

  .gallery-title {
    font-size: clamp(18px, 5vw, 24px);
    letter-spacing: 0.04em;
  }

  .gallery-eyebrow {
    font-size: 13px;
  }

  /* Fan carousel */
  .fan-carousel-stage {
    height: 340px;
  }

  .fan-card {
    width: 190px;
    height: 265px;
  }

  .fan-card-title {
    font-size: 15px;
  }

  .fan-card-desc {
    font-size: 11px;
  }

  .fan-arrow-btn {
    width: 38px;
    height: 38px;
  }

  /* Slider */
  .slide-card {
    flex: 0 0 88%;
  }

  .group-sec {
    padding: 36px 0 0;
  }

  /* Blogs */
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blogs-sec {
    padding: 44px 0 56px;
  }

  /* Enquire */
  .enquire-sec {
    padding: 44px 0;
  }

  .enq-row {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-sec {
    padding: 40px 0;
  }
}

/* ── 480px — Mobile standard ── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-logo-bar {
    padding: 14px 16px;
  }

  .hero-content {
    top: 14vh;
    padding: 0 12px;
  }

  .heading-line-1 {
    font-size: clamp(15px, 5.8vw, 20px);
    letter-spacing: 1px;
  }

  .heading-line-2 {
    font-size: clamp(13px, 5.2vw, 18px);
    letter-spacing: 1px;
  }

  .hero-sketch-wrap {
    height: 100%;
  }

  /* Group / black section */
  .group-hd {
    padding: 0 16px 24px;
  }

  .group-title {
    font-size: clamp(18px, 5.5vw, 26px);
    letter-spacing: 0.06em;
  }

  .group-sub {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .slide-card {
    flex: 0 0 90%;
  }

  /* Gallery grid */
  .gallery-sec {
    padding: 36px 0;
  }

  .gallery-hd {
    margin-bottom: 24px;
  }

  .gallery-title {
    font-size: clamp(17px, 5vw, 22px);
  }

  .gallery-mode-toggle {
    padding: 3px;
  }

  .mode-btn {
    padding: 6px 12px;
    font-size: 11px;
    gap: 4px;
  }

  /* Fan carousel */
  .fan-carousel-stage {
    height: 300px;
  }

  .fan-card {
    width: 170px;
    height: 240px;
  }

  .fan-card-title {
    font-size: 14px;
  }

  .fan-card-badge {
    font-size: 9px;
    padding: 4px 10px;
  }

  .fan-card-overlay {
    padding: 16px;
  }

  .stacked-hint {
    font-size: 11px;
    text-align: center;
    padding: 0 12px;
  }

  /* Blogs */
  .blogs-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .blogs-ttl {
    font-size: clamp(22px, 6vw, 30px);
  }

  .blogs-desc {
    font-size: 14px;
  }

  .blog-info h3 {
    font-size: 11px;
  }

  /* Enquire */
  .enquire-sec {
    padding: 36px 0;
  }

  .enq-heading {
    font-size: clamp(18px, 5vw, 24px);
  }

  .enq-sub {
    font-size: 13px;
  }

  .enq-form input,
  .enq-form textarea,
  .enq-select-wrap select {
    font-size: 15px;
    /* Prevent iOS zoom */
    padding: 10px 12px;
  }

  .enq-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .enq-submit {
    width: 100%;
    justify-content: center;
  }

  /* About */
  .about-sec {
    padding: 36px 0;
  }

  .about-text h2 {
    font-size: clamp(18px, 5.5vw, 24px);
  }

  .about-text p {
    font-size: 14px;
    line-height: 1.72;
  }

  .learn-more-btn {
    font-size: 11px;
    padding: 9px 18px;
    gap: 6px;
  }

  /* Lightbox */
  .gallery-lightbox {
    padding: 12px;
  }

  .lb-img-wrap {
    height: 200px;
  }

  .lb-info {
    padding: 16px 14px;
  }

  .lb-title {
    font-size: 18px;
  }

  .lb-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .lb-nav-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .lb-close {
    font-size: 24px;
    top: 10px;
    right: 12px;
  }
}

/* ── Prevent horizontal overflow globally ── */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


/* Consistent brand text palette */
body .gold-heading,
body .blogs-ttl,
body .blogs-desc,
body .enq-eyebrow,
body .enq-heading,
body .enq-sub,
body .gallery-eyebrow,
body .gallery-title,
body .lb-title,
body .lb-desc,
body .lb-counter,
body .mode-btn,
body .g-overlay p,
body .stacked-card-desc,
body .stacked-hint,
body .stat-lbl,
body .blog-info time {
  color: var(--text-primary);
}

body .stat-num,
body .slide-plus,
body .slide-overlay h3,
body .blog-info h3,
body .g-overlay h3,
body .stacked-card-title,
body .g-view-btn,
body .lb-badge,
body .g-badge,
body .gallery-divider {
  color: var(--text-accent);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px
}

/* ==========================================================
   DEVELOPMENT CAPABILITIES — BUILDING LANDMARKS SECTION
   ========================================================== */

/* ── Section Shell ── */
.export-sec {
  position: relative;
  background: linear-gradient(160deg, #FAF8F4 0%, #f3f0e8 55%, #edf0f8 100%);
  color: #223A7A;
  overflow: hidden;
  padding: 100px 0 80px;
}

/* ── Parallax Background Layers ── */
.export-parallax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.export-parallax-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.export-parallax-layer--1 {
  background:
    radial-gradient(ellipse 70% 55% at 10% 20%, rgba(245, 130, 32, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(34, 58, 122, 0.07) 0%, transparent 60%);
}

.export-parallax-layer--2 {
  background:
    radial-gradient(circle 480px at 78% 15%, rgba(245, 130, 32, 0.05) 0%, transparent 55%),
    linear-gradient(148deg, rgba(34, 58, 122, 0.05) 0%, transparent 50%);
}

.export-parallax-layer--3 {
  background:
    radial-gradient(ellipse 100% 60% at 50% 110%, rgba(34, 58, 122, 0.06) 0%, transparent 55%),
    radial-gradient(circle 280px at 50% 50%, rgba(245, 130, 32, 0.025) 0%, transparent 70%);
}

/* ── Section Header ── */
.export-header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 64px;
  max-width: 780px;
  margin: 0 auto;
}

.export-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 130, 32, 0.10);
  border: 1px solid rgba(245, 130, 32, 0.35);
  color: #d4691a;
  font-family: 'Fustat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.export-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F58220;
  animation: exportBadgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes exportBadgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(245, 130, 32, 0);
  }
}

.export-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: #223A7A;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.export-subtitle {
  font-family: 'Fustat', sans-serif;
  font-size: 1rem;
  color: #223A7A;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Split Container ── */
.export-split-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 560px;
}

/* ── LEFT PANEL: Chip Navigation ── */
.export-left-panel {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-right: 40px;
  border-right: 1px solid rgba(34, 58, 122, 0.12);
}

.export-chip-scroll-top,
.export-chip-scroll-bottom {
  position: absolute;
  left: 0;
  right: 40px;
  height: 60px;
  pointer-events: none;
  z-index: 3;
}

.export-chip-scroll-top {
  top: 0;
  background: linear-gradient(to bottom, #f6f3ec 0%, transparent 100%);
}

.export-chip-scroll-bottom {
  bottom: 72px;
  background: linear-gradient(to top, #f6f3ec 0%, transparent 100%);
}

.export-chip-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  overflow-y: auto;
  scrollbar-width: none;
  flex: 1;
}

.export-chip-nav::-webkit-scrollbar {
  display: none;
}

.export-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(34, 58, 122, 0.04);
  border: 1px solid rgba(34, 58, 122, 0.09);
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.export-chip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #F58220;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.export-chip:hover {
  background: rgba(245, 130, 32, 0.07);
  border-color: rgba(245, 130, 32, 0.25);
  transform: translateX(4px);
  box-shadow: 0 2px 16px rgba(245, 130, 32, 0.1);
}

.export-chip.active {
  background: rgba(245, 130, 32, 0.10);
  border-color: rgba(245, 130, 32, 0.35);
  box-shadow: 0 2px 20px rgba(245, 130, 32, 0.12);
}

.export-chip.active::before {
  transform: scaleY(1);
}

.export-chip-num {
  font-family: 'Fustat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #F58220;
  opacity: 0.65;
  min-width: 22px;
  transition: opacity 0.2s;
}

.export-chip.active .export-chip-num {
  opacity: 1;
}

.export-chip-label {
  font-family: 'Fustat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(34, 58, 122, 0.65);
  letter-spacing: 0.03em;
  flex: 1;
  transition: color 0.2s;
}

.export-chip.active .export-chip-label,
.export-chip:hover .export-chip-label {
  color: #223A7A;
}

.export-chip-arrow {
  font-size: 14px;
  color: #F58220;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}

.export-chip.active .export-chip-arrow,
.export-chip:hover .export-chip-arrow {
  opacity: 1;
  transform: translateX(0);
}

.export-left-cta {
  padding: 20px 0 0;
  border-top: 1px solid rgba(34, 58, 122, 0.1);
  margin-top: 8px;
}

.export-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F58220, #f79a45);
  color: #fff !important;
  font-family: 'Fustat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245, 130, 32, 0.25);
}

.export-cta-btn:hover {
  background: linear-gradient(135deg, #f79a45, #F58220);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 130, 32, 0.38);
}

/* ── RIGHT PANEL: 3D Stacked Card Slider ── */
.export-right-panel {
  position: relative;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.export-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 168, 84, 0.10);
  border: 1px solid rgba(0, 168, 84, 0.28);
  border-radius: 100px;
  padding: 6px 14px;
  width: fit-content;
}

.export-live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00a854;
  animation: exportLivePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes exportLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 168, 84, 0.65);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(0, 168, 84, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 168, 84, 0);
  }
}

.export-live-text {
  font-family: 'Fustat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #007a3d;
}

/* ── 3D Stacked Card Stack ── */
.export-card-stack {
  position: relative;
  /* Extra bottom room (64px) absorbs the Y-offset of stacked cards (max 48px + margin)
     so they peek cleanly without being clipped by the container */
  height: 460px;
  padding-bottom: 64px;
  box-sizing: border-box;
  perspective: 1400px;
  perspective-origin: 50% 40%;
}

.export-card {
  position: absolute;
  /* Cards fill only the visible zone (above the bottom padding) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 64px;
  /* matches padding-bottom so stacked peeks sit in the pad zone */
  border-radius: 20px;
  overflow: hidden;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
  transition: transform 0.55s cubic-bezier(.4, 0, .2, 1), opacity 0.55s ease, z-index 0s 0.28s;
  cursor: pointer;
  box-shadow: 0 16px 56px rgba(34, 58, 122, 0.20), 0 2px 10px rgba(34, 58, 122, 0.10);
}

/* Stacking States — tighter vertical offsets keep building images centred */
.export-card[data-stack-pos="0"] {
  transform: translateY(0px) scale(1) rotateX(0deg);
  opacity: 1;
  z-index: 6;
  transition: transform 0.55s cubic-bezier(.4, 0, .2, 1), opacity 0.55s ease;
}

.export-card[data-stack-pos="1"] {
  transform: translateY(14px) scale(0.97) rotateX(1deg);
  opacity: 0.7;
  z-index: 5;
}

.export-card[data-stack-pos="2"] {
  transform: translateY(26px) scale(0.94) rotateX(2deg);
  opacity: 0.4;
  z-index: 4;
}

.export-card[data-stack-pos="3"] {
  transform: translateY(36px) scale(0.91) rotateX(3deg);
  opacity: 0.18;
  z-index: 3;
}

.export-card[data-stack-pos="4"],
.export-card[data-stack-pos="5"] {
  transform: translateY(46px) scale(0.88);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* Slide-out animation class */
.export-card.slide-out-left {
  animation: exportSlideOutLeft 0.4s cubic-bezier(.4, 0, .2, 1) forwards;
}

.export-card.slide-in-right {
  animation: exportSlideInRight 0.45s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes exportSlideOutLeft {
  to {
    transform: translateX(-110%) rotate(-6deg) scale(0.9);
    opacity: 0;
  }
}

@keyframes exportSlideInRight {
  from {
    transform: translateX(110%) rotate(4deg) scale(0.9);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1) rotateX(0deg);
    opacity: 1;
  }
}

.export-card-img-wrap {
  position: absolute;
  inset: 0;
  /* Clip the image zone so it never renders inside the glass overlay zone */
  overflow: hidden;
}

.export-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Show upper 20% of image — buildings' key facades and rooflines stay visible
     above the bottom glass overlay instead of being hidden under it */
  object-position: center 20%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), filter 0.65s ease;
  display: block;
  /* Slight brightness lift makes building textures crisper on light bg */
  filter: brightness(1.04) contrast(1.02);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.export-card:hover .export-card-img-wrap img,
.export-card[data-stack-pos="0"]:hover .export-card-img-wrap img {
  transform: scale(1.08);
  filter: brightness(1.07) contrast(1.03);
}

/* Glassmorphic overlay — constrained to bottom 42% so building is visible above */
.export-card-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* Hard cap: overlay never exceeds 42% of the card height */
  max-height: 42%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 26px 24px;
  background: linear-gradient(to top,
      rgba(10, 16, 36, 0.95) 0%,
      rgba(10, 16, 36, 0.80) 45%,
      rgba(10, 16, 36, 0.30) 75%,
      transparent 100%);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  box-sizing: border-box;
}

.export-card-tag {
  display: inline-block;
  font-family: 'Fustat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 5px 12px;
  background: rgba(245, 130, 32, 0.15);
  border: 1px solid rgba(245, 130, 32, 0.35);
  border-radius: 4px;
}

.export-card-desc {
  font-family: 'Fustat', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

/* ── Card Navigation ── */
.export-card-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.export-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34, 58, 122, 0.07);
  border: 1px solid rgba(34, 58, 122, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #223A7A;
  cursor: pointer;
  transition: all 0.25s ease;
}

.export-nav-btn:hover {
  background: rgba(245, 130, 32, 0.12);
  border-color: rgba(245, 130, 32, 0.38);
  color: #F58220;
  transform: scale(1.08);
}

.export-card-counter {
  font-family: 'Fustat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(34, 58, 122, 0.45);
}

/* ── Bottom Stats Bar ── */
/* ── SWAMI Premium Statistics Grid (Reference Layout) ── */
.swami-stats-container {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 64px auto 0;
  background: #FFFFFF;
  border: 1px solid rgba(34, 58, 122, 0.15);
  box-shadow: 0 16px 45px rgba(22, 37, 76, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

/* Left Column: Highlighted Solid Hero Box */
.swami-stats-hero {
  flex: 0 0 28%;
  background: #223A7A;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  position: relative;
  text-align: center;
}

.swami-stats-hero::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #F58220;
  border-right: 2px solid #F58220;
  opacity: 0.85;
}

.swami-stats-hero::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #F58220;
  border-left: 2px solid #F58220;
  opacity: 0.85;
}

.stats-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-hero-num {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: clamp(3.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stats-hero-label {
  font-family: 'Fustat', 'Poppins', sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 1.05rem);
  font-weight: 700;
  color: #F58220;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: 180px;
}

/* Right Column: 3 x 2 Grid of Statistics Cards */
.swami-stats-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  background: #FFFFFF;
}

.stats-grid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  text-align: center;
  border-left: 1px solid rgba(34, 58, 122, 0.12);
  border-bottom: 1px solid rgba(34, 58, 122, 0.12);
  transition: background 0.3s ease;
}

.stats-grid-card:nth-child(4),
.stats-grid-card:nth-child(5),
.stats-grid-card:nth-child(6) {
  border-bottom: none;
}

.stats-grid-card:hover {
  background: rgba(34, 58, 122, 0.025);
}

.stats-card-num {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  color: #F58220;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.stats-card-label {
  font-family: 'Fustat', 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #223A7A;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 200px;
}

@media (max-width: 991px) {
  .swami-stats-container {
    flex-direction: column;
    margin-top: 48px;
  }
  .swami-stats-hero {
    flex: none;
    width: 100%;
    padding: 38px 24px;
  }
  .swami-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .swami-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid-card {
    border-left: none;
    border-right: 1px solid rgba(34, 58, 122, 0.12);
  }
  .stats-grid-card:nth-child(even) {
    border-right: none;
  }
  .stats-grid-card:nth-child(5) {
    border-bottom: 1px solid rgba(34, 58, 122, 0.12);
  }
}

@media (max-width: 420px) {
  .swami-stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid-card {
    border-right: none;
    border-bottom: 1px solid rgba(34, 58, 122, 0.12) !important;
  }
  .stats-grid-card:last-child {
    border-bottom: none !important;
  }
}

.export-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}

.export-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: var(--gold, #F58220);
  line-height: 1;
  letter-spacing: -0.01em;
}

.export-stat-lbl {
  font-family: 'Fustat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #223A7A;
}

.export-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(34, 58, 122, 0.12);
  flex-shrink: 0;
  margin: 0 20px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .export-split-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .export-left-panel {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(34, 58, 122, 0.1);
    padding-bottom: 32px;
    margin-bottom: 40px;
  }

  .export-chip-scroll-top,
  .export-chip-scroll-bottom {
    right: 0;
  }

  .export-chip-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .export-chip {
    width: auto;
    flex: none;
  }

  .export-right-panel {
    padding-left: 0;
  }

  /* Tablet: taller stack so buildings show well in single-column layout */
  .export-card-stack {
    height: 420px;
    padding-bottom: 56px;
  }

  .export-card {
    bottom: 56px;
  }
}

@media (max-width: 600px) {
  .export-sec {
    padding: 72px 0 60px;
  }

  /* Mobile: slightly taller so buildings aren't squeezed */
  .export-card-stack {
    height: 360px;
    padding-bottom: 48px;
  }

  .export-card {
    bottom: 48px;
  }

  .export-stats-bar {
    flex-wrap: wrap;
    gap: 24px;
    padding: 28px 20px;
  }

  .export-stat-divider {
    display: none;
  }

  .export-stat-item {
    min-width: 40%;
  }

  .export-split-container {
    padding: 0 16px;
  }
}

/* ==========================================================
   WHY SWAMI & DISCIPLINES SECTION
   ========================================================== */
.why-sec {
  background: #0f1118;
  color: #fff;
  padding: 96px 0;
  position: relative;
}

.why-hd {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.why-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold, #F58220);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.why-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.why-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 28px;
  border-radius: 4px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 130, 32, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.12);
  border: 1px solid rgba(245, 130, 32, 0.3);
  color: #F58220;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.why-footer-box {
  background: rgba(245, 130, 32, 0.08);
  border: 1px solid rgba(245, 130, 32, 0.25);
  padding: 24px 32px;
  border-radius: 4px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.why-footer-box p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-weight: 400;
}

/* ==========================================================
   REDEVELOPMENT JOURNEY (7 STAGES)
   ========================================================== */
.journey-sec {
  background: #ffffff;
  padding: 96px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.journey-hd {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.journey-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-accent, #F58220);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.journey-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 600;
  color: var(--text-primary, #223A7A);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.journey-sub {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.journey-stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stage-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 28px 24px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.stage-card:hover {
  background: #ffffff;
  border-color: #F58220;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(34, 58, 122, 0.08);
}

.stage-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #F58220;
  line-height: 1;
  margin-bottom: 12px;
}

.stage-name {
  font-family: 'Fustat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #223A7A;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.journey-outro {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #223A7A;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ==========================================================
   SELF REDEVELOPMENT SPECIAL SECTION
   ========================================================== */
.self-sec {
  background: linear-gradient(135deg, #223A7A 0%, #172753 100%);
  color: #ffffff;
  padding: 88px 0;
  position: relative;
}

.self-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.self-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.25;
}

.self-text p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 18px;
}

.self-text p:last-of-type {
  margin-bottom: 28px;
}

.self-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 36px 32px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.self-box-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #F58220;
  margin-bottom: 16px;
}

.self-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.self-box-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #FFFFFF !important;
  line-height: 1.5;
}

.self-box-list li span,
.self-box-list li strong {
  color: #FFFFFF !important;
}

.self-box-list li svg {
  color: #F58220;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================
   LEADERSHIP SECTION
   ========================================================== */
.leader-sec {
  background: #f8fafc;
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.leader-hd {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 52px;
}

.leader-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #F58220;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.leader-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 600;
  color: #223A7A;
  margin-bottom: 16px;
}

.leader-sub {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.leader-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 36px 32px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: all 0.3s ease;
}

.leader-card:hover {
  border-color: #F58220;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(34, 58, 122, 0.08);
}

.leader-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #223A7A;
  margin-bottom: 6px;
}

.leader-role {
  font-size: 13.5px;
  font-weight: 600;
  color: #F58220;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.leader-bio {
  font-size: 14.5px;
  color: #666;
  line-height: 1.65;
}

/* ==========================================================
   FREQUENTLY ASKED QUESTIONS (FAQ)
   ========================================================== */
.faq-sec {
  background: #ffffff;
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.faq-hd {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.faq-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #F58220;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.faq-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 600;
  color: #223A7A;
  margin-bottom: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.faq-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 28px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: rgba(245, 130, 32, 0.4);
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.faq-q {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: #223A7A;
  margin-bottom: 12px;
  line-height: 1.35;
}

.faq-a {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* ── Responsive for new sections ── */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .self-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .leader-grid {
    grid-template-columns: 1fr;
  }

  .why-sec,
  .journey-sec,
  .self-sec,
  .leader-sec,
  .faq-sec {
    padding: 64px 0;
  }
}


/* ==========================================================
   PREMIUM BLOG / JOURNAL SECTION
   ========================================================== */

/* ── Section Container ── */
.blog-sec {
  padding: 104px 0 112px;
  background: #f8f9fc;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture grain */
.blog-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(34, 58, 122, 0.05) 0%, transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(245, 130, 32, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Section Header ── */
.blog-hd {
  text-align: center;
  margin-bottom: 64px;
}

.blog-eyebrow {
  display: inline-block;
  font-family: 'Fustat', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #F58220;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 14px;
}

.blog-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: #F58220;
  border-radius: 2px;
}

.blog-main-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 600;
  color: #223A7A;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.blog-desc {
  font-size: 16px;
  color: #223A7A;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Blog Grid — 3-col desktop, 2-col tablet, 1-col mobile ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* ── Individual Card ── */
.blog-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(34, 58, 122, 0.08);
  transition:
    transform 0.45s cubic-bezier(.25, .8, .25, 1),
    box-shadow 0.45s cubic-bezier(.25, .8, .25, 1);
  will-change: transform, box-shadow;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 48px rgba(34, 58, 122, 0.14),
    0 4px 16px rgba(245, 130, 32, 0.10);
}

/* Stagger delays for scroll-reveal entrance */
.blog-card--stagger-1 {
  transition-delay: 0s;
}

.blog-card--stagger-2 {
  transition-delay: 0.12s;
}

.blog-card--stagger-3 {
  transition-delay: 0.24s;
}

/* Stagger for the reveal animation */
.blog-card--stagger-1.reveal {
  transition: opacity .75s .05s cubic-bezier(.4, 0, .2, 1), transform .75s .05s cubic-bezier(.4, 0, .2, 1), box-shadow 0.45s cubic-bezier(.25, .8, .25, 1);
}

.blog-card--stagger-2.reveal {
  transition: opacity .75s .18s cubic-bezier(.4, 0, .2, 1), transform .75s .18s cubic-bezier(.4, 0, .2, 1), box-shadow 0.45s cubic-bezier(.25, .8, .25, 1);
}

.blog-card--stagger-3.reveal {
  transition: opacity .75s .31s cubic-bezier(.4, 0, .2, 1), transform .75s .31s cubic-bezier(.4, 0, .2, 1), box-shadow 0.45s cubic-bezier(.25, .8, .25, 1);
}

.blog-card--stagger-1.reveal.in,
.blog-card--stagger-2.reveal.in,
.blog-card--stagger-3.reveal.in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Override hover lift after .in state */
.blog-card--stagger-1.reveal.in:hover,
.blog-card--stagger-2.reveal.in:hover,
.blog-card--stagger-3.reveal.in:hover {
  transform: translateY(-10px) !important;
}

/* ── Card Link Wrapper ── */
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* ── Image Area ── */
.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d0d8e8;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(.25, .8, .25, 1);
  will-change: transform;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.07);
}

/* Gradient overlay on image */
.blog-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 40%,
      rgba(34, 58, 122, 0.30) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.blog-card:hover .blog-card-img-overlay {
  opacity: 1;
}

/* ── Card Body ── */
.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Meta Row: Category + Date ── */
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.blog-card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #F58220;
  text-transform: uppercase;
  background: rgba(245, 130, 32, 0.09);
  padding: 4px 10px;
  border-radius: 2px;
  border-left: 2px solid #F58220;
}

.blog-card-date {
  font-size: 12px;
  color: #223A7A;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ── Card Title ── */
.blog-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  color: #223A7A;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: #F58220;
}

/* ── Card Excerpt ── */
.blog-card-excerpt {
  font-size: 14.5px;
  color: #223A7A;
  line-height: 1.75;
  margin-bottom: 22px;
  flex: 1;
}

/* ── Read More Link ── */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #223A7A;
  border-bottom: 1.5px solid rgba(34, 58, 122, 0.25);
  padding-bottom: 2px;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.blog-card:hover .blog-read-more {
  color: #F58220;
  border-color: rgba(245, 130, 32, 0.45);
}

/* ── Arrow slide on hover ── */
.blog-arrow {
  transition: transform 0.35s cubic-bezier(.25, .8, .25, 1);
  flex-shrink: 0;
}

.blog-card:hover .blog-arrow {
  transform: translateX(6px);
}

/* ── Top accent line on card ── */
.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #223A7A, #F58220);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.25, .8, .25, 1);
}

.blog-card:hover::after {
  transform: scaleX(1);
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .blog-card--stagger-3 {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .blog-sec {
    padding: 72px 0 80px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card--stagger-3 {
    grid-column: auto;
    max-width: none;
  }

  .blog-hd {
    margin-bottom: 44px;
  }

  .blog-card-body {
    padding: 22px 22px 26px;
  }
}

@media (max-width: 480px) {
  .blog-main-title {
    font-size: 32px;
  }

  .blog-desc {
    font-size: 15px;
  }
}


/* ==========================================================
   GROUP SLIDER SECTION (SWAMI BUILDERS & DEVELOPERS)
   ========================================================== */

/* ==========================================================
   GROUP SLIDER SECTION (SWAMI BUILDERS & DEVELOPERS)
   • Full-width dark background (#0f0e0d)
   • Centered serif heading + Construction Orange #F58220 subtitle
   • 5 equal-sized building panels — 0px gaps, flush alignment at top and bottom
   • Clean architectural photos without text or plus signs
   • Left/Right chevron nav arrows at edges
   ========================================================== */

/* ── Outer Section ── */
.group-sec {
  width: 100%;
  background: #0f0e0d;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* ── Heading Block — Center-aligned ── */
.group-hd {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 20px 28px;
  width: 100%;
}

.group-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 400;
  color: #f0ebe3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 10px;
  line-height: 1.15;
  width: 100%;
}

.group-sub {
  font-family: 'Fustat', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  color: #F58220 !important;
  margin: 0 auto;
  width: 100%;
}

/* ── Slider Shell — clips the scrolling track ── */
.slider-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(280px, 30vw, 400px);
  margin: 0;
  padding: 0;
}

/* ── Scrolling Track ── */
.slider-track {
  display: flex;
  height: 100%;
  gap: 0;
  margin: 0;
  padding: 0;
  align-items: stretch;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.slider-track:active {
  cursor: grabbing;
}

/* ── Individual Slide Card — 100% equal size, 0px gap, perfectly flush ── */
.slide-card {
  position: relative;
  flex: 0 0 20%;
  width: 20%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: none;
  margin: 0;
  padding: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: brightness(0.92);
}

.slide-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.02);
}

/* ── Prev / Next Navigation Arrows ── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 14, 13, 0.70);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #f0ebe3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: rgba(245, 130, 32, 0.5);
  border-color: #F58220;
  transform: translateY(-50%) scale(1.08);
}

.arrow-prev {
  left: 16px;
}

.arrow-next {
  right: 16px;
}

.slider-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .slide-card {
    flex: 0 0 33.333%;
    width: 33.333%;
  }

  .slider-shell {
    height: clamp(240px, 36vw, 360px);
  }
}

@media (max-width: 680px) {
  .slide-card {
    flex: 0 0 50%;
    width: 50%;
  }

  .slider-shell {
    height: clamp(200px, 45vw, 300px);
  }

  .group-hd {
    padding: 34px 16px 20px;
  }
}

@media (max-width: 420px) {
  .slide-card {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* ── Orange Headline Customizations ── */
.gallery-title,
body .gallery-title,
.export-heading,
body .export-heading,
.blog-main-title,
body .blog-main-title,
.enq-heading,
body .enq-heading {
  color: #F58220 !important;
}