/* =============================================
   SREE BALAJI – Main Stylesheet
   Color Theme: Teal (#2a9d8f / #1a7a6e), Gold (#e9c46a), White, Dark Navy
   Fonts: Playfair Display (headings) + Open Sans (body)
============================================= */

:root {
  /* --teal: #2a9d8f;
  --teal-dark: #1a7a6e;
  --teal-light: #52b69a; */
  --teal: #5aa473;
  --teal-dark: #5aa473;
  --teal-light: #5aa473;
  --gold: #ffc434;
  --gold-dark: #c9a227;
  --navy: #1a1f2e;
  --text-dark: #2c2c2c;
  --text-mid: #353434;
  --text-light: #888888;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --blue: #4babdd;
  --green: #5aa473;
}

/* ===== BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--blue) !important;
  /* font-family: "Playfair Display", serif; */
}
.section-title-dark {
  font-size: 18px !important;
}
.section-title {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: white;
  line-height: 1.25;
  margin-bottom: 14px;
}

/* ===== NAVBAR ===== */
/* For toggle button */
/* NAVBAR BASE */
/* ─────────────────────────────────────────
       NAVBAR BASE
    ───────────────────────────────────────── */
#mainNav {
  background: #0d1117;
  height: 70px;
  transition: background 0.3s, box-shadow 0.3s;
  z-index: 1030;
}

#mainNav.scrolled {
  background: #0d1117;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Logo */

.sticky-logo {
  display: none !important;
}
#mainNav.scrolled .normal-logo {
  display: none !important;
}
#mainNav.scrolled .sticky-logo {
  display: inline-block !important;
}
.normal-logo {
  height: 70px;
}
/* ─────────────────────────────────────────
       DESKTOP NAV LINKS (≥992 px)
    ───────────────────────────────────────── */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 11px !important;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #c9a96e;
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07);
}

.navbar-nav .nav-link:hover::after {
  width: calc(100% - 22px);
}

/* Dropdown */
.navbar-nav .dropdown-menu {
  background: #161b25;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 0;
  margin-top: 6px !important;
  min-width: 240px;
}

.navbar-nav .dropdown-item {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  padding: 10px 18px;
  transition: background 0.15s, color 0.15s;
}

.navbar-nav .dropdown-item:hover {
  background: rgba(201, 169, 110, 0.12);
  color: #c9a96e;
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 5px;
}

/* ─────────────────────────────────────────
       ANIMATED HAMBURGER (mobile only)
    ───────────────────────────────────────── */
.hamburger {
  display: none; /* shown via media query */
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  width: 42px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.bar-wrap {
  position: relative;
  width: 22px;
  height: 16px;
}

.bar {
  display: block;
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease,
    width 0.25s ease;
}

.b1 {
  top: 0;
}
.b2 {
  top: 7px;
}
.b3 {
  top: 14px;
  width: 14px;
} /* short bottom bar default */

/* X state */
.hamburger.open .b1 {
  top: 7px;
  transform: rotate(45deg);
}
.hamburger.open .b2 {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .b3 {
  top: 7px;
  transform: rotate(-45deg);
  width: 22px;
}

@media (max-width: 991.98px) {
  .hamburger {
    display: flex;
  }
}

/* ─────────────────────────────────────────
       OVERLAY
    ───────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  z-index: 1040;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ─────────────────────────────────────────
       LEFT DRAWER
    ───────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 285px;
  background: var(--blue);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.nav-drawer.open {
  transform: translateX(0);
}

/* Drawer header */
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 70px;
}

.nav-drawer-header img {
  height: 38px;
  object-fit: contain;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.2s, color 0.2s;
  padding: 0;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.drawer-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

/* Drawer links */
.nav-drawer-links {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  overflow-y: auto;
  flex: 1;
}

.nav-drawer-links > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 13px 20px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
}

.nav-drawer-links > li > a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-left-color: #c9a96e;
}

/* Accordion arrow */
.sub-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  opacity: 0.45;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.has-sub.open .sub-arrow {
  transform: rotate(90deg);
  opacity: 0.8;
}

/* Sub-menu */
.drawer-sub {
  display: none;
  list-style: none;
  padding: 4px 0 6px;
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-sub.open {
  display: block;
}

.drawer-sub li a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 10px 20px 10px 34px;
  font-size: 11px;
  letter-spacing: 0.6px;
  transition: background 0.15s, color 0.15s;
}

.drawer-sub li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #c9a96e;
}

/* Drawer footer */
.nav-drawer-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

/* Hide drawer on desktop */
@media (min-width: 992px) {
  .drawer-overlay,
  .nav-drawer {
    display: none !important;
  }
}

#mainNav {
  background: rgba(26, 31, 46, 0.308);
  backdrop-filter: blur(px);
  padding: 0.5rem 0;
  transition: background 0.3s;
  z-index: 1000;
}

#mainNav.scrolled {
  background: var(--blue);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.brand-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  /* background: var(--teal); */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  /* border: 2px solid var(--gold); */
}

.brand-text {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 0.5rem 0.6rem !important;
  transition: color 0.2s;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.3);
}
.scrolled {
  height: 80px;
}
/* Show dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove gap */
}

/* Optional smooth effect */
.dropdown-menu {
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.dropdown-menu {
  background: var(--white);
  /* border: 1px solid var(--teal); */
  border-top: 3px solid var(--teal);
}

.dropdown-item {
  color: rgba(12, 12, 12, 0.8);
  font-size: 15px;
}

.dropdown-item:hover {
  background: var(--teal);
  color: white;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.3);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 500px;
}

.hero-slide {
  height: 100vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-1 {
  background-image: url("/images/slider/1.jpg");
}
.slide-2 {
  background-image: url("/images/slider/2.jpg");
}
.slide-3 {
  background-image: url("/images/slider/3.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--white);
}

.why-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.why-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-tab {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-left: 3px solid transparent;
  color: var(--text-mid);
  transition: all 0.2s;
  background: #8d919526;
  margin-bottom: 2px;
}

.why-tab:hover {
  background: #e8f5f3;
  color: var(--teal);
}

.why-tab.active {
  background: var(--green);
  color: white;
  border-left-color: var(--gold-dark);
}

.why-content {
  display: none;
}
.why-content.active {
  display: block;
}

.why-heading {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--teal-dark);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.why-text {
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 15px;
}

.read-more-link {
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
}

.read-more-link:hover {
  color: var(--teal-dark);
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
}

.projects-bg {
  background: url("/images/project-bg.jpg") center/cover no-repeat;
  position: relative;
}

.projects-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 20, 0.75);
}

.section-title-light {
  /* font-family: "Playfair Display", serif; */
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  /* font-style: italic; */
}

.project-filter-btns {
  display: inline-flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.proj-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.proj-btn:last-child {
  border-right: none;
}

.proj-btn:hover,
.proj-btn.active {
  background: var(--teal);
  color: white;
}

.project-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.project-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.project-card-body {
  padding: 12px 14px 14px;
  text-align: center;
  position: relative;
}

.project-logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 14px;
  margin: -24px auto 8px;
  border: 2px solid white;
  position: relative;
  z-index: 1;
}

.project-card-body h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.project-card-body p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.project-card-wrap.hidden {
  display: none;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--white);
}

.section-title-dark {
  color: var(--teal-dark);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

.video-wrapper {
  position: relative;
}

.video-placeholder {
  position: relative;
  cursor: pointer;
  border: 3px solid var(--teal-light);
  border-radius: 4px;
  overflow: hidden;
}

.video-placeholder img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: filter 0.3s;
}

.video-placeholder:hover img {
  filter: brightness(0.65);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(42, 157, 143, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.play-btn i {
  font-size: 36px;
  color: white;
  margin-left: 5px;
}

.video-placeholder:hover .play-btn {
  background: var(--teal-dark);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-logos-row .v-logo-item {
  font-size: 12px;
  color: var(--text-light);
  border: 1px solid #ddd;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #e2e2e2;
  position: relative;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon i {
  font-size: 30px;
  color: #20c997;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 15px 0;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-img {
  width: 45px;
  height: 45px;
  background: #20c997;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testimonial-footer h6 {
  margin: 0;
  font-size: 17px;
}

.testimonial-footer span {
  font-size: 12px;
  color: #888;
}
/* Position nav top right */
.testimonial-carousel .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  gap: 10px;
}

/* Button style */
.testimonial-carousel .owl-nav button {
  width: 38px;
  height: 38px;
  background: #fff !important;
  border-radius: 50%;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Icon */
.testimonial-carousel .owl-nav i {
  font-size: 16px;
  color: #333;
}

/* Hover */
.testimonial-carousel .owl-nav button:hover {
  background: #20c997 !important;
}

.testimonial-carousel .owl-nav button:hover i {
  color: #fff;
}
/* ===== SLIDER CONTROLS ===== */
.slider-controls {
  display: flex;
  gap: 6px;
}

.ctrl-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--white);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
}

.ctrl-btn:hover {
  background: var(--teal);
  color: white;
}

.ctrl-btn-dark {
  border-color: white;
  color: white;
}

.ctrl-btn-dark:hover {
  background: white;
  color: var(--teal-dark);
}

/* ===== MILESTONES ===== */
.milestones-section {
  background: var(--green);
}

.milestone-label {
  font-size: 11px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.milestone-sub {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 500px;
}

.milestones-bg {
  background: var(--teal);
  border-radius: 4px;
}

.milestone-card {
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
}

.milestone-img {
  width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.milestone-body h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.milestone-body p {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.5;
}

/* ===== EVENTS ===== */
.events-section {
  background: var(--bg-light);
}

.event-card {
  overflow: hidden;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.event-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.event-card:hover {
  border-color: var(--teal);
}

.event-card:hover img {
  transform: scale(1.05);
}

/* ===== CSR SECTION ===== */
.csr-section {
}

.csr-bg {
  background: url("https://images.unsplash.com/photo-1448630360428-65456885c650?w=1600&q=80")
    center/cover;
  position: relative;
}

.csr-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 20, 0.78);
}

.csr-label-box {
  position: relative;
  z-index: 2;
}

.csr-heading {
  color: white;
  font-size: 2rem;
  margin-bottom: 4px;
}

.csr-sub {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.csr-img {
  height: 140px;
  object-fit: cover;
  border-radius: 3px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s;
}

.csr-img:hover {
  transform: scale(1.03);
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--teal);
}

.cta-text {
  color: white;

  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
}

.cta-btn {
  display: inline-block;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: white;
  color: var(--teal-dark);
}

/* ===== MARKETING PARTNER ===== */
.partner-section {
  background: var(--bg-light);
}

.partner-label {
  font-size: 18px;
  color: var(--text-mid);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.partner-logo-box {
  display: inline-block;
  border: 2px solid #ddd;
  padding: 18px 32px;
  border-radius: 4px;
}

.nk-logo {
  text-align: center;
}

.nk-n {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.nk-k {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.nk-sub {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--text-mid);
  margin: 0;
}

.nk-phone {
  font-size: 18px;
  color: #000;
  margin: 2px 0 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}

.footer-heading {
  color: var(--white) !important;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}

.footer-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--teal-light);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .why-tab {
    font-size: 11px;
    padding: 8px 10px;
  }
  .proj-btn {
    font-size: 10px;
    padding: 6px 10px;
  }
}

/* Gallery Page */
.gallery-section {
  padding: 30px 0;
}

.gallery-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  transition: 0.4s ease;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 30px;
}

/* Banner section*/
.banner-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80")
    center/cover no-repeat;
}

.banner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 122, 110, 0.92) 0%,
    rgba(26, 31, 46, 0.88) 100%
  );
}

.banner-hero-skew {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-light, #f8f9fa);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.banner-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  width: 100%;
}

.banner-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold, #e9c46a);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(233, 196, 106, 0.4);
  padding-bottom: 4px;
}

.faq-hero-title {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.faq-hero-title em {
  color: var(--gold, #e9c46a);
  font-style: italic;
}

.faq-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Project page start */
.project-top-section {
  position: relative;
  height: 100vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-top-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.514) 0%,
    rgba(0, 0, 0, 0.63) 100%
  );
}
.project-top-section .hero-content .hero-tagline {
  text-transform: capitalize !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  padding-top: 20px;
}
/*  */
/* ── LOCATION CARDS ── */
.loc-cards-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.loc-card {
  background: white;
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid rgba(42, 157, 143, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.loc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 157, 143, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42, 157, 143, 0.14);
  border-color: rgba(42, 157, 143, 0.3);
}

/* top accent bar */
.loc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.loc-card:hover::after {
  transform: scaleX(1);
}

.loc-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s, transform 0.3s;
}

.loc-card:hover .loc-icon-wrap {
  background: var(--teal);
  transform: scale(1.08) rotate(-4deg);
}

.loc-icon-wrap i {
  font-size: 26px;
  color: var(--white);
  transition: color 0.3s;
}

.loc-card:hover .loc-icon-wrap i {
  color: white;
}

.loc-distance-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  transition: background 0.3s, color 0.3s;
}

.loc-card:hover .loc-distance-badge {
  background: var(--teal);
  color: white;
}

.loc-name {
  /* font-family: "Playfair Display", serif; */
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.loc-desc {
  font-size: 13.5px;
  color: #5b5c5e;
  line-height: 1.5;
  font-weight: 300;
}

/* ── VIDEO BLOCK ── */
.video-block {
  margin-top: 64px;
  position: relative;
}

/* Decorative connector line */
.video-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.video-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(42, 157, 143, 0.2);
}

.video-divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.video-divider-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
}

/* Main video card */
.video-card {
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 340px;
  box-shadow: 0 32px 80px rgba(13, 27, 42, 0.25);
  position: relative;
}

/* Left: info panel */
.video-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.video-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.video-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: white;
  line-height: 1.25;
  margin-bottom: 14px;
}

.video-title em {
  color: var(--gold);
  font-style: italic;
}

.video-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  font-weight: 300;
  max-width: 320px;
  margin-bottom: 28px;
}

/* Stats row */
.video-stats {
  display: flex;
  gap: 28px;
}

.v-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.v-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}

.v-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

/* Right: video thumbnail */
.video-thumb-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.72) saturate(0.9);
}

.video-thumb-wrap:hover img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(0.85);
}

/* Gradient overlay on thumbnail */
.video-thumb-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}

/* Play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.play-btn i {
  font-size: 28px;
  color: var(--teal-dark);
  margin-left: 5px;
  transition: color 0.3s;
}

.video-thumb-wrap:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--teal);
}

.video-thumb-wrap:hover .play-btn i {
  color: white;
}

/* Pulse ring */
.play-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Watch label */
.watch-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s;
}

.video-thumb-wrap:hover .watch-label {
  color: white;
}

/* ── VIDEO POPUP MODAL ── */
.video-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}

.video-modal-backdrop.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.video-modal-box {
  width: 100%;
  max-width: 900px;
  position: relative;
  animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0.88);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.video-modal-close:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.video-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Bottom caption */
.video-modal-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .loc-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .video-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .video-thumb-wrap {
    height: 260px;
  }
  .video-info {
    padding: 36px 32px;
  }
}

@media (max-width: 600px) {
  .loc-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .loc-card {
    padding: 20px 14px 18px;
  }
  .loc-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 11px;
  }
  .loc-icon-wrap i {
    font-size: 20px;
  }
  .loc-name {
    font-size: 14px;
  }
  .video-info {
    padding: 28px 24px;
  }
  .video-stats {
    gap: 16px;
  }
}

@media (max-width: 400px) {
  .loc-cards-row {
    grid-template-columns: 1fr;
  }
}
/* Project gallery */
/* Tabs */
.gallery-tabs {
  margin-bottom: 30px;
}

.gallery-tab {
  border: none;
  padding: 12px 20px;
  margin: 5px;
  background: #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-tab.active {
  background: #fff;
  font-weight: 600;
}

.luxury-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

/* GRID */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ITEM */
.luxury-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 0px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ICON */
.luxury-icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #59a373, #0077ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

/* TEXT */
.luxury-text {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .luxury-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
/* Gallery */
/* ── SECTION ── */
.gal-section {
  padding: 80px 0 90px;
  position: relative;
}

/* dark forest tint */
.gal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 18, 0.72);
  z-index: 0;
  pointer-events: none;
}

.gal-inner {
  position: relative;
  z-index: 1;
}

/* ── HEADING ── */
.gal-heading {
  text-align: center;
  margin-bottom: 36px;
}

.gal-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.gal-heading h2 em {
  font-style: italic;
  color: var(--gold);
}

.gal-heading p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  font-weight: 300;
}

/* ── TAB BAR ── */
.tab-bar-wrap {
  margin-bottom: 28px;
}

.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.tab-btn {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 14px 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-align: center;
  white-space: nowrap;
  position: relative;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tab-btn.active {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
}

/* active indicator pip */
.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}

/* tab count badge */
.tab-count {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  transition: background 0.25s;
}

.tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
/* HHome page video section */
/* SECTION */
.sb-video-sec {
  background: #f8f9fa;
}

.sb-video-title {
  font-size: 28px;
  font-weight: 600;
}

/* THUMBNAIL */
.sb-video-box {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}

.sb-video-box img {
  transition: 0.4s;
}

.sb-video-box:hover img {
  transform: scale(1.05);
}

/* PLAY BUTTON */
.sb-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  transition: 0.3s;
}

.sb-play-icon:hover {
  background: #0d6efd;
}

/* MODAL */
.sb-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.sb-video-modal.active {
  display: flex;
}

/* CONTENT */
.sb-video-content {
  width: 100%;
  max-width: 900px;
  position: relative;
}

/* CLOSE */
.sb-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sb-play-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}

/* ── GALLERY CONTAINER ── */
.gal-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

/* ── GRID ── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* ── GRID ITEM ── */
.g-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  animation: itemIn 0.45s ease both;
}

@keyframes itemIn {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.85);
}

.g-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.6);
}

/* overlay */
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 18, 0.85) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.g-item:hover .g-overlay {
  opacity: 1;
}

.g-overlay-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 2px;
}

.g-overlay-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--gold);
  text-transform: uppercase;
}

.g-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  backdrop-filter: blur(4px);
}

.g-item:hover .g-zoom {
  opacity: 1;
  transform: scale(1);
}

.g-item:hover .g-zoom:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* ── LOAD MORE ── */
.load-more-wrap {
  text-align: center;
  margin-top: 28px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 13px 34px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.load-more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.load-more-btn:hover::before {
  transform: scaleX(1);
}
.load-more-btn:hover {
  border-color: var(--teal);
  color: #fff;
}

.load-more-btn span,
.load-more-btn i {
  position: relative;
  z-index: 1;
}

.load-more-btn.loading i {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.remaining-badge {
  display: inline-block;
  background: rgba(233, 196, 106, 0.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── EMPTY STATE ── */
.gal-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.35);
  display: none;
}

.gal-empty i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 10px;
}
.gal-empty p {
  font-size: 14px;
}

/* ── GLightbox overrides ── */
.glightbox-clean .gslide-description {
  background: var(--navy) !important;
}
.glightbox-clean .gdesc-inner .gslide-title {
  font-family: "Playfair Display", serif !important;
  color: #fff !important;
  font-size: 16px !important;
}
.glightbox-clean .gdesc-inner .gslide-desc {
  color: var(--gold) !important;
  font-size: 12px !important;
}
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: var(--teal) !important;
}
.glightbox-clean .gclose {
  background: rgba(13, 27, 42, 0.85) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .tab-btn {
    font-size: 12px;
    padding: 11px 12px;
    min-width: 100px;
  }
}

@media (max-width: 500px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gal-box {
    padding: 12px;
  }
  .tab-bar {
    border-radius: 10px;
  }
}

/* my points */
.my-points ul {
  list-style: none;
  padding-left: 0;
}

.my-points ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.my-points ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
  font-weight: bold;
}
.pn-phase-wrapper {
  font-family: inherit;
}

/* Tabs */
.pn-phase-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.pn-tab-btn {
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  background: #f1f1f1;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.pn-tab-btn.active {
  background: #5aa473;
  color: #fff;
}

/* Content Box */
.pn-phase-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Hide/Show Tabs */
.pn-tab-pane {
  display: none;
}

.pn-tab-pane.active {
  display: block;
}

/* List */
.pn-phase-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pn-phase-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 15px;
}

.pn-phase-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}
.feature {
  background-color: #f2f2f2;
}
.pn-form-section {
  background: linear-gradient(135deg, #f8f9fa, #eef3ff);
  padding: 60px 0;
}

.pn-form-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.pn-form-title {
  font-weight: 700;
  margin-bottom: 5px;
}

.pn-form-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.pn-label {
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  display: block;
  margin-bottom: 5px;
}

.pn-input {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.pn-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.1);
}

.pn-btn {
  background: linear-gradient(135deg, var(--green), var(--green));
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

.pn-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
  color: var(--gold);
}
.pn-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pn-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.pn-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
/* FOr payment schedule */
/* ── Phase grid ── */
.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) {
  .phase-grid {
    grid-template-columns: 1fr;
  }
  .main-panel {
    padding: 28px 20px 36px;
  }
  .header-card {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .header-badge {
    display: none;
  }
}

/* ── Phase card ── */
.phase-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid #e4eaee;
  border-radius: 10px;
  padding: 0;
  display: flex;
  align-items: stretch;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.phase-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 10px 28px rgba(90, 164, 115, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.06);
}
.phase-card:active {
  transform: translateY(0);
}

/* Left accent strip */
.phase-strip {
  width: 5px;
  flex-shrink: 0;
  border-radius: 8px 0 0 8px;
}
.strip-i {
  background: linear-gradient(180deg, var(--teal), var(--blue));
}
.strip-ii {
  background: linear-gradient(180deg, var(--blue), var(--teal));
}
.strip-iii {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}
.strip-iv {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
}

.phase-body {
  flex: 1;
  padding: 20px 20px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phase-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phase-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.phase-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(0.88rem, 2.2vw, 1rem);
  color: var(--navy);
  line-height: 1.3;
}
.phase-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
}

/* Download button */
.dl-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s ease, transform 0.22s ease;
}
.dl-btn-teal {
  background: rgba(90, 164, 115, 0.1);
}
.dl-btn-blue {
  background: rgba(75, 171, 221, 0.1);
}
.dl-btn-gold {
  background: rgba(255, 196, 52, 0.12);
}

.phase-card:hover .dl-btn-teal {
  background: var(--teal);
}
.phase-card:hover .dl-btn-blue {
  background: var(--blue);
}
.phase-card:hover .dl-btn-gold {
  background: var(--gold);
}
.phase-card:hover .dl-btn {
  transform: scale(1.08);
}

.dl-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.22s ease;
}
.dl-btn-teal svg {
  stroke: var(--teal);
}
.dl-btn-blue svg {
  stroke: var(--blue);
}
.dl-btn-gold svg {
  stroke: var(--gold-dark);
}
.phase-card:hover .dl-btn svg {
  stroke: var(--white);
}

/* ── Info strip ── */
.info-strip {
  margin-top: 28px;
  background: rgba(90, 164, 115, 0.06);
  border: 1px solid rgba(90, 164, 115, 0.18);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-strip svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}
.info-strip p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.info-strip strong {
  color: var(--teal);
}
.pn-overlay h5 {
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  padding: 10px 0px;
  color: var(--dark) !important;
}
