* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #f6fafc;
  --white: #ffffff;
  --navy: #102c44;
  --navy-soft: rgba(16, 44, 68, 0.72);
  --blue: #2f80c7;
  --cyan: #66d3f0;
  --light: #eaf5fb;
  --line: rgba(17, 64, 97, 0.1);
  --shadow: 0 20px 48px rgba(14, 48, 76, 0.08);
}

body {
  font-family: 'Montserrat', sans-serif;
  background:
    radial-gradient(circle at top, rgba(102, 211, 240, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #f4f9fc 36%, #ffffff 100%);
  color: var(--navy);
  overflow-x: hidden;
}

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

.section-shell {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.dev-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(234, 245, 251, 0.86);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.dev-nav.hide-nav {
  transform: translateY(-110%);
}

.dev-nav-inner {
  width: min(1280px, 92%);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dev-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.dev-brand-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47,128,199,0.14), rgba(102,211,240,0.2));
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(47,128,199,0.1);
}

.dev-brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.dev-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.dev-brand-top {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(16,44,68,0.68);
  margin-bottom: 6px;
}

.dev-brand-bottom {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}

.dev-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.dev-links a,
.dev-mobile-menu a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.dev-links a:hover,
.dev-mobile-menu a:hover {
  color: var(--blue);
}

.dev-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.dev-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 20px;
}

.dev-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 0 4% 22px;
  background: rgba(234, 245, 251, 0.97);
}

.dev-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(102,211,240,0.18), transparent 22%),
    radial-gradient(circle at 80% 24%, rgba(47,128,199,0.14), transparent 26%),
    linear-gradient(180deg, #edf8ff 0%, #dff0fa 44%, #f6fbff 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,44,68,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,44,68,0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 92%);
  z-index: 0;
}

.hero-glow,
.hero-lines,
.hero-orbit {
  position: absolute;
  pointer-events: none;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.5;
  z-index: 0;
}

.hero-glow-1 {
  width: 300px;
  height: 300px;
  top: 14%;
  left: 10%;
  background: rgba(102,211,240,0.42);
  animation: glowFloat 9s ease-in-out infinite;
}

.hero-glow-2 {
  width: 360px;
  height: 360px;
  right: 6%;
  bottom: 10%;
  background: rgba(47,128,199,0.22);
  animation: glowFloat 12s ease-in-out infinite reverse;
}

.hero-lines {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(47,128,199,0.12);
  z-index: 0;
}

.hero-lines::before,
.hero-lines::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(47,128,199,0.14);
}

.hero-lines::after {
  inset: 50px;
}

.hero-lines-1 {
  top: -90px;
  right: -80px;
  animation: slowRotate 28s linear infinite;
}

.hero-lines-2 {
  bottom: -110px;
  left: -100px;
  animation: slowRotate 36s linear infinite reverse;
}

.hero-orbit {
  border: 1px solid rgba(16,44,68,0.08);
  border-radius: 50%;
  z-index: 0;
}

.orbit-1 {
  width: 620px;
  height: 620px;
  right: -120px;
  top: 50px;
}

.orbit-2 {
  width: 440px;
  height: 440px;
  left: -90px;
  bottom: -100px;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-copy h1,
.section-heading h2,
.industrial-copy h2,
.hospital-left h2,
.cta-card h2 {
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
}

.hero-copy h1 {
  margin-top: 14px;
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: -0.04em;
  max-width: 720px;
}

.hero-copy p,
.section-copy p,
.section-intro,
.industrial-copy p,
.residence-content p,
.hospital-left p,
.hospital-point span,
.cta-card p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--navy-soft);
}

.hero-copy p {
  margin: 22px 0 28px;
  max-width: 640px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-pill,
.content-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(47,128,199,0.14);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f80c7 0%, #174f8c 100%);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(23,79,140,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(23,79,140,0.22);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.city-core {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.9), rgba(234,245,251,0.86)),
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(230,243,251,0.92));
  border: 1px solid rgba(47,128,199,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.city-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(47,128,199,0.14);
}

.ring-1 { inset: 60px; animation: slowRotate 24s linear infinite; }
.ring-2 { inset: 105px; border-style: dashed; animation: slowRotate 30s linear infinite reverse; }
.ring-3 { inset: 155px; animation: slowRotate 18s linear infinite; }

.city-cluster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.tower {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  border-radius: 20px 20px 8px 8px;
  background: linear-gradient(180deg, #8ed4f0 0%, #3478b1 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
}

.tower::before {
  content: "";
  position: absolute;
  inset: 8px 8px 10px;
  background-image: linear-gradient(rgba(255,255,255,0.55) 2px, transparent 2px);
  background-size: 100% 16px;
  opacity: 0.5;
}

.tower-1 { width: 44px; height: 180px; margin-left: -82px; }
.tower-2 { width: 54px; height: 230px; margin-left: -26px; }
.tower-3 { width: 62px; height: 280px; margin-left: 44px; }
.tower-4 { width: 36px; height: 150px; margin-left: 110px; }
.tower-5 { width: 34px; height: 116px; margin-left: -132px; }
.tower-6 { width: 28px; height: 90px; margin-left: 150px; }

.data-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #66d3f0;
  box-shadow: 0 0 0 0 rgba(102,211,240,0.45);
  animation: pulseNode 2.4s ease-out infinite;
}

.pulse-1 { top: 24%; left: 24%; }
.pulse-2 { top: 22%; right: 25%; animation-delay: 0.5s; }
.pulse-3 { bottom: 26%; left: 18%; animation-delay: 1s; }
.pulse-4 { right: 20%; bottom: 23%; animation-delay: 1.5s; }

.signal-card {
  position: absolute;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(47,128,199,0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 28px rgba(16,44,68,0.08);
}

.signal-card strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.signal-card span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(16,44,68,0.64);
}

.card-1 { top: 16%; left: 9%; animation: floatY 5.5s ease-in-out infinite; }
.card-2 { top: 16%; right: 7%; animation: floatY 6.5s ease-in-out infinite 0.8s; }
.card-3 { bottom: 14%; right: 16%; animation: floatY 5.8s ease-in-out infinite 1.2s; }

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(16,44,68,0.26);
  border-radius: 999px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: var(--blue);
  animation: scrollDot 2s infinite;
}

.dev-section {
  position: relative;
  padding: 110px 0;
}

.two-col,
.industrial-shell,
.hospital-shell {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.intro-grid {
  align-items: start;
}

.section-heading h2,
.industrial-copy h2,
.hospital-left h2,
.cta-card h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.section-heading h2 {
  margin-top: 14px;
}

.section-heading.center {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}

.section-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.intro-section {
  background: linear-gradient(180deg, rgba(234,245,251,0.68), rgba(255,255,255,0));
}

.industrial-section {
  background:
    radial-gradient(circle at 16% 22%, rgba(102,211,240,0.10), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.industrial-copy p {
  margin-top: 16px;
}

.feature-list {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.feature-item,
.hospital-point {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(16,44,68,0.05);
}

.feature-item strong,
.hospital-point strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-item span,
.hospital-point span {
  display: block;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.8;
}

.industrial-board {
  position: relative;
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(236,247,253,0.9));
  border: 1px solid rgba(47,128,199,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 640px;
}

.board-glow {
  position: absolute;
  inset: auto auto -100px -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(102,211,240,0.16);
  filter: blur(22px);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: -30%;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(102,211,240,0.18), transparent);
  animation: scanSweep 4.4s linear infinite;
}

.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #66d3f0;
  box-shadow: 0 0 0 0 rgba(102,211,240,0.42);
  animation: pulseNode 2.8s ease-out infinite;
  z-index: 1;
}

.node-1 { top: 18%; left: 12%; }
.node-2 { top: 24%; right: 18%; animation-delay: 0.6s; }
.node-3 { bottom: 20%; left: 20%; animation-delay: 1.2s; }
.node-4 { bottom: 28%; right: 12%; animation-delay: 1.8s; }

.connector {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(102,211,240,0), rgba(47,128,199,0.3), rgba(102,211,240,0));
  z-index: 1;
}

.connector-1 { top: 23%; left: 16%; width: 180px; transform: rotate(18deg); }
.connector-2 { top: 52%; left: 18%; width: 220px; transform: rotate(-14deg); }
.connector-3 { top: 46%; right: 12%; width: 180px; transform: rotate(24deg); }

.industrial-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  z-index: 2;
}

.industrial-card,
.residence-feature,
.hospital-card,
.cta-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.industrial-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.industrial-card.large {
  grid-row: span 2;
  min-height: 590px;
}

.industrial-card:not(.large) {
  min-height: 286px;
}

.industrial-card img,
.residence-image-wrap img,
.hospital-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay,
.hospital-card-content {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
}

.card-overlay span,
.hospital-card-content span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.floating-card,
.float-y {
  animation: floatY 5.8s ease-in-out infinite;
}

.delay-a { animation-delay: 0.8s; }
.delay-b { animation-delay: 1.4s; }

.residence-section {
  background:
    radial-gradient(circle at top center, rgba(102,211,240,0.09), transparent 24%),
    #f7fbff;
}

.residence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.residence-feature {
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.residence-feature:hover,
.hospital-card:hover,
.feature-item:hover,
.hospital-point:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(16,44,68,0.12);
}

.residence-image-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #e9f4fb, #f8fcff);
}

.shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-16deg);
  animation: shimmer 5.2s ease-in-out infinite;
}

.residence-content {
  padding: 28px 24px 30px;
}

.residence-content h3 {
  margin: 16px 0 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.hospital-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.hospital-left p {
  margin-top: 16px;
}

.hospital-points {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.hospital-stack {
  position: relative;
  min-height: 640px;
}

.hospital-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hospital-card-main {
  left: 0;
  top: 76px;
  width: 56%;
  height: 470px;
  z-index: 2;
}

.hospital-card-top {
  right: 0;
  top: 0;
  width: 50%;
  height: 250px;
}

.hospital-card-bottom {
  right: 0;
  bottom: 0;
  width: 50%;
  height: 250px;
}






/* ===== RAWANG PROJECT SECTION ===== */

.project-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8f3 100%);
}

.project-gallery {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}

.project-card {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}




.project-desc {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #4e534f;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}









.upcoming-dev-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(62, 149, 53, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(36, 120, 58, 0.16), transparent 35%),
    linear-gradient(135deg, #07110a 0%, #0d1b11 45%, #122117 100%);
  padding: 120px 24px;
}

.upcoming-dev-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.upcoming-dev-card {
  position: relative;
  overflow: hidden;
  padding: 60px 52px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(190, 255, 190, 0.13);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.upcoming-dev-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: skewX(-20deg);
  animation: shimmerSweep 5.8s linear infinite;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(217, 239, 122, 0.12);
  border: 1px solid rgba(217, 239, 122, 0.28);
  color: #efff9f;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: pulseBadge 2.4s ease-in-out infinite;
}

.section-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: #9dd8aa;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.upcoming-dev-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  color: #ffffff;
  font-weight: 700;
  max-width: 780px;
}

.upcoming-dev-location {
  margin-bottom: 24px;
  color: #d9ef7a;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.upcoming-dev-text {
  max-width: 860px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.9;
}

.upcoming-dev-text strong {
  color: #ffffff;
  font-weight: 700;
}

.upcoming-dev-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.info-block {
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.info-block:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 239, 122, 0.28);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.info-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-value {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 600;
}

.info-value.highlight {
  color: #d9ef7a;
}

.upcoming-dev-bottom {
  margin-top: 10px;
}

.coming-line-wrap {
  width: 100%;
  height: 2px;
  margin-bottom: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.coming-line {
  display: block;
  width: 180px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #d9ef7a, transparent);
  animation: movingLine 3s linear infinite;
}

.upcoming-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.96rem;
  line-height: 1.8;
}

/* background animated lines */
.upcoming-dev-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(217, 239, 122, 0.2), transparent);
  opacity: 0.45;
}

.line-1 {
  top: 14%;
  left: -10%;
  width: 40%;
  height: 1px;
  animation: driftLine 8s linear infinite;
}

.line-2 {
  top: 34%;
  right: -15%;
  width: 34%;
  height: 1px;
  animation: driftLineReverse 10s linear infinite;
}

.line-3 {
  bottom: 26%;
  left: -10%;
  width: 28%;
  height: 1px;
  animation: driftLine 11s linear infinite;
}

.line-4 {
  bottom: 12%;
  right: -10%;
  width: 42%;
  height: 1px;
  animation: driftLineReverse 9s linear infinite;
}

.floating-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9ef7a;
  box-shadow: 0 0 18px rgba(217, 239, 122, 0.65);
  opacity: 0.45;
}

.dot-1 {
  top: 18%;
  left: 14%;
  animation: floatDot 6s ease-in-out infinite;
}

.dot-2 {
  top: 32%;
  right: 18%;
  animation: floatDot 7s ease-in-out infinite 1s;
}

.dot-3 {
  bottom: 24%;
  left: 24%;
  animation: floatDot 8s ease-in-out infinite 0.8s;
}

.dot-4 {
  bottom: 18%;
  right: 15%;
  animation: floatDot 6.5s ease-in-out infinite 1.5s;
}

.dot-5 {
  top: 50%;
  left: 50%;
  animation: floatDot 7.5s ease-in-out infinite 0.5s;
}

/* reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* animations */
@keyframes shimmerSweep {
  0% {
    left: -45%;
  }
  100% {
    left: 140%;
  }
}

@keyframes pulseBadge {
  0%, 100% {
    box-shadow: 0 0 0 rgba(217, 239, 122, 0);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 22px rgba(217, 239, 122, 0.18);
    transform: scale(1.03);
  }
}

@keyframes movingLine {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(1100px);
  }
}

@keyframes driftLine {
  0% {
    transform: translateX(0);
    opacity: 0.15;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(180px);
    opacity: 0.15;
  }
}

@keyframes driftLineReverse {
  0% {
    transform: translateX(0);
    opacity: 0.12;
  }
  50% {
    opacity: 0.45;
  }
  100% {
    transform: translateX(-160px);
    opacity: 0.12;
  }
}

@keyframes floatDot {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-14px) scale(1.18);
    opacity: 0.85;
  }
}

/* responsive */
@media (max-width: 991px) {
  .upcoming-dev-card {
    padding: 46px 30px;
  }

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

@media (max-width: 640px) {
  .upcoming-dev-section {
    padding: 90px 18px;
  }

  .upcoming-dev-card {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .upcoming-dev-info {
    grid-template-columns: 1fr;
  }

  .upcoming-dev-card h2 {
    font-size: 2rem;
  }

  .upcoming-dev-text {
    font-size: 0.98rem;
    line-height: 1.8;
  }
}
/* ===============================
   IMAGE LIGHTBOX
   =============================== */

.img-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
}

.img-lightbox.active {
  display: flex;
}

.img-lightbox-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

.img-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.img-close:hover {
  opacity: 0.7;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}





















































.cta-section {
  padding-top: 70px;
}

.cta-card {
  text-align: center;
  padding: 70px 28px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(102,211,240,0.12), rgba(255,255,255,0.96) 70%),
    #ffffff;
}

.cta-card h2 {
  margin: 14px 0 16px;
}

.cta-card p {
  max-width: 760px;
  margin: 0 auto 28px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

@keyframes glowFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}

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

@keyframes pulseNode {
  0% { box-shadow: 0 0 0 0 rgba(102,211,240,0.42); }
  100% { box-shadow: 0 0 0 16px rgba(102,211,240,0); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

@keyframes scanSweep {
  0% { top: -34%; }
  100% { top: 100%; }
}

@keyframes shimmer {
  0%, 100% { left: -150%; }
  45%, 60% { left: 140%; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1100px) {
  .hero-shell,
  .two-col,
  .industrial-shell,
  .hospital-shell,
  .residence-grid {
    grid-template-columns: 1fr;
  }

  .hospital-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hospital-card {
    position: relative;
    width: 100%;
    height: 320px;
    inset: auto;
  }

  .hospital-card-main {
    grid-column: span 2;
    height: 420px;
  }
}

@media (max-width: 860px) {
  .dev-links {
    display: none;
  }

  .dev-menu-toggle {
    display: block;
  }

  .dev-mobile-menu.active {
    display: flex;
  }

  .dev-hero {
    padding-top: 132px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 10vw, 60px);
  }

  .industrial-gallery,
  .hospital-stack {
    grid-template-columns: 1fr;
  }

  .industrial-card.large,
  .hospital-card-main {
    min-height: 340px;
    height: 340px;
    grid-row: auto;
    grid-column: auto;
  }

  .industrial-card:not(.large),
  .hospital-card,
  .residence-image-wrap {
    height: 280px;
  }

  .city-core {
    width: min(420px, 100%);
  }
}

@media (max-width: 560px) {
  .dev-nav-inner {
    min-height: 76px;
  }

  .dev-brand-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .dev-brand-logo {
    width: 28px;
    height: 28px;
  }

  .dev-brand-bottom {
    font-size: 18px;
  }

  .dev-section {
    padding: 85px 0;
  }

  .industrial-board,
  .residence-feature,
  .hospital-card,
  .cta-card,
  .city-core {
    border-radius: 22px;
  }

  .signal-card {
    display: none;
  }
}













/* =========================================================
   IMAGE SIZE / LAYOUT FIX FOR ALL SCREEN TYPES
   RAWANG SECTION NOT TOUCHED
   ========================================================= */


/* ===============================
   DESKTOP
   =============================== */

/* AI / INDUSTRIAL */
.industrial-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.industrial-card {
  overflow: hidden;
}

.industrial-card.large {
  min-height: unset;
  height: 380px;
}

.industrial-card:not(.large) {
  min-height: unset;
  height: 182px;
}

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

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

.residence-image-wrap {
  height: 220px;
  overflow: hidden;
}

.residence-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.residence-content {
  padding: 20px 18px 22px;
}

/* HOSPITAL */
.hospital-stack {
  position: relative;
  min-height: 520px;
}

.hospital-card-main {
  height: 360px;
}

.hospital-card-top,
.hospital-card-bottom {
  height: 170px;
}

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


/* ===============================
   LAPTOP
   =============================== */
@media (max-width: 1200px) {

  /* AI / INDUSTRIAL */
  .industrial-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .industrial-card.large {
    height: 320px;
  }

  .industrial-card:not(.large) {
    height: 153px;
  }

  /* RESIDENCE */
  .residence-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .residence-image-wrap {
    height: 190px;
  }

  .residence-content {
    padding: 18px 16px 20px;
  }

  /* HOSPITAL */
  .hospital-stack {
    min-height: 470px;
  }

  .hospital-card-main {
    height: 320px;
  }

  .hospital-card-top,
  .hospital-card-bottom {
    height: 150px;
  }
}


/* ===============================
   TABLET
   =============================== */
@media (max-width: 991px) {

  /* AI / INDUSTRIAL */
  .industrial-board {
    padding: 16px;
    min-height: auto;
  }

  .industrial-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industrial-card.large,
  .industrial-card:not(.large) {
    height: 190px;
  }

  .industrial-card.large {
    grid-row: auto;
  }

  /* RESIDENCE */
  .residence-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .residence-image-wrap {
    height: 155px;
  }

  .residence-content {
    padding: 16px 14px 18px;
  }

  .residence-content h3 {
    font-size: 20px;
    margin: 12px 0 8px;
  }

  /* HOSPITAL */
  .hospital-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hospital-card,
  .hospital-card-main,
  .hospital-card-top,
  .hospital-card-bottom {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hospital-card-main {
    grid-column: 1 / -1;
    height: 240px;
  }

  .hospital-card-top,
  .hospital-card-bottom {
    height: 145px;
  }
}


/* ===============================
   PHONE
   =============================== */
@media (max-width: 767px) {

  /* AI / INDUSTRIAL */
  .industrial-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .industrial-board {
    padding: 12px;
    min-height: auto;
    border-radius: 20px;
  }

  .industrial-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .industrial-card.large,
  .industrial-card:not(.large) {
    height: 150px;
    border-radius: 16px;
  }

  .industrial-card img {
    object-fit: cover;
    object-position: center;
  }

  /* RESIDENCE */
  .residence-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .residence-feature {
    border-radius: 18px;
    overflow: hidden;
  }

  .residence-image-wrap {
    height: 145px;
  }

  .residence-image-wrap img {
    object-fit: cover;
    object-position: center;
  }

  .residence-content {
    padding: 14px 14px 16px;
  }

  .residence-content h3 {
    font-size: 18px;
    margin: 10px 0 8px;
  }

  /* HOSPITAL */
  .hospital-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hospital-stack {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hospital-card,
  .hospital-card-main,
  .hospital-card-top,
  .hospital-card-bottom {
    height: 145px;
    border-radius: 16px;
  }
}


/* ===============================
   SMALL PHONE
   =============================== */
@media (max-width: 480px) {

  /* AI / INDUSTRIAL */
  .industrial-card.large,
  .industrial-card:not(.large) {
    height: 130px;
  }

  /* RESIDENCE */
  .residence-image-wrap {
    height: 130px;
  }

  .residence-content {
    padding: 12px 12px 14px;
  }

  .residence-content h3 {
    font-size: 17px;
  }

  /* HOSPITAL */
  .hospital-card,
  .hospital-card-main,
  .hospital-card-top,
  .hospital-card-bottom {
    height: 130px;
  }
}