  @import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

    :root {
      --bg: #f4f7fb;
      --bg-soft: #edf3f8;
      --surface: rgba(255, 255, 255, 0.82);
      --surface-strong: #ffffff;
      --text: #122033;
      --muted: #66758a;
      --line: rgba(18, 32, 51, 0.1);
      --primary: #0f62fe;
      --primary-deep: #093ea7;
      --accent: #ff9b52;
      --success: #0d8b63;
      --shadow-lg: 0 30px 70px rgba(20, 45, 78, 0.12);
      --shadow-md: 0 18px 36px rgba(20, 45, 78, 0.08);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(15, 98, 254, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 155, 82, 0.14), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #eef3f8 55%, #f4f7fb 100%);
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .topbar {
      position: relative;
      z-index: 101;
      background: rgba(36, 50, 74, 0.92);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 10px;
      font-size: 14px;
      color: rgba(246, 249, 255, 0.9);
    }

    .topbar-list {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .topbar-list li {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }

    .topbar-dot {
      flex: 0 0 auto;
    }

    .topbar a {
      color: rgba(255, 255, 255, 0.92);
      font-weight: 600;
    }

    .topbar a:hover,
    .topbar a:focus-visible {
      color: #ffffff;
      outline: none;
    }

    .topbar-note {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      color: rgba(255, 255, 255, 0.94);
      font-weight: 500;
      white-space: nowrap;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.97);
      border-bottom: 1px solid rgba(28, 44, 72, 0.08);
      backdrop-filter: blur(14px);
      box-shadow: 0 10px 24px rgba(20, 45, 78, 0.05);
    }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
      min-height: 85px;
    }

    .logo {
      display: inline-flex;
      align-items: baseline;
      gap: 12px;
      font-size: 30px;
      font-weight: 800;
      letter-spacing: -0.03em;
      flex-shrink: 0;
      line-height: 1;
    }

    .logo-mark {
      color: #355f9d;
    }

    .logo-accent {
      color: #2f6ff2;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
      flex: 1;
    }

    .nav-links a {
      position: relative;
      color: #111827;
      font-size: 0.98rem;
      font-weight: 800;
      transition: color 180ms ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary) 0%, #58a6ff 100%);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 180ms ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: #2f6ff2;
      outline: none;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
      transform: scaleX(1);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 22px;
      border-radius: 999px;
      font-size: 0.98rem;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(18, 32, 51, 0.1);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--text);
      font-size: 1.2rem;
      line-height: 1;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page-shell {
      position: relative;
      overflow: hidden;
    }

    .page-shell::before,
    .page-shell::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      filter: blur(10px);
      pointer-events: none;
      z-index: 0;
    }

    .page-shell::before {
      width: 380px;
      height: 380px;
      top: -120px;
      right: -120px;
      background: radial-gradient(circle, rgba(15, 98, 254, 0.18) 0%, rgba(15, 98, 254, 0) 72%);
    }

    .page-shell::after {
      width: 320px;
      height: 320px;
      left: -100px;
      bottom: 120px;
      background: radial-gradient(circle, rgba(255, 155, 82, 0.2) 0%, rgba(255, 155, 82, 0) 72%);
    }

    .section {
      position: relative;
      z-index: 1;
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 25px 0;
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }

    .hero-copy {
      display: grid;
      gap: 38px;
    }

    .eyebrow-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(15, 98, 254, 0.14);
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(16px);
      color: #31527c;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 10px 24px rgba(21, 48, 82, 0.05);
    }

    .hero h1 {
      margin: 0;
      font-family: "Fraunces", serif;
      font-size: clamp(1.7rem, 5vw, 2.6rem);
      line-height: 0.96;
      letter-spacing: -0.04em;
    }

    .hero p {
      margin: 0;
      max-width: 60ch;
      color: var(--muted);
      font-size: 1.03rem;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 20px;
      border-radius: 999px;
      font-weight: 800;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      color: #f8fbff;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
      box-shadow: 0 18px 32px rgba(15, 98, 254, 0.24);
    }

    .button-secondary {
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(18, 32, 51, 0.12);
      color: var(--text);
      backdrop-filter: blur(16px);
    }

    .hero-panel {
      display: grid;
      gap: 16px;
      padding: 22px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.66)),
        linear-gradient(145deg, rgba(15, 98, 254, 0.08), rgba(255, 155, 82, 0.08));
      border: 1px solid rgba(255, 255, 255, 0.55);
      box-shadow: var(--shadow-lg);
      backdrop-filter: blur(20px);
    }

    .hero-panel-label {
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #69809e;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .hero-metric {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(18, 32, 51, 0.08);
    }

    .hero-metric strong {
      display: block;
      font-size: 20px;
      line-height: 1;
      margin-bottom: 7px;
    }

    .hero-metric span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .main-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.92fr);
      gap: 26px;
      align-items: start;
    }

    .stack {
      display: grid;
      gap: 24px;
    }

    .card {
      border-radius: var(--radius-xl);
      background: var(--surface);
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(18px);
      overflow: hidden;
    }

    .card-body {
      padding: 28px;
    }

    .section-title {
      margin: 0 0 18px;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .lead-text {
      margin: 0;
      color: #506174;
      line-height: 1.9;
	  text-align:justify;
    }

    .overview-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 26px;
      align-items: stretch;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      padding: 20px;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
      border: 1px solid rgba(15, 98, 254, 0.08);
    }

    .timeline-item {
      padding: 24px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.46);
      border: 1px solid rgba(15, 98, 254, 0.1);
      min-height: 100%;
    }

    .timeline-item small {
      display: block;
      margin-bottom: 6px;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #0775fe;
    }

    .timeline-item strong {
      display: block;
      margin-bottom: 6px;
      font-size: 12px;
    }

    .timeline-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      font-size: 13px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.78fr);
      gap: 24px;
      align-items: stretch;
      grid-column: 1 / -1;
    }

    .feature-card {
      padding: 10px;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.95));
      border: 1px solid rgba(18, 32, 51, 0.08);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(15, 98, 254, 0.22);
      box-shadow: 0 20px 34px rgba(15, 44, 86, 0.08);
    }

    .feature-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      color: #ffffff;
      font-size: 1.2rem;
      background: linear-gradient(135deg, var(--primary) 0%, #2c89ff 100%);
      box-shadow: 0 12px 24px rgba(15, 98, 254, 0.22);
    }

    .feature-card strong {
      display: block;
      margin-bottom: 8px;
      font-size: 1rem;
    }

    .feature-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
      font-size: 0.92rem;
    }

    .results-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
    }

    .results-card .results-strip {
      grid-template-columns: 1fr;
      margin-top: 0;
    }

    .results-card .result-card {
      min-height: 0;
    }

    .result-card {
      padding: 24px;
      border-radius: var(--radius-lg);
      color: #f8fbff;
      background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 36%),
        linear-gradient(145deg, #123d83 0%, #0f62fe 52%, #2e8cff 100%);
      box-shadow: 0 24px 40px rgba(15, 72, 170, 0.18);
    }

    .result-card:nth-child(2) {
      background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 36%),
        linear-gradient(145deg, #0c5c68 0%, #11999f 52%, #35b7be 100%);
    }

    .result-card:nth-child(3) {
      background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 36%),
        linear-gradient(145deg, #9b4b12 0%, #ff9b52 52%, #ffb26d 100%);
    }

    .result-card h3 {
      margin: 0 0 8px;
          font-size: clamp(1rem, 4vw, 1.6rem);
      line-height: 1;
    }

    .result-card p {
      margin: 0;
      color: #fff;
      line-height: 1.55;
    }

    .aside {
      display: grid;
      gap: 20px;
      position: sticky;
      top: 24px;
    }

    .preview-media {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 22px;
      margin-bottom: 18px;
    }

    .preview-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 500ms ease;
    }

    .card:hover .preview-media img,
    .gallery-card:hover img {
      transform: scale(1.05);
    }

    .preview-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(9, 20, 35, 0.02), rgba(9, 20, 35, 0.5));
    }

    .preview-chip {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 1;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      color: #183252;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .preview-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
    }

    .preview-footer strong {
      display: block;
      font-size: 1.05rem;
	      margin-bottom: 10px;
    font-weight: 800;
    }

    .preview-footer span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .project-info {
      display: grid;
      gap: 20px;
    }

    .project-info-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 11px 16px;
      border-radius: 16px;
      background: rgba(247, 250, 253, 0.92);
      border: 1px solid rgba(18, 32, 51, 0.07);
    }

    .project-info-item span {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .project-info-item strong {
      font-size: 0.96rem;
      text-align: right;
    }

    .gallery-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    .gallery-head p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .gallery-card {
      position: relative;
      overflow: hidden;
      min-height: 320px;
      border-radius: 24px;
      box-shadow: var(--shadow-md);
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 500ms ease;
    }

    .gallery-overlay {
      position: absolute;
      inset: auto 0 0;
      padding: 20px;
      color: #f8fbff;
      background: linear-gradient(180deg, rgba(10, 18, 30, 0) 0%, rgba(10, 18, 30, 0.82) 100%);
    }

    .gallery-overlay small {
      display: block;
      margin-bottom: 6px;
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(248, 251, 255, 0.74);
    }

    .gallery-overlay strong {
      display: block;
      margin-bottom: 6px;
      font-size: 1.02rem;
    }

    .gallery-overlay span {
      font-size: 0.9rem;
      line-height: 1.55;
      color: rgba(248, 251, 255, 0.8);
    }

    footer {
      margin-top: 48px;
      background:
        linear-gradient(180deg, #12213a 0%, #0d172a 100%);
      color: rgba(239, 245, 255, 0.78);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 78px;
      padding: 14px 0;
    }

    .footer-brand {
      color: #f8fbff;
      font-size: 0.95rem;
      font-weight: 700;
    }

    .footer-right {
      text-align: right;
      font-size: 0.92rem;
      color: #fff;
    }

    @media (max-width: 1024px) {
      .hero,
      .main-grid,
      .overview-grid,
      .highlights-grid {
        grid-template-columns: 1fr;
      }

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

      .aside {
        position: static;
      }

      .feature-grid,
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .navbar {
        min-height: 78px;
      }

      .topbar-inner {
        min-height: 44px;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
        order: 3;
      }

      .navbar > .btn {
        display: none;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        gap: 0;
        padding: 10px;
        border-radius: 22px;
        border: 1px solid rgba(18, 32, 51, 0.08);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 24px 42px rgba(20, 45, 78, 0.12);
        backdrop-filter: blur(18px);
      }

      .nav-links.is-open {
        display: grid;
      }

      .nav-links a {
        display: block;
        padding: 12px 14px;
        border-radius: 14px;
      }

      .nav-links a::after {
        display: none;
      }

      .nav-links a:hover,
      .nav-links a:focus-visible {
        background: #f1f6fd;
      }
    }

    @media (max-width: 640px) {
      .section {
        width: min(100% - 22px, 1180px);
        padding: 48px 0;
      }

      .card-body {
        padding: 22px;
      }

      .hero {
        margin-bottom: 26px;
      }

      .hero-actions,
      .preview-footer,
      .gallery-head {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-metrics,
      .feature-grid,
      .results-strip,
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .project-info-item {
        flex-direction: column;
        align-items: flex-start;
      }

      .project-info-item strong {
        text-align: left;
      }

      .gallery-card {
        min-height: 260px;
      }

      .container {
        width: min(100% - 22px, 1180px);
      }

      .topbar-note {
        display: none;
      }

      .topbar-list {
        gap: 12px;
      }

      .navbar {
        gap: 12px;
      }

      .logo {
        font-size: 1.6rem;
      }

      .footer-grid {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-right {
        text-align: left;
      }
    }
	.logo, h1, h2, h3 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.04em;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(249, 115, 22, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}
