/* ===========================================================
   BAHI SQUARE — Blue Glassmorphism Theme
   Single brand colour: #015bb1  |  Blue + White only
   Premium real-estate aesthetic: glass, soft gradients,
   floating shapes, refined motion. No black, no green, no red.
=========================================================== */

:root {
  /* Brand — one colour */
  --primary: #015bb1;
  --primary-light: #2d7fd3;
  --primary-dark: #01498d;
  --primary-deep: #013a70;

  --white: #ffffff;
  --light: #f8fbff;
  --light-blue: #eef7ff;
  --sky: #dcecfb;

  /* Glass tuned for readability: low opacity over photos,
     higher opacity for cards sitting on light backgrounds */
  --glass-nav: rgba(255, 255, 255, .14);
  --glass-nav-solid: rgba(255, 255, 255, .78);
  --glass: rgba(255, 255, 255, .55);
  --glass-strong: rgba(255, 255, 255, .72);
  --glass-border: rgba(255, 255, 255, .6);
  --glass-border-soft: rgba(1, 91, 177, .12);

  --text: #1c2b39;
  --text-light: #5f7185;

  --line: rgba(1, 91, 177, .12);
  --line-strong: rgba(1, 91, 177, .22);

  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --shadow-soft: 0 20px 50px rgba(1, 73, 141, .12);
  --shadow-glass: 0 14px 44px rgba(1, 73, 141, .12);
  --shadow-blue: 0 18px 40px rgba(1, 91, 177, .30);
  --glow-blue: 0 0 0 1px rgba(1, 91, 177, .12), 0 24px 60px rgba(1, 91, 177, .22);

  --ease: cubic-bezier(.16, .84, .44, 1);

  --font-head: 'Outfit', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(135deg, #ffffff 0%, #f3f9ff 45%, #eef7ff 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Ambient page mesh — sits behind all content */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(45% 45% at 12% 8%, rgba(45, 127, 211, .12), transparent 70%),
    radial-gradient(40% 40% at 88% 22%, rgba(1, 91, 177, .10), transparent 70%),
    radial-gradient(50% 50% at 78% 88%, rgba(45, 127, 211, .10), transparent 70%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

@media(max-width:640px) {
  .container {
    padding: 0 20px;
  }
}

/* ===========================================================
   Sections + decorative floating shapes (CSS only)
=========================================================== */
section {
  padding: 120px 0;
  position: relative;
  isolation: isolate;
}

@media(max-width:900px) {
  section {
    padding: 80px 0;
  }
}

/* Two soft blurred blobs per section, gently floating */
section::before,
section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
  opacity: .55;
}

section::before {
  width: 340px;
  height: 340px;
  top: -60px;
  left: -80px;
  background: radial-gradient(circle, rgba(45, 127, 211, .30), transparent 70%);
  animation: floatShape 16s var(--ease) infinite;
}

section::after {
  width: 300px;
  height: 300px;
  bottom: -70px;
  right: -70px;
  background: radial-gradient(circle, rgba(1, 91, 177, .22), transparent 70%);
  animation: floatShape 20s var(--ease) infinite reverse;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -28px) scale(1.08); }
}

/* Light-blue glass "feature" sections (replaces old black sections) */
.dark-section {
  background:
    linear-gradient(135deg, #ffffff 0%, #eef7ff 55%, #e3f1ff 100%);
  color: var(--text);
}

.dark-section::before {
  background: radial-gradient(circle, rgba(1, 91, 177, .22), transparent 70%);
}

/* ---------- Shared type ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(1, 91, 177, .08);
  border: 1px solid rgba(1, 91, 177, .14);
}

.eyebrow.light {
  color: var(--primary);
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.6px;
  color: var(--text);
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--text);
}

.gold-text {
  color: var(--primary);
  position: relative;
}

/* ===========================================================
   Buttons — blue only
=========================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.btn span {
  position: relative;
  z-index: 2;
}

/* Primary */
.btn-gold,
.btn-dark {
  background: linear-gradient(120deg, var(--primary-light), var(--primary) 60%, var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-gold:hover,
.btn-dark:hover {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark) 70%, var(--primary-deep));
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(1, 91, 177, .40);
}

/* Secondary — glass with blue border */
.btn-outline,
.btn-outline-light {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover,
.btn-outline-light:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.btn-lg {
  padding: 17px 40px;
  font-size: 16px;
}

.btn-sm {
  padding: 11px 24px;
  font-size: 13px;
}

/* ===========================================================
   Preloader — light glass
=========================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .8s var(--ease), visibility .8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--primary);
  font-size: 22px;
  position: relative;
}

.preloader-mark::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  height: 2px;
  width: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  animation: loadbar 1.4s var(--ease) forwards;
}

@keyframes loadbar {
  to { transform: scaleX(1); }
}

/* ---------- Cursor glow — blue ---------- */
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 91, 177, .10), transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  opacity: 0;
}

@media(max-width:900px) {
  .cursor-glow { display: none; }
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  z-index: 1200;
  pointer-events: none;
}

/* ===========================================================
   Header — glass navbar
=========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 10px 0;
}

.site-header .header-inner {
  position: relative;
  background: transparent;
}

.site-header .header-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--glass-nav);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 34px rgba(1, 73, 141, .12);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  pointer-events: none;
}

.site-header.scrolled {
  padding: 12px 0;
}

.site-header.scrolled .header-inner::before {
  background: var(--glass-nav-solid);
  border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 12px 34px rgba(1, 73, 141, .14);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 18px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img,
.logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img,
.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Smaller logo when header is scrolled */
.site-header.scrolled .logo img,
.site-header.scrolled .logo-img {
    height: 52px;
}

/* Tablet */
@media (max-width: 992px) {
    .logo img,
    .logo-img {
        height: 50px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo img,
    .logo-img {
        height: 42px;
    }
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
  text-shadow: 0 1px 10px rgba(1, 45, 90, .35);
}

.site-header.scrolled .main-nav a {
  color: var(--text);
  text-shadow: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-light);
  transition: width .35s var(--ease);
}

.site-header.scrolled .main-nav a::after {
  background: var(--primary);
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta .btn {
  padding: 12px 26px;
  font-size: 14px;
}

.phone-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  transition: all .35s;
}

.site-header.scrolled .phone-btn {
  border-color: var(--primary);
  color: var(--primary);
}

.phone-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 22px;
  position: relative;
}

.nav-toggle span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s;
}

.site-header.scrolled .nav-toggle span {
  background: var(--primary);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.active span { background: var(--primary); }

.nav-close { display: none; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 45, 90, .35);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- Mobile glass menu ---------- */
@media(max-width:1024px) {
  .main-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(155deg, rgba(255, 255, 255, .94), rgba(232, 243, 255, .94));
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 24px 48px;
    gap: 10px;
    transform: translateY(-100%);
    transition: transform .45s var(--ease);
    z-index: 1001;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: min(360px, 90%);
    color: var(--primary-dark);
    font-size: 19px;
    font-weight: 600;
    padding: 18px 22px;
    border-radius: var(--radius);
    text-shadow: none;
    transition: background .25s, color .25s, transform .25s;
  }

  .main-nav a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 15px;
  }

  .main-nav a.active {
    color: #fff;
    background: linear-gradient(120deg, var(--primary-light), var(--primary));
    box-shadow: var(--shadow-blue);
  }

  .main-nav a.active i { color: #fff; }

  .main-nav a:hover,
  .main-nav a:active {
    color: var(--primary);
    background: rgba(1, 91, 177, .10);
    transform: scale(1.02);
  }

  .main-nav a::after { display: none; }

  .nav-close {
    display: flex;
    position: absolute;
    top: 22px;
    right: 22px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border: none;
    box-shadow: var(--shadow-blue);
    transition: transform .3s var(--ease), background .3s;
    z-index: 1002;
  }

  .nav-close:hover,
  .nav-close:active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: rotate(90deg) scale(1.05);
  }

  .nav-toggle { display: flex; }

  .nav-toggle.active {
    opacity: 0;
    pointer-events: none;
  }

  .header-cta .btn { display: none; }
}

/* ===========================================================
   Hero
=========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  filter: blur(60px);
}

.hero::before {
  width: 320px;
  height: 320px;
  top: 12%;
  left: 6%;
  background: radial-gradient(circle, rgba(45, 127, 211, .45), transparent 70%);
  animation: floatShape 18s var(--ease) infinite;
}

.hero::after {
  width: 260px;
  height: 260px;
  bottom: 16%;
  right: 8%;
  background: radial-gradient(circle, rgba(1, 91, 177, .40), transparent 70%);
  animation: floatShape 22s var(--ease) infinite reverse;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  animation: kenburns 7s ease-in-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.18); }
}

/* Blue gradient overlay (no black) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background:
    linear-gradient(180deg, rgba(1, 45, 90, .55) 0%, rgba(1, 73, 141, .38) 45%, rgba(1, 45, 90, .70) 100%),
    linear-gradient(120deg, rgba(1, 91, 177, .30), rgba(45, 127, 211, .18)); */
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, transform .3s;
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

@media(max-width:640px) {
  .hero-arrow { width: 38px; height: 38px; }
  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }
}

.hero-dots {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: .3s;
}

.hero-dots .dot.active {
  background: #fff;
  width: 26px;
  border-radius: 6px;
}

/* Glass content box */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 30px 70px rgba(1, 45, 90, .30);
}

@media(max-width:640px) {
  .hero-content { padding: 34px 24px; margin: 0 18px; }
}

.hero-content .eyebrow {
  color: #eaf3ff;
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .3);
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: #fff;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .gold-text {
  color: #bcdcff;
}

.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: wordUp .9s var(--ease) forwards;
}

@keyframes wordUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .9);
  max-width: 600px;
  margin: 26px auto 0;
  font-weight: 300;
  line-height: 1.7;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .8);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .3);
  position: relative;
  overflow: hidden;
}

.scroll-line i {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #fff;
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  to { top: 40px; }
}

/* ===========================================================
   About
=========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

@media(max-width:900px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
}

.about-media { position: relative; }

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
}

.media-frame img {
  transition: transform .8s var(--ease);
}

.about-media:hover .media-frame img {
  transform: scale(1.06);
}

.media-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  box-shadow: var(--shadow-blue);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  color: #fff;
}

.badge-label {
  font-size: 12px;
  line-height: 1.3;
}

.about-copy p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 15.5px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0 34px;
}

@media(max-width:560px) {
  .about-pillars { grid-template-columns: 1fr; }
}

.pillar {
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}

.pillar:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(1, 91, 177, .35);
 box-shadow: 0 0px 15px -2px rgba(1, 73, 141, .12);
}

.pillar h4 {
  font-family: var(--font-head);
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 16px;
}

.pillar p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* ===========================================================
   Why Choose Us — glass cards on light
=========================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

@media(max-width:960px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-glass);
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(1, 91, 177, .35);
 box-shadow: 0 0px 15px -2px rgba(1, 73, 141, .12);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(1, 91, 177, .18), rgba(45, 127, 211, .10));
  border: 1px solid rgba(1, 91, 177, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 20px;
  transition: transform .4s var(--ease), background .4s, color .4s;
}

.why-card:hover .why-icon {
  transform: rotate(-6deg) scale(1.08);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================================================
   Glass card base + shine
=========================================================== */
.glass-card {
  position: relative;
  background: var(--glass-strong);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.dark-section .glass-card {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
}

/* Diagonal glass shine sweep on hover */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-18deg);
  transition: left .8s var(--ease);
  pointer-events: none;
  z-index: 3;
}

.glass-card:hover::before {
  left: 130%;
}

/* ===========================================================
   Projects carousel
=========================================================== */
.projects-carousel {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1320px;
  margin: 50px auto 0;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 6px 0 10px;
}

.carousel-viewport::-webkit-scrollbar { display: none; }

.carousel-track { display: flex; gap: 28px; }

.carousel-slide {
  flex: 0 0 calc(33.333% - 19px);
  scroll-snap-align: start;
}

@media(max-width:960px) { .carousel-slide { flex: 0 0 calc(50% - 14px); } }
@media(max-width:640px) { .carousel-slide { flex: 0 0 100%; } }

.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: .3s;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glass);
}

.carousel-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: var(--shadow-blue);
}

@media(max-width:640px) {
  .carousel-arrow { width: 38px; height: 38px; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  position: relative;
  z-index: 2;
}

.carousel-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: .35s;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background: var(--primary);
  width: 26px;
  border-radius: 6px;
}

.dark-section .carousel-dots .dot { background: var(--line-strong); }
.dark-section .carousel-dots .dot.active { background: var(--primary); }

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
 box-shadow: 0 0px 15px -2px rgba(1, 73, 141, .12);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.03);
 box-shadow: 0 0px 15px -2px rgba(1, 73, 141, .12);
  
}

.project-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.project-card:hover .project-img img {
  transform: scale(1.12);
}

.status-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 4;
}

/* Blue shades to differentiate statuses */
.status-badge.ongoing { background: var(--primary); }
.status-badge.completed { background: var(--primary-deep); }
.status-badge.upcoming {
  background: rgba(255, 255, 255, .7);
  color: var(--primary-dark);
  border: 1px solid rgba(1, 91, 177, .3);
}

.project-info { padding: 26px 26px 30px; }

.project-info h3 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.project-loc {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.project-loc i { color: var(--primary); margin-right: 4px; }

.project-desc {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-info .btn { width: 100%; }

/* ===========================================================
   Project Highlight
=========================================================== */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

@media(max-width:900px) {
  .highlight-grid { grid-template-columns: 1fr; gap: 40px; }
}

.highlight-copy p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 26px;
}

.highlight-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  margin-bottom: 34px;
}

.highlight-specs li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--primary);
  padding-left: 14px;
}

.highlight-specs span {
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

.highlight-specs strong {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--primary-dark);
}

.highlight-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.highlight-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 460px;
}

.highlight-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  transition: transform .6s var(--ease), box-shadow .4s;
}

.highlight-gallery img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-blue);
}

.g1 { grid-row: span 2; }

/* ===========================================================
   Founder
=========================================================== */
.founder{
  background: var(--primary);
    color: #fff;
}

.founder-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

@media(max-width:900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
}

.founder-portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
}

.founder-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(1, 45, 90, .35));
}

.founder-copy blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: #fff;
  line-height: 1.4;
  margin: 14px 0 24px;
  position: relative;
  padding-left: 22px;
  border-left: 3px solid #fff;
}

.founder-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14.5px;
}

.founder-title{
padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(1, 91, 177, .08);
    border: 1px solid rgb(255, 255, 255);
}

.founder-name{
  color: #fff !important;
}

.founder-copy p {
  color: #fff;
  line-height: 1.8;
  /* margin-bottom: 26px; */
      
}

.founder-timeline {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tl-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 2px solid rgb(0 172 255);
  padding-top: 10px;
  min-width: 130px;
  background: #cdd9f8;
    padding: 16px;
    border-radius: 5px;
}

.tl-year {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 18px;
}

.tl-item span:last-child {
  font-size: 14px;
  color: #000;
}

.founder-social { display: flex; gap: 12px; }

.founder-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: .3s;
}

.founder-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

/* ===========================================================
   Testimonials
=========================================================== */
.testi-carousel {
  max-width: 1320px;
  margin: 50px auto 0;
  padding: 0 20px;
  position: relative;
  
}

.testi-viewport {
  overflow: hidden;
  width: 100%;
}

.testi-viewport::-webkit-scrollbar { display: none; }

.testi-track { display: flex; }

.testi-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  padding: 6px;
}
/* Desktop - 3 Cards */
.testi-slide {
    flex: 0 0 calc((100% - 48px) / 2);
    box-sizing: border-box;
}

/* Tablet - 2 Cards */
@media (max-width: 991px) {
    .testi-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

/* Mobile - 1 Card */
@media (max-width: 767px) {
    .testi-slide {
        flex: 0 0 100%;
    }

    .testi-carousel {
        padding: 0 12px;
    }
}
.testi-card {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  /* box-shadow: var(--shadow-soft); */
}

.testi-photo {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 3px solid var(--primary-light);
  object-fit: cover;
}

.stars {
  color: var(--primary);
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-size: 16px;
}

.testi-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.testi-card strong {
  display: block;
  font-size: 15px;
  color: var(--primary-dark);
}

.testi-card span {
  font-size: 12.5px;
  color: var(--text-light);
}

/* ===========================================================
   Gallery
=========================================================== */
.gallery .container {
  text-align: center;
  margin-bottom: 10px;
}

.masonry {
  column-count: 4;
  column-gap: 16px;
  padding: 0 32px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media(max-width:900px) { .masonry { column-count: 2; } }
@media(max-width:520px) { .masonry { column-count: 1; } }

.masonry img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s, filter .5s;
  break-inside: avoid;
}

.masonry img:hover {
  transform: scale(1.02);
  filter: brightness(1.04);
  box-shadow: var(--shadow-blue);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(1, 45, 90, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 40px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

/* ===========================================================
   Location advantages
=========================================================== */
.loc-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 54px;
}

@media(max-width:960px) { .loc-timeline { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:560px) { .loc-timeline { grid-template-columns: repeat(2, 1fr); } }

.loc-item {
  text-align: center;
  padding: 30px 16px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow: var(--shadow-glass);
  transition: border-color .35s, transform .35s, box-shadow .35s;
}

.loc-item:hover {
  border-color: rgba(1, 91, 177, .35);
  transform: translateY(-6px) scale(1.03);
 box-shadow: 0 0px 15px -2px rgba(1, 73, 141, .12);
}

.loc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(1, 91, 177, .16), rgba(45, 127, 211, .08));
  border: 1px solid rgba(1, 91, 177, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 19px;
  transition: transform .4s var(--ease), background .4s, color .4s;
}

.loc-item:hover .loc-icon {
  transform: rotate(-6deg) scale(1.08);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
}

.loc-item h4 {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.loc-item p {
  font-size: 12.5px;
  color: var(--text-light);
}

/* ===========================================================
   Investment benefits
=========================================================== */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 54px;
  position: relative;
}

@media(max-width:960px) { .invest-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:560px) { .invest-grid { grid-template-columns: 1fr; } }

.invest-card {
  padding: 34px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow: var(--shadow-glass);
  transition: box-shadow .4s, transform .4s, border-color .4s;
  position: relative;
  overflow: hidden;
}

.invest-card:hover {
  transform: translateY(-8px) scale(1.03);
 box-shadow: 0 0px 15px -2px rgba(1, 73, 141, .12);
  border-color: rgba(1, 91, 177, .35);
}

.invest-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  color: rgba(1, 91, 177, .12);
  position: absolute;
  top: 12px;
  right: 20px;
}

.invest-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--primary-dark);
  margin-bottom: 10px;
  position: relative;
}

.invest-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
}

/* ===========================================================
   Stats band — rich blue (allowed) with glass texture
=========================================================== */
.stats-band {
  background: linear-gradient(180deg, #F4F9FF 0%, #EAF3FF 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.stats-band::before,
.stats-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.stats-band::before {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -40px;
  background: rgba(45, 127, 211, .20);
  animation: floatShape 18s var(--ease) infinite;
}

.stats-band::after {
  width: 260px;
  height: 260px;
  bottom: -90px;
  left: 8%;
  background: rgba(1, 91, 177, .16);
  animation: floatShape 22s var(--ease) infinite reverse;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  color: var(--text);
  position: relative;
  z-index: 2;
  border: 1px solid #fff;
  padding: 15px;
  margin-top: 20px;
}

.stat-line{
  border-right: 1px solid #fff;
}

@media(max-width:700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

.stat-block .counter,
.stat-block .plus {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
}

.stat-block .counter { font-size: clamp(30px, 4vw, 46px); }
.stat-block .plus { font-size: 28px; }

.stat-block p {
  margin-top: 6px;
  font-size: 13.5px;
  letter-spacing: .5px;
  color: #fff;
}

/* ===========================================================
   FAQ
=========================================================== */
.accordion {
  max-width: 820px;
  margin: 50px auto 0;
  position: relative;
  z-index: 2;
}

.acc-item {
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .35s, border-color .35s;
}

.acc-item.open {
  border-color: rgba(1, 91, 177, .3);
  box-shadow: var(--shadow-glass);
}

.acc-head {
  width: 100%;
  text-align: left;
  padding: 22px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-dark);
}

.acc-head i {
  transition: transform .35s;
  color: var(--primary);
  flex-shrink: 0;
}

.acc-item.open .acc-head i { transform: rotate(45deg); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}

.acc-body p {
  padding: 0 22px 22px;
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ===========================================================
   Contact
=========================================================== */
.contact-lead {
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 44px;
  align-items: stretch;
}

@media(max-width:900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: .35s;
}

.detail-item:hover {
  border-color: rgba(1, 91, 177, .35);
 box-shadow: 0 0px 15px -2px rgba(1, 73, 141, .12);
  transform: translateY(-3px) scale(1.01);
}

.detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(1, 91, 177, .18), rgba(45, 127, 211, .08));
  border: 1px solid rgba(1, 91, 177, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  transition: transform .4s var(--ease), background .4s, color .4s;
}

.detail-item:hover .detail-icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
}

.detail-item h4 {
  font-family: var(--font-head);
  font-size: 15.5px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.detail-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 340px;
  border: 1px solid var(--glass-border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(10%);
}

/* ===========================================================
   Footer — light blue gradient, glass, blue icons
=========================================================== */
.site-footer {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #eef7ff 55%, #dcecfb 100%);
  color: var(--text-light);
  padding-top: 90px;
  overflow: hidden;
  isolation: isolate;
}

.site-footer::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  top: -120px;
  right: -60px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(1, 91, 177, .18), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: floatShape 20s var(--ease) infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

@media(max-width:860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-text { color: var(--primary-dark); text-shadow: none; }
.footer-brand .logo-text em { color: var(--primary); }

.footer-brand p {
  margin: 18px 0 22px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: var(--text-light);
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.footer-col h4 {
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: .4px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--text-light);
  transition: color .3s, padding-left .3s;
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-col a i { color: var(--primary); width: 16px; }

.footer-bottom {
  text-align: center;
  padding: 26px 0;
  font-size: 13px;
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

/* ===========================================================
   Scroll to top
=========================================================== */
.float-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-light), var(--primary) 70%);
  box-shadow: var(--shadow-blue);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.9);
  transition: opacity .4s var(--ease), transform .4s var(--ease), box-shadow .3s, background .3s;
}

.float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.float-top:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark) 70%);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 18px 38px rgba(1, 91, 177, .45);
}

/* ===========================================================
   Floating contact widget (speed dial)
=========================================================== */
.fab-widget {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
 
.fab-main {
  position: relative;
  overflow: hidden;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(1, 91, 177, .40);
  transition: transform .4s var(--ease), background .4s, box-shadow .4s;
}

.fab-main:focus-visible {
  outline: 3px solid rgba(1, 91, 177, .35);
  outline-offset: 3px;
}

.fab-main .fa-plus,
.fab-main #fabIcon {
  transition: transform .4s var(--ease);
}
 
.fab-main:hover { transform: scale(1.08); box-shadow: 0 16px 36px rgba(1, 91, 177, .5); }
 
.fab-widget.open .fab-main {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  transform: rotate(45deg);
  box-shadow: 0 16px 40px rgba(1, 73, 141, .55);
}
 
.fab-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
 
.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-strong);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--glass-border);
  color: var(--primary-dark);
  padding: 10px 18px 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-glass);
  opacity: 0;
  transform: translateY(16px) scale(.85);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
 
.fab-option i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  background: var(--primary);
}
 
.fab-whatsapp i { background: var(--primary-light); }
.fab-call i { background: var(--primary); }
 
.fab-widget.open .fab-option {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
 
.fab-widget.open .fab-whatsapp { transition-delay: .05s; }
.fab-widget.open .fab-call { transition-delay: .12s; }
 
@media(max-width:640px) {
  .fab-widget { right: 18px; bottom: 88px; }
  .float-top { right: 18px; bottom: 26px; }
}

/* ===========================================================
   Scroll reveal
=========================================================== */
.reveal-up,
.reveal-fade,
.reveal-line {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-fade { transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(.88);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-up.in,
.reveal-fade.in,
.reveal-line.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-zoom.in {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Button ripple ---------- */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, .55);
  animation: rippleAnim .65s ease-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes rippleAnim {
  to { transform: scale(3); opacity: 0; }
}

.magnetic { will-change: transform; }

::selection {
  background: var(--primary);
  color: #fff;
}

/* ===========================================================
   PART 2 — Responsive, Alternating Sections & Client Revisions
   Single consolidated override layer (wins by source order).
=========================================================== */

html { overflow-x: hidden; }
body { font-size: 16px; }

/* ---------- Alternating section backgrounds (white / light-blue) ---------- */
.bg-white { background: #ffffff; }
.bg-tint  { background: linear-gradient(180deg, #F4F9FF 0%, #EAF3FF 100%); }

/* ---------- Hero: dark-blue overlay + bold, readable heading ---------- */
/* .hero-overlay {
  background:
    linear-gradient(to right, rgba(1, 45, 90, .84), rgba(1, 73, 141, .56)),
    linear-gradient(180deg, rgba(1, 45, 90, .42) 0%, rgba(1, 58, 112, .28) 50%, rgba(1, 45, 90, .82) 100%);
} */

.hero-title {
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  text-shadow: 0 2px 22px rgba(1, 29, 58, .5);
  font-size: 34px;
}
@media(min-width:480px)  { .hero-title { font-size: 38px; } }
@media(min-width:768px)  { .hero-title { font-size: 48px; } }
@media(min-width:1025px) { .hero-title { font-size: 60px; } }
@media(min-width:1600px) { .hero-title { font-size: 64px; } }

.hero-content .eyebrow { font-weight: 700; margin-bottom: 18px; }

/* ---------- Navigation: centered menu on desktop ---------- */
@media(min-width:1025px) {
  .header-inner { position: relative; }
  .main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile menu: stays above the fixed header; strong hamburger contrast */
@media(max-width:1024px) {
  .main-nav { z-index: 1050; }
  .nav-toggle span { background: #fff; box-shadow: 0 1px 3px rgba(1, 45, 90, .35); }
  .site-header.scrolled .nav-toggle span { background: var(--primary); box-shadow: none; }
}

/* ---------- Typography scale ---------- */
.section-title { font-size: 26px; }
@media(min-width:768px)  { .section-title { font-size: 34px; } }
@media(min-width:1025px) { .section-title { font-size: 44px; } }

@media(min-width:1025px) {
  .about-copy p,
  .founder-copy p,
  .highlight-copy p,
  .contact-lead,
  .testi-card p { font-size: 16px; }
}

/* ---------- Buttons: touch-friendly ---------- */
.btn { min-height: 48px; }
@media(max-width:560px) {
  .highlight-actions { width: 100%; }
  .highlight-actions .btn { flex: 1 1 100%; }
}

/* ---------- About media badge: contain on small screens ---------- */
@media(max-width:900px) { .about-media { margin-bottom: 28px; } }
@media(max-width:560px) {
  .media-badge { right: 10px; bottom: -16px; padding: 14px 18px; }
  .badge-num { font-size: 24px; }
}

/* ---------- Container padding on very small screens ---------- */
@media(max-width:400px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 30px 20px; margin: 0 14px; }
}

/* ---------- Footer: solid brand blue, white content ---------- */
.site-footer { background: var(--primary); color: #fff; }
.site-footer::before { background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 70%); }
.footer-grid { border-bottom-color: rgba(255, 255, 255, .22); }

.site-footer .logo-mark { background: #fff; color: var(--primary); box-shadow: none; }
.footer-brand .logo-text { color: #fff; text-shadow: none; }
.footer-brand .logo-text em { color: #cfe4fb; }
.footer-brand p { color: rgba(255, 255, 255, .85); }

.footer-col h4 { color: #fff; }
.footer-col a { color: rgba(255, 255, 255, .82); }
.footer-col a i { color: #fff; }
.footer-col a:hover { color: #fff; padding-left: 6px; }

.footer-social a {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .10);
  color: #fff;
}
.footer-social a:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(1, 45, 90, .4);
}

.footer-bottom {
  color: rgba(255, 255, 255, .72);
  border-top: 1px solid rgba(255, 255, 255, .15);
}

@media(max-width:520px) {
  .footer-grid { text-align: center; gap: 34px; }
  .footer-brand .logo { justify-content: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-col a { justify-content: center; }
}

/* ---------- Performance: lighten glass blur on mobile ---------- */
@media(max-width:767px) {
  .glass-card,
  .why-card,
  .invest-card,
  .loc-item,
  .pillar,
  .detail-item,
  .hero-content,
  .fab-option,
  .acc-item {
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
  }
  section::before,
  section::after { filter: blur(48px); opacity: .4; }
}


/* ===========================================================
   Reduced motion
=========================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  section::before,
  section::after,
  .hero::before,
  .hero::after,
  .stats-band::before,
  .stats-band::after,
  .site-footer::before {
    animation: none !important;
  }
}