/* =========================================================
   NEXORAAH
   Global Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --navy-950: #020713;
  --navy-900: #06101f;
  --navy-800: #0a1830;
  --navy-700: #102647;

  --blue: #1684ff;
  --blue-deep: #1557d6;
  --teal: #18d7d2;
  --green: #4bd39c;
  --gold: #d6b56b;

  --white: #ffffff;
  --text: #dce7f5;
  --muted: #9eafc4;

  --border: rgba(255, 255, 255, 0.12);
  --border-light: rgba(255, 255, 255, 0.2);

  --container: 1240px;
  --radius: 18px;
}

/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% 10%, rgba(24, 215, 210, 0.07), transparent 30%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

/* =========================================================
   GLOBAL LAYOUT
   ========================================================= */

.container {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

section {
  position: relative;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.section-eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.08;
}

.section-heading p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background: rgba(2, 7, 19, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-wrapper {
  display: flex;
  min-height: 86px;
  align-items: center;
}

.brand {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 8px;
  line-height: 1;
}

.nav-wrapper nav {
  margin-left: auto;
  margin-right: 42px;
}

.nav-wrapper nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-wrapper nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-wrapper nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
  content: '';
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-wrapper nav a:hover,
.nav-wrapper nav a.active {
  color: var(--white);
}

.nav-wrapper nav a:hover::after,
.nav-wrapper nav a.active::after {
  transform: scaleX(1);
}

.contact-btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  padding: 0 19px;
  border: 1px solid rgba(24, 215, 210, 0.65);
  border-radius: 4px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.contact-btn span {
  color: var(--teal);
  font-size: 18px;
  line-height: 1;
}

.contact-btn:hover {
  background: rgba(24, 215, 210, 0.08);
  border-color: var(--teal);
  transform: translateY(-1px);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 7, 19, 0.98) 0%, rgba(2, 7, 19, 0.86) 38%, rgba(2, 7, 19, 0.35) 72%, rgba(2, 7, 19, 0.55) 100%),
    url('assets/assets.hero-background.png') center center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 30%, rgba(22, 132, 255, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(2, 7, 19, 0.1), rgba(2, 7, 19, 0.2) 55%, rgba(2, 7, 19, 0.9));
  content: '';
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue),
    var(--teal),
    var(--green),
    var(--gold),
    transparent
  );
  content: '';
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 30px;
  padding-top: 100px;
  padding-bottom: 175px;
}

.hero-content {
  max-width: 720px;
}

.hero-eyebrow {
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -1.5px;
}

.hero h1 .gradient-text {
  display: block;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--teal) 48%,
    var(--green) 78%,
    var(--gold)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-rule {
  width: 145px;
  height: 2px;
  margin: 28px 0 23px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--teal),
    var(--green),
    var(--gold)
  );
}

.hero-tagline {
  color: var(--teal);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-description {
  max-width: 650px;
  margin-top: 18px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.primary-button {
  background: linear-gradient(90deg, var(--blue-deep), var(--teal));
  color: var(--white);
  box-shadow: 0 10px 35px rgba(22, 132, 255, 0.18);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(24, 215, 210, 0.2);
}

.secondary-button {
  border: 1px solid rgba(24, 215, 210, 0.65);
  color: var(--white);
}

.secondary-button:hover {
  background: rgba(24, 215, 210, 0.08);
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* =========================================================
   HERO ARTWORK
   ========================================================= */

.hero-visual {
  position: relative;
  display: flex;
  min-height: 470px;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.4));
}

.hero-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(24, 215, 210, 0.11),
    rgba(22, 132, 255, 0.05) 45%,
    transparent 70%
  );
  content: '';
  transform: translate(-50%, -50%);
}

/* =========================================================
   VALUE STRIP
   ========================================================= */

.value-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: rgba(2, 7, 19, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.value-item {
  position: relative;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  text-align: center;
}

.value-item + .value-item::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: '';
}

.value-icon {
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 19px;
}

.value-item strong {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =========================================================
   CONTENT SECTIONS
   ========================================================= */

.dark-section {
  background: var(--navy-950);
}

.surface-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(22, 132, 255, 0.05), transparent 25%),
    var(--navy-900);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.content-copy {
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}

.content-copy p + p {
  margin-top: 20px;
}

.content-copy strong {
  color: var(--white);
}

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

.card {
  position: relative;
  padding: 30px;
  background: linear-gradient(
    145deg,
    rgba(16, 38, 71, 0.58),
    rgba(6, 16, 31, 0.82)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: rgba(24, 215, 210, 0.4);
  transform: translateY(-4px);
}

.card-number {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.card h3 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  line-height: 1.2;
}

.card p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   FRAMEWORK
   ========================================================= */

.framework {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.framework-step {
  position: relative;
  min-height: 190px;
  padding: 28px 25px;
  background: rgba(10, 24, 48, 0.62);
}

.framework-step + .framework-step {
  border-left: 1px solid var(--border);
}

.framework-step span {
  display: block;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.framework-step h3 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}

.framework-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 7, 19, 0.96), rgba(2, 7, 19, 0.68)),
    url('assets/assets.hero-background.png') center / cover no-repeat;
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue),
    var(--teal),
    var(--green),
    var(--gold),
    transparent
  );
  content: '';
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 620px;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 50px;
  padding-top: 100px;
}

.page-hero-content {
  max-width: 720px;
}

.page-hero-eyebrow {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
}

.page-hero p {
  max-width: 680px;
  margin-top: 22px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

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

.page-hero-visual img {
  width: min(100%, 500px);
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.45));
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(24, 215, 210, 0.1), transparent 30%),
    var(--navy-950);
  border-top: 1px solid var(--border);
}

.cta-content {
  max-width: 820px;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1.08;
}

.cta-content p {
  max-width: 680px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding: 55px 0;
  background: #01050d;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 6px;
}

.footer-copy {
  color: var(--muted);
  font-size: 13px;
}

.footer-email {
  color: var(--teal);
  font-size: 13px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1050px) {
  .nav-wrapper nav {
    margin-right: 25px;
  }

  .nav-wrapper nav ul {
    gap: 22px;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero h1 {
    font-size: clamp(44px, 6vw, 68px);
  }

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

  .framework {
    grid-template-columns: repeat(3, 1fr);
  }

  .framework-step:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .framework-step:nth-child(5) {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .navbar {
    position: absolute;
  }

  .nav-wrapper {
    min-height: 76px;
  }

  .brand {
    font-size: 23px;
    letter-spacing: 5px;
  }

  .nav-wrapper nav {
    display: none;
  }

  .contact-btn {
    margin-left: auto;
  }

  .hero {
    min-height: 900px;
  }

  .hero-inner {
    min-height: 900px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 120px;
    padding-bottom: 170px;
  }

  .hero-content {
    align-self: center;
  }

  .hero-visual {
    min-height: 260px;
    margin-top: -20px;
  }

  .hero-visual img {
    width: min(90%, 430px);
  }

  .value-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .value-item {
    min-height: 80px;
    padding: 10px 5px;
  }

  .value-icon {
    font-size: 15px;
  }

  .value-item strong {
    font-size: 9px;
  }

  .page-hero {
    min-height: 650px;
  }

  .page-hero-inner {
    min-height: 650px;
    grid-template-columns: 1fr;
    padding-top: 110px;
    text-align: left;
  }

  .page-hero-visual {
    display: none;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .section {
    padding: 80px 0;
  }

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

  .framework-step {
    min-height: auto;
  }

  .framework-step + .framework-step {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .framework-step:nth-child(4),
  .framework-step:nth-child(5) {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 560px) {
  .contact-btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero {
    min-height: 930px;
  }

  .hero-inner {
    min-height: 930px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .value-item strong {
    font-size: 8px;
    letter-spacing: 0;
  }

  .value-item {
    min-height: 76px;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
                               }
--blue:#0B4FD9;

--teal:#14D7D7;

--green:#3CCFA0;

--white:#FFFFFF;

--light:#D9E7FF;

}

/* ==========================================================
   NAVIGATION
========================================================== */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(2,8,22,.75);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(20,215,215,.15);

}

.nav-wrapper{
    display:flex;
    align-items:center;
    padding:22px 0;
}

.nav-wrapper nav{
    margin-left:auto;
    margin-right:42px;
}

.brand{
    font-family:'Playfair Display',serif;
    font-size:32px;
    font-weight:600;
    letter-spacing:8px;
    background:linear-gradient(
        90deg,
        #1686D8,
        #20D6D0,
        #63D65A
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    white-space:nowrap;
}

}

nav ul{

display:flex;

list-style:none;

gap:50px;

}

nav a{

font-size:17px;

font-weight:500;

transition:.3s;

}

nav a:hover{

color:var(--teal);

}

.contact-btn{

padding:14px 28px;

border:1px solid rgba(20,215,215,.5);

border-radius:14px;

display:flex;

align-items:center;

gap:12px;

transition:.3s;

}

.contact-btn:hover{

background:rgba(20,215,215,.08);

transform:translateY(-2px);

}

.contact-btn span{

font-size:20px;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

padding-top:190px;

overflow:hidden;

}

.hero-background{

position:absolute;

inset:0;

z-index:0;

}

.world-map{

position:absolute;

top:60px;

right:0;

width:60%;

opacity:.12;

}

.earth-horizon{

position:absolute;

bottom:0;

left:0;

width:100%;

}

.hero-grid{

position:relative;

z-index:5;

display:grid;

grid-template-columns:1.1fr 1fr;

align-items:center;

gap:80px;

}
/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-left{
    max-width:720px;
}

.hero-left h1{
    font-family:'Playfair Display',serif;
    font-size:clamp(48px,5vw,76px);
    line-height:1.08;
    font-weight:600;
    letter-spacing:-1.5px;
    margin-bottom:24px;
}

.hero-left h1 span{
    display:block;
}

.hero-left h1 .headline-top{
    color:#ffffff;
    white-space:nowrap;
}

.hero-left h1 span:not(.headline-top){
    background:linear-gradient(
        90deg,
        #1686D8 0%,
        #20D6D0 45%,
        #63D65A 100%
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero-line{
    width:92px;
    height:3px;
    background:linear-gradient(
        90deg,
        #20D6D0,
        #63D65A
    );
    margin:26px 0;
}

.hero-tagline{
    font-size:25px;
    font-weight:500;
    color:#20D6D0;
    margin-bottom:22px;
}

.hero-description{
    max-width:650px;
    font-size:19px;
    line-height:1.75;
    color:#B8C3D6;
    margin-bottom:38px;
}

/* ==========================================================
   HERO BUTTONS
========================================================== */

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:62px;
    padding:0 28px;
    border-radius:9px;
    font-size:17px;
    font-weight:500;
    transition:all .3s ease;
}

.btn-primary{
background:linear-gradient(
    100deg,
    #1686D8,
    #20D6D0,
    #63D65A
    ) ;
    color:#ffffff;
    border:1px solid transparent;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 35px rgba(32,214,208,.2);
}

.btn-secondary{
    border:1px solid rgba(32,214,208,.65);
    color:#ffffff;
    background:rgba(2,8,22,.35);
}

.btn-secondary:hover{
    transform:translateY(-3px);
    background:rgba(32,214,208,.08);
    border-color:#63D65A;
}

/* ==========================================================
   HERO LOGO
========================================================== */

.hero-right{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:520px;
    position:relative;
    z-index:6;
}

.hero-logo{
    width:min(100%,620px);
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-logo img{
    width:100%;
    max-width:620px;
    height:auto;
    display:block;
    object-fit:contain;
}


/* ==========================================================
   HERO HIGHLIGHTS
========================================================== */

.hero-highlights{
    position:relative;
    z-index:10;
    border-top:1px solid rgba(32,214,208,.18);
    background:rgba(2,8,22,.72);
    padding:30px 0 34px;
}

.highlights-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
}

.highlight-item{
    min-height:95px;
    padding:0 24px;
    display:flex;
    align-items:center;
    gap:16px;
    border-right:1px solid rgba(20,183,215,.22);
}

.highlight-item:first-child{
    padding-left:0;
}

.highlight-item:last-child{
    border-right:none;
}

.highlight-icon{
    flex:0 0 48px;
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.highlight-icon img{
    width:44px;
    height:44px;
    object-fit:contain;
}

.highlight-item h3{
    font-size:16px;
    font-weight:600;
    margin-bottom:5px;
    color:#ffffff;
}

.highlight-item p{
    font-size:13px;
    line-height:1.5;
    color:#B9C7D9;
}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:1100px){

    nav ul{
        gap:25px;
    }

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

    .hero-left h1{
        font-size:52px;
    }

    .highlights-grid{
        grid-template-columns:repeat(3,1fr);
        row-gap:25px;
    }

    .highlight-item:nth-child(3){
        border-right:none;
    }

}

@media(max-width:768px){

    .nav-wrapper{
        padding:16px 0;
    }

    .brand{
    font-size:22px;
    letter-spacing:5px;
    }

    nav{
        display:none;
    }

    .contact-btn{
        padding:10px 16px;
        font-size:14px;
    }

    .hero{
        min-height:auto;
        padding-top:110px;
        padding-bottom:40px;
    }

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

    .hero-left{
        max-width:none;
    }

    .hero-left h1{
        font-size:44px;
    }

    .hero-tagline{
        font-size:20px;
    }

    .hero-description{
        font-size:17px;
    }

    .hero-right{
        min-height:auto;
    }

    .hero-logo{
        max-width:500px;
    }

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

    .highlight-item,
    .highlight-item:first-child{
        padding:15px 0;
        border-right:none;
        border-bottom:1px solid rgba(32,214,208,.18);
    }

    .highlight-item:last-child{
        border-bottom:none;
    }

}

@media(max-width:480px){

    .container{
        width:88%;
    }

    .contact-btn span{
        display:none;
    }

    .hero-left h1{
        font-size:38px;
    }

    .hero-buttons{
      
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;}
    .perspective-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.perspective-statement h2{
    font-size:38px;
}

.perspective-highlight{
    font-size:22px;
}

.perspective-content p{
    font-size:18px;
}
    }

  }/* ==========================================================
   HERO BACKGROUND
========================================================== */

.hero{
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:url("assets/hero-background.png");
    background-size:cover;
    background-position:center bottom;
    background-repeat:no-repeat;
    opacity:.55;
    z-index:0;
    pointer-events:none;
}

.hero > *{
    position:relative;
   
    z-index:2;
}

/* Keep the mobile hero clean */
@media (max-width:899px){
    .hero::before{
        display:none;
    }
}

/* ==========================================================
   HIGHLIGHT ICONS
========================================================== */

.highlight-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.highlight-icon svg{
    width:42px;
    height:42px;
    fill:none;
    stroke:#20D6D0;
    stroke-width:1.5;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.highlight-item:nth-child(1) .highlight-icon svg{
    stroke:#1686D8;
}

.highlight-item:nth-child(2) .highlight-icon svg{
    stroke:#20D6D0;
}

.highlight-item:nth-child(3) .highlight-icon svg{
    stroke:#63D65A;
}

.highlight-item:nth-child(4) .highlight-icon svg{
    stroke:#63D65A;
}

.highlight-item:nth-child(5) .highlight-icon svg{
    stroke:#20D6D0;
}
/* ================================
   ABOUT US
================================ */

.about-section{
    padding:100px 0;
    border-top:1px solid rgba(32,214,208,.12);
}

.about-content{
    max-width:900px;
    margin:0 auto;
}

.about-label{
    color:#20D6D0;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.about-content h2{
    font-size:48px;
    line-height:1.15;
    margin:0 0 28px;
    color:#ffffff;
}

.about-content p{
    font-size:20px;
    line-height:1.7;
    color:#b8c3d6;
    margin:0 0 22px;
}

.about-closing{
    color:#ffffff !important;
    font-weight:600;
    margin-top:35px !important;
}
/* =================================
   OUR PERSPECTIVE
   ================================= */

.perspective-section{
    padding:100px 0;
    border-top:1px solid rgba(32,214,208,.12);
}

.perspective-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.perspective-label{
    color:#20D6D0;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.perspective-statement h2{
    font-size:48px;
    line-height:1.15;
    margin:0;
    color:#ffffff;
}

.perspective-highlight{
    margin-top:24px;
    font-size:24px;
    line-height:1.4;
    color:#20D6D0;
    font-weight:600;
}

.perspective-content p{
    font-size:20px;
    line-height:1.7;
    color:#b8c2d6;
    margin:0 0 24px;
}

.perspective-content p:last-child{
    margin-bottom:0;
    color:#ffffff;
    font-weight:600;

}
/* ==============================
   CAPABILITIES
   ============================== */

.capabilities-section{
    padding:100px 0;
    border-top:1px solid rgba(32,214,208,.12);
}

.capabilities-intro{
    max-width:800px;
    margin-bottom:60px;
}

.capabilities-intro .section-label{
    color:#20D6D0;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.capabilities-intro h2{
    font-size:48px;
    line-height:1.15;
    margin:0 0 28px;
    color:#ffffff;
}

.capabilities-intro p{
    font-size:20px;
    line-height:1.7;
    color:#b8c2d6;
    margin:0;
}

.capabilities-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.capability-card{
    padding:32px;
    border:1px solid rgba(45,220,220,.16);
    background:rgba(32,214,208,.16);
}

.capability-number{
    color:#20D6D0;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:22px;
}

.capability-card h3{
    font-size:24px;
    line-height:1.3;
    color:#ffffff;
    margin:0 0 16px;
}

.capability-card p{
    font-size:17px;
    line-height:1.7;
    color:#b8c2d6;
    margin:0;
}
/* ==============================
   INDUSTRIES
   ============================== */

.industries-section{
    padding:100px 0;
    border-top:1px solid rgba(32,214,208,.12);
}

.industries-intro{
    max-width:800px;
    margin-bottom:60px;
}

.industries-intro .section-label{
    color:#20D6D0;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.industries-intro h2{
    font-size:48px;
    line-height:1.15;
    margin:0 0 28px;
    color:#ffffff;
}

.industries-intro p{
    font-size:20px;
    line-height:1.7;
    color:#b8c2d6;
    margin:0;
}

.industries-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.industry-item{
    padding:30px;
    border:1px solid rgba(32,214,208,.16);
    background:rgba(255,255,255,.02);
}

.industry-item h3{
    font-size:22px;
    line-height:1.3;
    color:#ffffff;
    margin:0 0 14px;
}

.industry-item p{
    font-size:17px;
    line-height:1.7;
    color:#b8c2d6;
    margin:0;
}
.contact-section{
    padding:120px 0;
    border-top:1px solid rgba(32,214,208,.12);
}

.contact-content{
    max-width:900px;
    margin:0 auto;
}

.contact-content h2{
    font-size:48px;
    line-height:1.15;
    margin:0 0 28px;
    color:#ffffff;
}

.contact-content p{
    font-size:20px;
    line-height:1.7;
    color:#b8c2d6;
    max-width:700px;
    margin:0 0 35px;
}

.contact-cta{
    display:inline-block;
    padding:16px 28px;
    border:1px solid #20D6D0;
    border-radius:4px;
    color:#ffffff;
    text-decoration:none;
    font-size:16px;
}
/* =========================
   FOOTER
   ========================= */

.site-footer{
    padding:70px 0 30px;
    border-top:1px solid rgba(32,214,208,.12);
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
}

.footer-logo{
    font-family:Georgia,serif;
    font-size:28px;
    letter-spacing:5px;
    color:#20D6D0;
}

.footer-brand p{
    max-width:420px;
    margin:16px 0 0;
    font-size:16px;
    line-height:1.6;
    color:#8bC2d6;
}

.footer-contact a{
    color:#ffffff;
    text-decoration:none;
    font-size:16px;
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(32,214,208,.08);
}

.footer-bottom p{
    margin:0;
    font-size:14px;
    color:#6f8795;
}
/* ==============================
   IMPACT
   ============================== */

.impact-section{
    padding:100px 0;
    border-top:1px solid rgba(45,220,220,.12);
}

.impact-intro{
    max-width:900px;
    margin-bottom:50px;
}

.impact-label{
    color:#20d6d0;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:14px;
}

.impact-intro h2{
    font-size:38px;
    line-height:1.15;
    color:#ffffff;
    margin:0 0 22px;
}

.impact-intro p{
    font-size:18px;
    line-height:1.7;
    color:#b8c3d6;
    margin:0;
}

.impact-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
}

.impact-item{
    padding:24px;
    border:1px solid rgba(32,214,208,.12);
    background:rgba(255,255,255,.02);
}

.impact-item h3{
    font-size:22px;
    line-height:1.2;
    color:#ffffff;
    margin:0 0 12px;
}

.impact-item p{
    font-size:17px;
    line-height:1.6;
    color:#b8c3d6;
    margin:0;
}

@media (max-width:600px){

    .site-footer{
        padding:55px 0 25px;
    }

    .footer-content{
        flex-direction:column;
        gap:30px;
    }

    .footer-logo{
        font-size:24px;
    }

    .footer-brand p{
        font-size:15px;
    }

}

@media(max-width:600px){

    .perspective-grid{
        grid-template-columns:1fr;
        gap:50px;
    }
    .capabilities-section{
        padding:70px 0;
    }

    .capabilities-intro{
        margin-bottom:40px;
    }

    .capabilities-intro h2{
        font-size:38px;
    }

    .capabilities-intro p{
        font-size:18px;
    }

    .capabilities-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .capability-card{
        padding:24px;
    }

    .capability-card h3{
        font-size:22px;
    }

    .capability-card p{
        font-size:17px;
       }
}

.industries-section{
    padding:70px 0;
}

.industries-intro{
    margin-bottom:40px;
}

.industries-intro h2{
    font-size:38px;
}

.industries-intro p{
    font-size:18px;
}

.industries-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.industry-item{
    padding:24px;
}

.industry-item h3{
    font-size:22px;
}

.industry-item p{
    font-size:17px;
}
}
.contact-section{
    padding:70px 0;
}

.contact-content h2{
    font-size:38px;
}

.contact-content p{
    font-size:18px;
   
.impact-section{
    padding:55px 0;
}

.impact-intro{
    margin-bottom:25px;
}

.impact-intro h2{
    font-size:25px;
    line-height:1.2;
    margin-bottom:16px;
}

.impact-intro p{
    font-size:15px;
    line-height:1.5;
}

.impact-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
}

.impact-item{
    padding:16px;
}

.impact-item h3{
    font-size:18px;
    margin-bottom:8px;
}

.impact-item p{
    font-size:15px;
    line-height:1.5;
}
@media (max-width:800px){

    .impact-grid{
        grid-template-columns:1fr !important;
        gap:14px;
    }

    .impact-item{
        padding:16px;
    }

}}
/* =========================================
   NEXORAAH MULTI-PAGE VISUAL SYSTEM
   ========================================= */

.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 90px;
    background:
        linear-gradient(rgba(2,8,22,.68), rgba(2,8,22,.92)),
        url("assets/assets.hero-background.png") center/cover no-repeat;
    border-bottom: 1px solid rgba(20,215,215,.18);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 45%, rgba(20,215,215,.13), transparent 30%),
        radial-gradient(circle at 25% 70%, rgba(22,134,216,.12), transparent 32%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--teal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.page-hero h1 {
    max-width: 950px;
    margin-bottom: 28px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.05;
    font-weight: 600;
}

.page-hero h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        #1686D8,
        #20D6D0,
        #63D65A
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-hero > .container > p:last-child {
    max-width: 760px;
    color: #cbd5e5;
    font-size: 20px;
    line-height: 1.7;
}

.content-section {
    position: relative;
    padding: 110px 0;
    background: #020816;
}

.content-section.alternate-section {
    background:
        linear-gradient(
            135deg,
            rgba(11,79,217,.06),
            rgba(20,215,215,.025)
        ),
        #030b18;
    border-top: 1px solid rgba(20,215,215,.07);
    border-bottom: 1px solid rgba(20,215,215,.07);
}

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

.section-heading h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.12;
    font-weight: 600;
    color: #ffffff;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 95px;
    height: 2px;
    margin: 25px auto 0;
    background: linear-gradient(
        90deg,
        #1686D8,
        #20D6D0,
        #63D65A
    );
}

.single-content {
    max-width: 900px;
    margin: 0 auto;
}

.single-content p,
.perspective-content p {
    color: #b8c3d6;
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 24px;
}

.single-content h3,
.perspective-content h3 {
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.principles-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.principle-card {
    min-height: 130px;
    padding: 30px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(20,215,215,.16);
    border-radius: 8px;
    background:
        linear-gradient(
            145deg,
            rgba(20,215,215,.07),
            rgba(255,255,255,.018)
        );
    color: #ffffff;
    font-size: 17px;
    line-height: 1.5;
    transition: .3s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20,215,215,.45);
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.contact-cta {
    position: relative;
    padding: 110px 0;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(20,215,215,.12), transparent 35%),
        #020816;
    border-top: 1px solid rgba(20,215,215,.15);
}

.contact-cta h2 {
    max-width: 900px;
    margin: 0 auto 25px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
}

.contact-cta p {
    max-width: 760px;
    margin: 0 auto 20px;
    color: #b8c3d6;
    font-size: 18px;
    line-height: 1.75;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 15px 30px;
    border: 1px solid rgba(20,215,215,.55);
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        rgba(11,79,217,.9),
        rgba(20,215,215,.8),
        rgba(60,207,160,.8)
    );
    color: #ffffff;
    font-weight: 600;
    transition: .3s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(20,215,215,.15);
}

footer {
    background: #010510;
    border-top: 1px solid rgba(20,215,215,.12);
}

/* Mobile */

@media (max-width: 800px) {

    .page-hero {
        min-height: 460px;
        padding: 125px 0 70px;
    }

    .page-hero h1 {
        font-size: 46px;
    }

    .page-hero > .container > p:last-child {
        font-size: 17px;
    }

    .content-section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

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

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

    .contact-cta {
        padding: 75px 0;
    }

}
/* =========================================
   SHARED NAVIGATION
   ========================================= */

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

.navbar .brand {
    flex-shrink: 0;
}

.navbar nav {
    margin-left: auto;
}

.navbar nav ul {
    display: flex;
    align-items: center;
    gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar nav ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar nav ul li a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.navbar .contact-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .navbar nav ul {
        gap: 22px;
    }

    .navbar .nav-wrapper {
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .navbar nav {
        display: none;
    }

    .navbar .nav-wrapper {
        justify-content: space-between;
    }
}
/* =========================================
   INTEGRATED PAGE HEADER
   ========================================= */

body:has(.page-hero) .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid rgba(30, 210, 210, 0.22);
}

body:has(.page-hero) .navbar .nav-wrapper {
    min-height: 102px;
}

body:has(.page-hero) .page-hero {
    margin-top: 0;
    padding-top: 175px;
    min-height: 560px;
    border-bottom: 0;
}

body:has(.page-hero) .page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(
        to bottom,
        transparent,
        #020816
    );
    pointer-events: none;
}

body:has(.page-hero) .page-hero .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 800px) {
    body:has(.page-hero) .navbar .nav-wrapper {
        min-height: 82px;
    }

    body:has(.page-hero) .page-hero {
        padding-top: 125px;
        min-height: 480px;
    }
}
