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

:root {
  --blue: #0878c9;
  --blue-dark: #075a97;
  --gold: #efad4c;
  --gold-light: #ffd27a;
  --ink: #20252b;
  --muted: #737b85;
  --line: rgba(24, 43, 58, .09);
  --surface: rgba(255,255,255,.82);
  --shadow: 0 22px 60px rgba(25, 61, 88, .10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 0%, rgba(8,120,201,.08), transparent 32%),
    radial-gradient(circle at 5% 42%, rgba(239,173,76,.07), transparent 28%),
    #fbfcfd;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .22;
  z-index: -1;
}

.glow-one { background: #3db3ff; top: 5%; right: -180px; }
.glow-two { background: #f7bf62; bottom: 5%; left: -180px; }

.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 22px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 250px;
  height: auto;
  display: block;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transition: .25s ease;
}

.nav-cta:hover {
  border-color: rgba(8,120,201,.25);
  transform: translateY(-2px);
}

.nav-cta span { color: var(--blue); font-size: 17px; }

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 125px 0 90px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 65px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: .1px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239,173,76,.13);
}

h1 {
  font-size: clamp(43px, 5.2vw, 72px);
  line-height: 1.18;
  letter-spacing: -2px;
  font-weight: 800;
}

h1 strong {
  color: var(--blue);
  font-weight: 800;
}

.hero-copy > p {
  max-width: 590px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--ink);
  color: white;
  border-radius: 12px;
  padding: 14px 21px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(32,37,43,.14);
  transition: .25s ease;
}

.hero-button span {
  color: var(--gold-light);
  font-size: 20px;
  line-height: 1;
}

.hero-button:hover {
  transform: translateY(-3px);
  background: var(--blue);
}

.hero-art {
  height: 420px;
  position: relative;
  display: grid;
  place-items: center;
}

.art-ring {
  position: absolute;
  border: 1px solid rgba(8,120,201,.14);
  border-radius: 50%;
}

.ring-a { width: 410px; height: 410px; }
.ring-b { width: 300px; height: 300px; border-color: rgba(239,173,76,.22); }

.art-card {
  width: 285px;
  height: 345px;
  border-radius: 28px;
  padding: 28px;
  color: white;
  position: relative;
  overflow: hidden;
  transform: rotate(5deg);
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), transparent 50%),
    linear-gradient(155deg, #0878c9, #064e83);
  box-shadow: 30px 35px 70px rgba(8, 91, 151, .25);
}

.art-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 35px solid rgba(255,255,255,.08);
  border-radius: 50%;
  right: -80px;
  bottom: -60px;
}

.art-label {
  font-size: 11px;
  letter-spacing: 3px;
  opacity: .7;
}

.art-card strong {
  display: block;
  font-size: 38px;
  line-height: 1.05;
  margin-top: 82px;
  letter-spacing: -1px;
}

.art-card small {
  position: absolute;
  bottom: 26px;
  right: 28px;
  font-size: 9px;
  opacity: .72;
  direction: ltr;
}

.art-bars {
  position: absolute;
  left: 28px;
  bottom: 30px;
  display: flex;
  gap: 4px;
  align-items: flex-end;
}

.art-bars i {
  width: 4px;
  border-radius: 10px;
  background: var(--gold-light);
}

.art-bars i:nth-child(1) { height: 17px; }
.art-bars i:nth-child(2) { height: 28px; }
.art-bars i:nth-child(3) { height: 40px; }
.art-bars i:nth-child(4) { height: 54px; }

.projects-section {
  padding: 80px 0 115px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.section-heading .eyebrow {
  margin-bottom: 9px;
}

.section-heading > p {
  color: var(--muted);
  font-size: 14px;
  max-width: 350px;
  line-height: 1.9;
  margin-bottom: 3px;
}

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

.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 35px rgba(27,53,71,.045);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  opacity: 0;
  transform: translateY(16px);
  animation: reveal .6s ease forwards;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8,120,201,.16);
  box-shadow: var(--shadow);
}

.project-image {
  height: 235px;
  position: relative;
  overflow: hidden;
  background: #dfe9f0;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.06);
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,25,38,.28));
  pointer-events: none;
}

.project-number {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.project-content {
  padding: 21px 21px 22px;
}

.project-content h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.project-content p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  min-height: 50px;
}

.visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  transition: .2s ease;
}

.visit span {
  font-size: 18px;
  transition: transform .2s ease;
}

.visit:hover span { transform: translateX(-4px); }

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.65);
}

.footer-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #8a9199;
  font-size: 11px;
}

.footer img {
  width: 205px;
  height: auto;
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 145px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy .eyebrow,
  .hero-button {
    margin-inline: auto;
  }

  .hero-art {
    height: 370px;
  }

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

@media (max-width: 620px) {
  header .container .nav-cta{
    display: none;
  }
  header .container{
    justify-content: center;
  }
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header { padding-top: 15px; }

  .brand img { width: 185px; }

  .nav-cta { font-size: 11px; padding: 8px 12px; }

  h1 {
    font-size: 40px;
    letter-spacing: -1.2px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-art {
    height: 310px;
  }

  .art-card {
    width: 230px;
    height: 280px;
    padding: 22px;
  }

  .art-card strong {
    font-size: 31px;
    margin-top: 62px;
  }

  .ring-a { width: 290px; height: 290px; }
  .ring-b { width: 220px; height: 220px; }

  .section-heading {
    display: block;
  }

  .section-heading h2 { font-size: 35px; }

  .section-heading > p {
    margin-top: 12px;
  }

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

  .project-image { height: 220px; }

  .footer-inner {
    padding: 22px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
