:root {
  --black: #050508;
  --deep: #0d0b1a;
  --purple: #1a0d2e;
  --violet: #2d1054;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-pale: #f8ebb0;
  --glow: #7c3aed;
  --white: #f5f0ff;
  --muted: #a89dc0;
  --card-bg: rgba(255, 255, 255, 0.035);
  --border: rgba(201, 168, 76, 0.18);
  --font-head: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#movingService {
  overflow: hidden;
  background: var(--gold);
  color: var(--black);
  padding: 10px 0;
  font-weight: 500;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.marquee-content span {
  white-space: nowrap;
  padding-right: 50px;
  font-size: 16px;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

#movingService::before,
#movingService::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
}

#movingService::before {
  left: 0;
  background: linear-gradient(to right, #090a00, transparent);
}

#movingService::after {
  right: 0;
  background: linear-gradient(to left, #0a0005, transparent);
}

.marquee-content:hover {
  animation-play-state: paused;
}

#nav2 {
  background: linear-gradient(90deg, #0b0018, var(--violet), #0b0018);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 20px;
}

#nav2 .serviceIcon {
  background-color: var(--gold);
  padding: .4rem;
  border-radius: 2rem;
  max-width: fit-content;
  min-height: fit-content;
  color: var(--black);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;

  display: flex;
  gap: .4rem;
  align-items: center;
}

#nav2 .serviceIcon div {
  background: linear-gradient(90deg, #0b0018, var(--violet), #0b0018);
  width: auto;
  padding: .5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
}

/* ===== VIDEO GALLERY ==== */
/* #videoGallery{
    padding: 40px;
} */
#videoGallery .videoContainer {
  /* padding: 20px 40px; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#videoGallery .videoContainer div {
  padding: 2px;
  background-color: var(--gold);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#videoGallery iframe {
  border-radius: .5rem;
  min-width: 100%;
}

.chatCtnr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  /* padding: 20px; */
}

.chatElm {
  background: #0d0b1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  position: relative;
}

.chatElm:hover {
  transform: translateY(-5px);
}

/* WhatsApp style top bar */
.chatElm::before {
  content: "WhatsApp Chat";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #25D366;
  color: white;
  font-size: 12px;
  padding: 5px;
  text-align: center;
  font-weight: bold;
}

.chatElm img {
  width: 100%;
  height: 100%;
  display: block;
  margin-top: 25px;
  /* space for header */
}

.chatElm::after {
  content: "✔ Verified Review";
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #25D366;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 6px;
}

.chatElm {
  height: 350px;
  /* fixed height */
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.chatElm img {
  width: 100%;
  height: auto;
  transition: transform 4.4s ease;
}

/* Hover scroll effect */
.chatElm:hover img {
  transform: translateY(-50%);
}

@media (max-width:510px) {
  #nav2 {
    padding: 2rem .5px;
    gap: 5px;
  }

  #nav2 .serviceIcon div {
    padding: .3rem;
  }

  #nav2 .serviceIcon {
    font-size: .74rem;
    padding: .4rem;
  }

  .marquee-content span {
    font-size: 13px;
  }
}


/* ==== map section === */

#map-section {
  background: var(--black);
}

.mapmain-container {
  display: flex;
  flex-wrap: wrap-reverse;
}

.map-text {
  flex: 1;
  min-width: 280px;
}

.map-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.map-text p {
  font-size: 15px;
  opacity: 0.9;
}

.info p {
  margin: 8px 0;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}















/* ── Section wrapper ── */
.gs-section {
  padding: clamp(48px,6vw,80px) 0 clamp(48px,6vw,72px);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(45,16,84,0.35) 0%, transparent 65%),
    var(--deep);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Header ── */
.gs-header {
  text-align: center;
  margin-bottom: clamp(28px,4vw,44px);
  padding: 0 20px;
}
.gs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 15px;
  margin-bottom: 14px;
}
.gs-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.9);
  animation: gs-dot-pulse 2s ease-in-out infinite;
}
@keyframes gs-dot-pulse {
  0%,100% { box-shadow: 0 0 8px rgba(201,168,76,0.8); }
  50%      { box-shadow: 0 0 18px rgba(201,168,76,1), 0 0 30px rgba(201,168,76,0.4); }
}
.gs-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.gs-title em {
  font-style: italic;
  background: linear-gradient(135deg,var(--gold-light),var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Strip outer wrapper ── */
.gs-strip-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0; /* vertical breathing room */
}

/* ── Left / right fade gradients ── */
.gs-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px,8vw,140px);
  z-index: 3;
  pointer-events: none;
}
.gs-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--deep), transparent);
}
.gs-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--deep), transparent);
}

/* ── The scrolling track ── */
.gs-track {
  display: flex;
  gap: 16px;
  width: max-content;

  /* CSS animation — moves left by exactly half (one full set of 8 images) */
  animation: gs-scroll 28s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.gs-track:hover {
  animation-play-state: paused;
}

@keyframes gs-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Individual image card ── */
.gs-item {
  flex-shrink: 0;
  width: clamp(160px, 20vw, 240px);
  height: clamp(110px, 14vw, 160px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--purple); /* fallback while image loads */

  /* Entrance pop */
  transition:
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.gs-item:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(201,168,76,0.6);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.5),
    0 0 20px rgba(201,168,76,0.12);
  z-index: 2;
}
.gs-item:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Image inside card ── */
.gs-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.gs-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

/* ── Overlay with zoom icon ── */
.gs-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(13,11,26,0.2);
}
.gs-item-overlay i {
  font-size: 1.4rem;
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transform: scale(0.7);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.gs-item:hover .gs-item-overlay {
  opacity: 1;
}
.gs-item:hover .gs-item-overlay i {
  transform: scale(1);
}

/* ── Gold shimmer on top of each card ── */
.gs-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(201,168,76,0.08) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gs-item:hover::after {
  opacity: 1;
  animation: gs-shimmer 0.6s ease forwards;
}
@keyframes gs-shimmer {
  from { transform: translateX(-100%) skewX(-12deg); }
  to   { transform: translateX(200%)  skewX(-12deg); }
}

/* ── Gold top accent line on hover ── */
.gs-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 4;
}
.gs-item:hover::before {
  transform: scaleX(1);
}


/* ════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════ */

.gs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gs-lightbox.open {
  opacity: 1;
  visibility: visible;
}

/* Blurred dark backdrop */
.gs-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Main box */
.gs-lb-box {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  width: 100%;
  background: linear-gradient(145deg, rgba(45,16,84,0.8), rgba(13,11,26,0.95));
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  animation: gs-lb-pop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.gs-lightbox.open .gs-lb-box {
  animation: gs-lb-pop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes gs-lb-pop {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

/* Close button */
.gs-lb-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.gs-lb-close:hover {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  transform: rotate(90deg);
}

/* Prev / Next buttons */
.gs-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(13,11,26,0.88);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.gs-lb-prev { left: 14px; }
.gs-lb-next { right: 14px; }
.gs-lb-nav:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.5);
}
.gs-lb-prev:hover { transform: translateY(-50%) translateX(-2px); }
.gs-lb-next:hover { transform: translateY(-50%) translateX(2px); }

/* Image wrapper */
.gs-lb-img-wrap {
  position: relative;
  width: 100%;
  min-height: 260px;
  max-height: 68vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* The main image */
.gs-lb-img {
  width: 100%;
  height: 100%;
  max-height: 68vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.gs-lb-img.loading {
  opacity: 0;
}
.gs-lb-img.slide-in-right {
  animation: gs-slide-right 0.32s cubic-bezier(0.4,0,0.2,1) both;
}
.gs-lb-img.slide-in-left {
  animation: gs-slide-left 0.32s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes gs-slide-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes gs-slide-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Loading spinner */
.gs-lb-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.gs-lb-spinner.visible { opacity: 1; }
.gs-lb-spinner i {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
}

/* Footer bar */
.gs-lb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid rgba(201,168,76,0.1);
  background: rgba(13,11,26,0.6);
  flex-wrap: wrap;
  gap: 8px;
}
.gs-lb-counter {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  min-width: 40px;
}
.gs-lb-caption {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  flex: 1;
}

/* Dot indicators */
.gs-lb-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  min-width: 40px;
}
.gs-lb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  padding: 0;
}
.gs-lb-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}
.gs-lb-dot:hover {
  background: rgba(201,168,76,0.6);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .gs-item {
    width: clamp(130px,40vw,180px);
    height: clamp(88px,28vw,120px);
  }
  .gs-track { gap: 10px; }
  .gs-lb-nav { width: 36px; height: 36px; font-size: 0.8rem; }
  .gs-lb-prev { left: 6px; }
  .gs-lb-next { right: 6px; }
  .gs-lb-footer { padding: 10px 14px; }
}

