*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #082155;
  --blue: #1a3aaf;
  --blue-mid: #2251cc;
  --purple: #592699;
  --purple-light: #8b5cf6;
  --cyan: #00c2ff;
  --white: #ffffff;
  --light-bg: #f0f4ff;
  --grad-blue: linear-gradient(135deg, #e8eeff 0%, #d0d8ff 50%, #ede8ff 100%);
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
.text-center { text-align: center; }
#site-header {
  backdrop-filter: blur(20px);
  background: #ffffff92;
  border: 1px solid #ffffff14;
  border-radius: 16px;
  left: 35px;
  position: fixed;
  right: 35px;
  top: 20px;
  z-index: 1000;
  overflow: visible;
  transition:
    left          0.45s cubic-bezier(0.4, 0, 0.2, 1),
    right         0.45s cubic-bezier(0.4, 0, 0.2, 1),
    width         0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    top           0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background    0.45s ease,
    box-shadow    0.45s ease;
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.166);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}
.text-blue{
  color: #0E59F2 !important;
}
.navbar-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  overflow: visible;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.site-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue-mid); }

.nav-links .active > a,
.nav-links .for-talent > a { color: var(--purple); }

.nav-arrow {
  font-size: 1rem;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover > .nav-arrow,
.has-dropdown.open > .nav-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  list-style: none;
  min-width: 270px;
  z-index: 9999;
  padding: 8px 0;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}


.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px; 
  background: transparent;
  display: block;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown.open > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  list-style: none;
}


.nav-links .has-dropdown .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #082155;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #ebebeb;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  background: transparent;
  line-height: 1.4;
}

.nav-links .has-dropdown .dropdown-menu li:last-child a {
  border-bottom: none;
}

.nav-links .has-dropdown .dropdown-menu li a:hover {
  background: #f0f4ff;
  color: #2251cc;
}



.btn-hire {
  background-image: linear-gradient(135deg, #1F65FF, #592699);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-hire:hover { background: var(--navy); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 200px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--navy);
  margin-bottom: 36px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.page-content{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.page-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.page-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--navy);
  margin-bottom: 36px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.btn-hero {
  display: inline-block;
  background-image: linear-gradient(135deg, #1F65FF, #021848);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
  animation: text-glow 2.4s ease-in-out infinite;
}

.btn-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.08) 70%,
    transparent 100%
  );
  transform: skewX(-15deg);
  animation: shine-sweep 2.4s ease-in-out infinite;
}

@keyframes shine-sweep {
  0%   { left: -75%; }
  100% { left: 125%; }
}

@keyframes text-glow {
  0%   { text-shadow: none; }
  40%  { text-shadow: none; }
  50%  { text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.4); }
  60%  { text-shadow: none; }
  100% { text-shadow: none; }
}
#trusted {
  padding: 40px 24px 10px;
  text-align: center;
  background: #fff;
  max-width: 1200px;      
  margin: 0 auto;
}

#trusted h2 {
  font-size: 2.0rem;
  color: var(--purple);
  margin-bottom: 40px;
  font-weight: 700;
}

.logo-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 12s linear infinite;  
}

.logo-set {
  display: flex;
  gap: 56px;
  align-items: center;
  padding-right: 56px; 
  flex-shrink: 0;
}

.logo-set img {
  height:50px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.logo-set img:hover {
  opacity: 1;
}

@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: #555;
}

#platform {
  padding: 40px 24px;
  position: relative;
  background-color: #ffffff;
  background-image:
    linear-gradient(to bottom, #ffffff 0%, transparent 18%),
    linear-gradient(to top, #ffffff 0%, transparent 18%),
    radial-gradient(ellipse at 30% 30%, rgba(213, 180, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 7% 20%, rgba(213, 180, 255, 0.834) 0%, transparent 35%),
    radial-gradient(ellipse at 70% 15%, rgba(180, 220, 240, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 60%, rgba(150, 220, 225, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(213, 180, 255, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 30% 100%,rgba(180, 220, 240, 0.4) 0%, transparent 65%);
  overflow: hidden;
}

#platform::before,
#platform::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(160, 120, 220, 0.7) 1.5px, transparent 1.5px);
}

#platform::before {
  width: 500px;
  height: 500px;
  left: 12%;
  top: 38%;
  background-size: 10px 10px;
  mask-image: radial-gradient(ellipse at 55% 45%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 55% 45%, black 30%, transparent 70%);
}

#platform::after {
  width: 300px;
  height: 300px;
  right: 14%;
  top: 8%;
  background-size: 9px 9px;
  mask-image: radial-gradient(ellipse at 40% 50%, black 25%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse at 40% 50%, black 25%, transparent 68%);
}

#platform .dot-cluster {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(160, 120, 220, 0.6) 1.5px, transparent 1.5px);
}

#platform .dot-cluster:nth-child(1) {
  width: 400px;
  height: 400px;
  right: 18%;
  bottom: 15%;
  background-size: 9px 9px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 28%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 28%, transparent 68%);
}

#platform .dot-cluster:nth-child(2) {
  width: 600px;
  height: 600px;
  left: 28%;
  top: 6%;
  background-size: 8px 8px;
  mask-image: radial-gradient(ellipse at 45% 55%, black 25%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 45% 55%, black 25%, transparent 65%);
}

#platform .dot-cluster:nth-child(3) {
  width: 400px;
  height: 400px;
  right: 18%;
  top: 40%;
  background-size: 8px 8px;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse at 60% 40%, black 22%, transparent 62%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 22%, transparent 62%);
}

#platform .dot-cluster:nth-child(4) {
  width: 250px;
  height: 250px;
  left: 24%;
  bottom: 30%;
  background-size: 9px 9px;
  opacity: 0.65;
  mask-image: radial-gradient(ellipse at 50% 45%, black 26%, transparent 66%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 45%, black 26%, transparent 66%);
}

#platform > *:not(.dot-cluster) {
  position: relative;
  z-index: 1;
}
.capabilities-section{
padding:120px 20px;
background: linear-gradient(135deg,#e8eaf6 0%,#f0f4ff 40%,#e8f0fe 70%,#ede7f6 100%);
}

.section-wrapper{
max-width:1100px;
margin:auto;
text-align:center;
}

.section-label{
display:inline-block;
border:1.5px solid rgba(255,255,255,0.8);
border-radius:8px;
padding:10px 28px;
font-size:2rem;
font-weight:700;
color:#6c3fc5;
margin-bottom:48px;
background:rgba(255,255,255,0.3);
}

.subsection-heading{
display:inline-block;
background:rgba(255,255,255,0.25);
border:1px solid #fff;
border-radius:8px;
padding:10px 32px;
font-size:1.6rem;
font-weight:600;
color:#1a1a3e;
margin-bottom:36px;
}

.capability-sub{
margin-bottom:36px;
}

.ai-led-layout {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* TOP ROW ─────────────────────────────────────── */
.ai-top-row {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.card-left  { grid-column: 1; }
.card-right { grid-column: 3; }

.brain-center {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brain-center img {
  width: 280px;
  max-width: 100%;
}

.connector-hline-wrap {
  width: 78%;
  position: relative;
  z-index: 1;
  margin-top: -150px;
  margin-bottom: 0;
  pointer-events: none;
}

.connector-hline {
  display: block;
  width: 100%;
  height: 9px;
}

.connector-ysplit-wrap {
  width: 340px;
  position: relative;
  z-index: 1;
  margin-top: 0;
  pointer-events: none;
}

.connector-ysplit {
  display: block;
  width: 100%;
  height: auto;
}

.ai-bottom-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  padding: 0 80px;
  position: relative;
  z-index: 2;
  margin-top: -8px;
}

.ai-bottom-row .feature-card {
  flex: 1;
  max-width: 380px;
}

/* CARDS ────────────────────────────────────────── */
.feature-card {
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  z-index: 3;
  text-align: left;
}

.feature-card h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.icon img {
  width: 48px;
  height: 48px;
}

.case-studies-flex{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.case-card{
    width:calc(33.333% - 14px);
    height:370px;
    background-size:cover;
    background-position:center;
    border-radius:18px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    transition:transform .35s ease, box-shadow .35s ease;
}
.case-card:nth-child(4),
.case-card:nth-child(5){
    width:calc(33.333% - 14px);
}
.case-overlay{
    width:100%;
    padding:24px;
    display: flex;
    color:#fff;
    background:linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0));
    flex-direction: column;
    text-align: left;
}

.case-overlay h3{
    font-size:22px;
    margin-bottom:8px;
}

.case-overlay p{
    font-size:14px;
    margin-bottom:12px;
    opacity:.9;
}

.case-link{
    color:#fff;
    font-weight:600;
    text-decoration:none;
}

.case-card:hover{
    transform:scale(1.05);
    box-shadow:0 20px 40px rgba(0,0,0,.3);
}

#vision-mission {
  position: relative;
  padding: 220px 6% 100px;
  background: #070013;
  z-index: 2;
}

/* Glow containers */
.vm-glow {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  z-index: 3;
}

.vm-glow-top { top: 70px; }

.vm-glow svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(12px);
}
#vision-mission::before{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px; 
  pointer-events: none;
  z-index: 1;
}
#vision-mission::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.837) 30%,
    rgba(255,255,255,0) 100%
  );
}

/* BOTTOM WHITE FADE */
#vision-mission::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.645) 30%,
    rgba(255,255,255,0) 100%
  );
}


/* Layout */
.vm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  justify-items: center;
}

.vm-card {
  padding-bottom: 44px;
}

.vm-card h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

/* Image */
.vm-image {
  position: relative;
  border-radius: 18px;
  max-width: 620px;
  overflow: visible;

}

.vm-image img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4/3;
  background: #1a0a2e;
}

/* Glass Overlay */
.vm-overlay {
  position: absolute;
  bottom: -30px;
  left: 12px;
  right: 12px;
  background: rgba(18, 8, 36, 0.5);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
  font-size: 13.5px;
  line-height: 1.85;
  font-weight: 400;
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.vm-overlay ul {
  margin-top: 1px;
  margin: 0;
  padding-left: 15px;
}

#cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-left {
  background: linear-gradient(135deg, #9FEAE9 0%, #52C5DA 24%, #1D94CF 55% ,#2656B6 84%,#58289A 100%);
  padding: 80px 60px;
  color: #fff;
}

.cta-right {
  position: relative;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(90, 37, 153, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse at 40% 80%, rgba(53, 74, 174, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(100, 180, 220, 0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 60%, rgba(195, 242, 241, 0.6) 0%, transparent 45%),
    linear-gradient(135deg, #5A2599 0%, #354AAE 30%, #2556B5 60%, #7ec8d8 100%);
  backdrop-filter: blur(20px);
  padding: 80px 60px;
  color: #fff;
  overflow: hidden;
}

.cta-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.244);
  backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.cta-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}

.cta-left h2,
.cta-right h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
}

.btn-cta {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  margin-top:60px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.btn-cta:hover { background: #fff; color: var(--blue-mid); }
/* about section */

.about-section-wrapper{
  max-width:1400px;
  margin:auto;
  text-align:center;
  padding-bottom: 70px;
}
.about-section-wrapper .description{
  color: #4A5568;
  font-size: 1rem;
  font-weight: 600;
}
.core-values{
  display:flex;
  gap:20px;
  background:rgba(255,255,255,0.25);
  border:1px solid #fff;
  border-radius: 10px;
  padding: 0px 5px 15px 5px;
}
.core-values-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.core-values-card .icon{
  position: relative;
  justify-items: center;
  padding-bottom: 10px;
  bottom: 20px;
}
.core-values-card .icon img{
  width: 50px;
  height: 50px;
}
.subtopics{
  color:var(--navy) ;
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 20px;
}
.members{
  display:flex;
  justify-content:space-between;
}
.member-desc{
  padding: 10px;
  background:rgba(255,255,255,0.25);
  border:1px solid #fff;
}
/* =============== */
/* other pages */
.pink-line{
  position: absolute;
  background-color: #FF95E4;
  height: 1px;
  width: 74rem;
  top:180px;
  left:130px;
  
}
.blue-line{
  position: absolute;
  background-color: #082155;
  height: 1px;
  width: 50rem;
  top:140px;
  left:150px;
  z-index: 0;
  
}
.white-box-section{
  margin-left: 50px;
  margin-right: 50px;
  padding: 20px;
  display:flex;
  justify-self: center;
  gap:60px;
}
.white-box{
  background-color: #fff;
  border-radius: 10%;
  height: 250px;
  width:250px;
  padding: 20px;
  z-index: 1;
}
.icon-section{
  display:flex;
  gap: 20px;
  align-items: center;
}
.icon-section p{
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(180deg, #0e5af2cb 0%,#592699 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.icon-section img{
  width:100%;

}
.title{
  color: var(--navy);
  font-size: 1.2rem;
}
.governance-section{
  background: #8FB4DE;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  max-width:1200px;
  justify-self: center;
}
.governance-content{
  display:flex;
  gap: 20px;
  justify-content: center;
}
.governance-card{
  display: flex;
  background: #B7D1EA;
  border-radius: 10px;
  padding: 20px;
  gap:5px;
}
.use-case-section{
  display: flex;
  justify-content: center;
  margin: 50px;
  gap:50px;
}
.use-case-card{
  display: flex;
  flex-direction: column;
  width: 350px;
  justify-self: center;
  background:rgba(255,255,255,0.25);
  border:1px solid #fff;
  border-radius: 10px;
  padding: 20px;
}
.use-case-card-content{
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
}
.use-case-card h3{
  padding-bottom: 20px;
}
.diagram {
    position: relative;
    width: 960px;
    height: 520px;
    left:200px;
  }
 
  /* Center node */
  .center {
    position: absolute;
    left: 76%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
 
  .center img {
    width: 180px;
    height: 180px;
    object-fit: contain;
  }
 
  .diagram-card {
    position: absolute;
    background:rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50px;
    padding: 13px 20px 13px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(100,80,200,0.07);
    z-index: 10;
  }
 
  /* Icon slot */
  .diagram-card .icon-slot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
  }
 
  .diagram-card .icon-slot img {
    width: 35px;
    height: 35px;
    object-fit: contain;
  }
 
  .diagram-card .label {
    font-size: 13.5px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.45;
    white-space: normal;
    max-width: 155px;
  }
 
  .diagram-card-top-left  { top: 100px;  left: 345px; }
  .diagram-card-mid-left  { top: 250px; left: 345px; }
  .diagram-card-top-right { top: 100px;  right: -180px; }
  .diagram-card-mid-right { top: 250px; right: -180px; }
  .diagram-card-bottom    { bottom: 70px; left: 50%; transform: translateX(50%); }
 
  .diagram-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
  
  }

  .philosophy-box-section{
    padding: 50px;
    display: flex;
    flex-direction: row;
    gap:60px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .philosophy-box{
    width: 350px;
    padding: 30px;
    background:rgba(255,255,255,0.25);
    border:1px solid #fff;
    border-radius: 20px;
  }
  .philosophy-box p{
    color:#4A5568 ;
    font-weight: 600;
  }
  .philosophy-box-icon{
    display: flex;
    gap:20px;
  }
  .philosophy-box-icon p{
    font-size: 1.3rem;
    color: #4A5568;
    font-weight: 700;
  }
  .philosophy-box-icon img{
    padding-top: 10px;
  }
  .last-section{
     position: relative;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(90, 37, 153, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse at 40% 80%, rgba(53, 74, 174, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(100, 180, 220, 0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 60%, rgba(195, 242, 241, 0.6) 0%, transparent 45%),
    linear-gradient(135deg, #5A2599 0%, #354AAE 30%, #2556B5 60%, #7ec8d8 100%);
  backdrop-filter: blur(20px);
  padding: 80px 60px;
  color: #fff;
  overflow: hidden;
  }
  .last-section::before{
      content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.244);
    backdrop-filter: blur(2px);
    z-index: 1;
  }
  .last-section-content{
    position: relative;
    text-align: center;
    z-index: 3;
  }
  .last-section-label{
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 20px;
  }
  .last-section-content h2{
    font-size: 3rem;
  }
/* ------------- */
#site-footer {
  position: relative; 
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.footer-box {
  position: relative;
  z-index: 2;
  background: #06080f;
  margin-left: 0;       
  margin-right: 0;       
  margin-bottom: 200px;
  border-bottom-left-radius: 0;   
  border-bottom-right-radius: 0;  
  padding: 64px 24px 32px;
  transition: margin 0.05s linear, border-radius 0.05s linear;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-brand .site-logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.social-btn:hover { background: var(--blue-mid); }

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-legal a:hover { color: #fff; }

.footer-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  line-height: 1.6;
}

.footer-col-contact .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-col-contact .footer-contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col-contact strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.footer-col-contact a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  line-height: 1.7;
}

.footer-col-contact a:hover {
  color: #fff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


.section-pad { padding: 80px 24px; }

@media (max-width: 992px) {
  .ai-top-row { grid-template-columns: 1fr; }
  .brain-center { grid-column: 1; }
  .connector-hline-wrap, .connector-ysplit-wrap { display: none; }
  .ai-bottom-row { flex-direction: column; padding: 0; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }

  .vm-grid { grid-template-columns: 1fr; }

  #cta-section { grid-template-columns: 1fr; }
  

}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 20px;
  }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; }
  .brain-center,
  .connector-hline-wrap,
  .connector-hline,
  .connector-ysplit-wrap,
  .connector-ysplit {
    display: none !important;
  }
  .ai-top-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .card-left,
  .card-right {
    grid-column: unset;
    width: 100%;
  }
  .ai-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 0;
  margin-top: 0;
 }

  .ai-bottom-row .feature-card {
    max-width: 100%;
  }
  .feature-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
}