:root {
  --bg-deep-start: #102a43;
  --bg-deep-end: #2a2e40;
  --bg-main: #f5f7fa;
  --bg-white: #ffffff;
  --accent: #fc4823;
  --accent-dark: #e03616;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --text-gray-200: #e2e8f0;
  --text-gray-300: #cbd5e1;
  --text-gray-400: #94a3b8;
  --text-gray-500: #64748b;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 12px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.relative {
  position: relative;
}
.absolute-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.z-10 {
  z-index: 10;
}
.overflow-hidden {
  overflow: hidden;
}

/* Colors */
.bg-main {
  background-color: var(--bg-main);
}

.bg-deep-gradient {
  background: linear-gradient(
    135deg,
    var(--bg-deep-start) 0%,
    var(--bg-deep-end) 100%
  );
}
.bg-white {
  background-color: var(--bg-white);
}
.bg-dark {
  background-color: var(--bg-deep-start);
}
.text-accent {
  color: var(--accent);
}
.text-white {
  color: var(--text-light);
}
.text-muted {
  color: var(--text-muted);
}
.text-gray-200 {
  color: var(--text-gray-200);
}
.text-gray-300 {
  color: var(--text-gray-300);
}
.text-gray-400 {
  color: var(--text-gray-400);
}
.text-gray-500 {
  color: var(--text-gray-500);
}

/* Typography */
h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--font-serif);
}
.font-sans,
h4 {
  font-family: var(--font-sans);
}
h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}
h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
}
h3 {
  font-size: 1.75rem;
  font-weight: 500;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
.text-sm {
  font-size: 0.95rem;
}
.text-xs {
  font-size: 0.85rem;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.text-center {
  text-align: center;
}

/* Spacing */
.section {
  padding: 5rem 0;
}
.section-lg {
  padding: 8rem 0;
}
.section-lg-modified {
  padding: 4rem 0;
}
.section-md {
  padding: 2rem 0 4rem 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}
.p-2 {
  padding: 1.5rem;
}
.pt-3 {
  padding-top: 1.5rem;
}
.pt-4 {
  padding-top: 2rem;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-5 {
  padding-bottom: 2.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-sm {
  max-width: 480px;
}
.max-w-md {
  max-width: 600px;
}
.max-w-lg {
  max-width: 800px;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}

/* Layout Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid-2-asym {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-center-modified {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-center-y {
  display: flex;
  align-items: center;
}
.yeeap-learn-more {
  display: inline-block;
  margin-top: 10px;
  padding: 20px 30px;
  text-decoration: none;
  background: var(--accent);
  color: white;
  border-radius: 40px;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.justify-end {
  justify-content: flex-end;
}
.gap-2 {
  gap: 1rem;
}
.gap-3 {
  gap: 1.5rem;
}
.gap-4 {
  gap: 2rem;
}
.block {
  display: block;
}
.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.border-bottom-dark {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.border {
  border: 1px solid rgba(0, 0, 0, 0.05);
}
/* Base style: Applied to the image normally */
.gray-hover {
  filter: grayscale(100%);
  transition: filter 0.5s ease-in-out; /* Optional: adds smooth animation */
}

/* Hover state: When user moves mouse over */
.gray-hover:hover {
  filter: grayscale(0%);
}

/* Components */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.card.shadow {
  box-shadow: var(--shadow-soft);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-pill {
  border-radius: 999px;
}
.btn-accent {
  background-color: var(--accent);
  color: white;
}
.btn-accent:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(252, 72, 35, 0.3);
}
.btn-dark {
  background-color: var(--bg-deep-start);
  color: white;
}
.btn-dark:hover {
  background-color: var(--bg-deep-end);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background-color: transparent;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
}
.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: white;
}
.center-text {
  text-align: center;
}

/* 1. Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.3s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.logo img {
  height: 80px;
  padding: 10px 0px;
}
.nav-center a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 1.25rem;
  transition: var(--transition);
  font-weight: 500;
}
.nav-center a:hover {
  color: var(--text-dark);
}
.nav-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-right: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--text-dark);
}
.icon-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}
.hero-object-two {
  width: 240px;
  height: 240px;
  position: relative;
  /* position: absolute;
  top: 10%; */
}
.glass-sphere-talent {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* animation: float 6s ease-in-out infinite; */
}
.orbital-ring-two {
  position: absolute;
  inset: -20px;
  border: 1px dashed rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.inner-core {
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(252, 72, 35, 0.6);
}
.orbital-ring {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.ring-2 {
  inset: -40px;
  border-style: solid;
  animation-direction: reverse;
  animation-duration: 30s;
}

/* 2. Hero Section (Hanging Layout) */
.hero-hanging {
  min-height: 100vh;
  padding-top: 100px;
  background-color: #fafbfc;
}
.hero-bg-lines {
  display: flex;
  justify-content: space-evenly;
  opacity: 0.1;
  pointer-events: none;
}
.bg-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 20%,
    transparent 90%
  );
  margin: 0 10px;
}

.hanging-images-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 1rem;
  height: 280px;
  position: relative;
}

.h-col {
  width: 130px;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: float-sway 4s ease-in-out infinite;
}

@keyframes float-sway {
  0%,
  100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

.h-col:hover {
  animation-play-state: paused;
}

.h-col:hover .gray-hover {
  filter: grayscale(0%);
}

.h-img-card {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  background: white;
  padding: 4px;
}
.h-img-card img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  display: block;
}
.h-img-card:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.hero-logo img {
  width: auto;
  height: 200px;
}

/* Staggering the columns */
.h-col-1 {
  margin-top: 120px;
  animation-duration: 4.5s;
  animation-delay: -1s;
  transform-origin: 50% -110px;
}
.h-col-2 {
  margin-top: 40px;
  animation-duration: 3.8s;
  animation-delay: -2s;
  transform-origin: 50% -30px;
}
.h-col-3 {
  margin-top: 160px;
  animation-duration: 5.2s;
  animation-delay: 0s;
  transform-origin: 50% -150px;
}
.h-col-4 {
  margin-top: 20px;
  animation-duration: 3.5s;
  animation-delay: -1.5s;
  transform-origin: 50% -20px;
}
.h-col-5 {
  margin-top: 100px;
  animation-duration: 4.1s;
  animation-delay: -0.5s;
  transform-origin: 50% -90px;
}
.h-col-6 {
  margin-top: 40px;
  animation-duration: 3.6s;
  animation-delay: -2.5s;
  transform-origin: 50% top;
}
.h-col-7 {
  margin-top: 140px;
  animation-duration: 4.8s;
  animation-delay: -3s;
  transform-origin: 50% -130px;
}
.h-col-8 {
  margin-top: 60px;
  animation-duration: 3.9s;
  animation-delay: -0.2s;
  transform-origin: 50% top;
}
.h-col-9 {
  margin-top: 120px;
  animation-duration: 4.4s;
  animation-delay: -1.2s;
  transform-origin: 50% -110px;
}

.h-col::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, #e66e4d 100%);
  border-radius: var(--radius-sm);
  z-index: -1;
}
.h-col-1::before {
  height: 100px;
  top: -110px;
}
.h-col-2::before {
  height: 20px;
  top: -30px;
}
.h-col-3::before {
  height: 140px;
  top: -150px;
}
.h-col-4::before {
  height: 10px;
  top: -20px;
}
.h-col-5::before {
  height: 80px;
  top: -90px;
}
.h-col-6::before {
  height: 20px;
  top: -30px;
}
.h-col-7::before {
  height: 120px;
  top: -130px;
}
.h-col-8::before {
  height: 20px;
  top: -30px;
}
.h-col-9::before {
  height: 100px;
  top: -110px;
}

.pill-tag-light {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.hero-title-large {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-desc-large {
  font-size: 1.1rem;
  line-height: 1.6;
}

.hover-up {
  transition: transform 0.3s;
  display: inline-block;
}
.hover-up:hover {
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .h-col-1,
  .h-col-9 {
    display: none;
  }
}
@media (max-width: 992px) {
  .h-col-2,
  .h-col-8 {
    display: none;
  }
  .hero-title-large {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .h-col-3,
  .h-col-7 {
    display: none;
  }
  .hanging-images-container {
    height: 250px;
    margin-top: 1rem;
  }
  .h-col {
    width: 110px;
  }
  .h-col-4 {
    margin-top: 40px;
  }
  .h-col-5 {
    margin-top: 80px;
  }
  .h-col-6 {
    margin-top: 40px;
  }
  .hero-title-large {
    font-size: 2.2rem;
  }
}

/* 3. Services Cosmos */
.anchor-statement {
  font-size: 3.5rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.1;
}
.services-cosmos {
  min-height: 480px;
}
/* .cosmos-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 1) 0%,
    rgba(245, 247, 250, 0) 100%
  );
} */

.cosmos-lines-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.line-seg {
  position: absolute;
  background: var(--accent);
  transition: transform 0.2s linear;
}
.line-v {
  width: 2px;
  transform: scaleY(0);
}
.line-h {
  height: 2px;
  transform: scaleX(0);
}
.services-cosmos.active .line-v {
  transform: scaleY(1);
}
.services-cosmos.active .line-h {
  transform: scaleX(1);
}

.cosmos-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--bg-deep-start);
  border: 2px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  transition:
    opacity 0.3s,
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  box-shadow: 0 0 8px rgba(252, 72, 35, 0.4);
}
.services-cosmos.active .cosmos-dot {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.service-callout {
  position: absolute;
  width: 220px;
  padding: 1.5rem;
  text-align: center;
}
.service-callout h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.callout-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 0 auto;
}
.pos-top-left {
  top: 0;
  left: 10%;
}
.pos-top-right {
  top: 0;
  right: 10%;
}
.pos-mid-left {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.pos-mid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.pos-mid-right {
  top: 53%;
  right: 0%;
  transform: translateY(-50%);
}
.pos-bottom-center {
  bottom: -110px;
  left: 58%;
  transform: translateX(-50%);
}

/* 4. Capabilities */
.image-tile {
  padding: 2rem;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: flex-end;
}
.tile-agile {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%232a2e40"/></svg>');
}
.tile-tech {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%231a202c"/></svg>');
}
.tile-label {
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}
.circle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  /* color: var(--text-dark); */
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.nav-active {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

/* 5. Talent */
.mini-card {
  padding: 1.25rem;
  cursor: pointer;
}
.mini-card:hover i {
  transform: translateX(5px);
}
.mini-card i {
  transition: var(--transition);
}
.card-bg-gradient {
  background:
    linear-gradient(
      to top,
      rgba(16, 42, 67, 0.9) 0%,
      rgba(16, 42, 67, 0.2) 100%
    ),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%234a5568"/></svg>');
  background-size: cover;
}
.circle-stat {
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}
.course-pill {
  padding: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* 6. Technology */
.prod-icon {
  width: 56px;
  height: 56px;
  background: rgba(252, 72, 35, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

/* 7. Flagship */
.yeeap-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 2px,
    transparent 2px,
    transparent 10px
  );
}
.pillar-badge {
  background: rgba(252, 72, 35, 0.2);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.target-circle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.target-circle.target-active,
.target-circle:hover {
  border-top-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* 8. Webinar */
.webinar-card {
  padding: 2.5rem;
  border-left: 4px solid var(--accent);
}

/* 9. Partners */
.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.logo-box {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.logo-box:hover {
  color: var(--text-dark);
}
.partners-highlight {
  padding: 2.5rem;
}
.p-logo {
  padding: 0.5rem 1rem;
  background: var(--bg-main);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 10. Footer */
.footer-title {
  font-size: 3rem;
  max-width: 400px;
  line-height: 1.1;
}
.footer-decor {
  flex: 1;
}
.decor-image-placeholder {
  width: 300px;
  height: 160px;
}
.decor-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
  animation: pulse 3s infinite alternate;
}
.d1 {
  top: 20%;
  left: 30%;
}
.d2 {
  top: 60%;
  left: 60%;
  animation-delay: 1s;
}
.d3 {
  top: 40%;
  left: 90%;
  animation-delay: 2s;
}
.decor-line {
  position: absolute;
  top: 40%;
  left: 30%;
  width: 60%;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  transform: rotate(15deg);
}
.hover-white:hover {
  color: white;
  transition: var(--transition);
}
.hover-accent:hover {
  color: var(--accent);
  transition: var(--transition);
}

/* 4.5 Architecture Model */
.arch-model {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.arch-roof {
  height: 160px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  padding-bottom: 20px;
  transition: var(--transition);
  border-bottom: 8px solid var(--text-dark);
  background: linear-gradient(to top, #102a43, #1e293b);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.arch-roof:hover {
  transform: translateY(-3px);
}
.roof-bg-pattern {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 15px
  );
}
.arch-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: -5px;
}
.bg-accent-gradient {
  background: linear-gradient(to bottom, #fc4823, #c53012);
}
.border-bottom-light {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.arch-pillar {
  border-radius: 4px;
  padding: 2.5rem 1.5rem;
  transition: var(--transition);
  z-index: 5;
  box-shadow:
    inset 0 -5px 15px rgba(0, 0, 0, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.1);
}
.arch-pillar:hover {
  transform: scale(1.02);
}
.pillar-list {
  list-style: none;
  margin-top: 1.5rem;
}
.pillar-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.pillar-list i {
  font-size: 1.25rem;
  opacity: 0.8;
}
.arch-bridge {
  justify-content: flex-start;
  padding-top: 4rem;
  position: relative;
}
.arch-bridge::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -20px;
  right: -20px;
  height: 1px;
  border-top: 2px dashed rgba(0, 0, 0, 0.15);
  z-index: 0;
}
.bridge-content {
  z-index: 2;
  padding: 1.5rem;
  border-top: 4px solid var(--text-gray-400);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}
.bridge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: white;
  z-index: 3;
}
.arch-link-icon {
  bottom: -5px;
  right: -10px;
  background: white;
  border-radius: 50%;
  padding: 2px;
}
.arch-foundation {
  margin-top: 1rem;
  padding: 0;
  overflow: hidden;
  border-bottom: 6px solid var(--text-gray-400);
  border-radius: 5yqqqqpx;
}
.arrow-step {
  background: linear-gradient(to right, #102a43, #1e293b);
}
.arrow-icon {
  display: flex;
  align-items: center;
  background: #1e293b;
  color: var(--accent);
}
.foundation-content {
  padding: 1.5rem;
}
.base-ul {
  list-style: none;
}
.base-ul li {
  margin-bottom: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.border-right {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Observer Anim Classes */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}
.delay-6 {
  transition-delay: 0.6s;
}
.delay-7 {
  transition-delay: 0.7s;
}
.delay-8 {
  transition-delay: 0.8s;
}
.delay-9 {
  transition-delay: 0.9s;
}
.delay-10 {
  transition-delay: 1s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-right,
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tags-stack {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .service-callout {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 1rem auto;
    width: 100%;
    max-width: 300px;
  }
  .services-cosmos {
    min-height: auto;
  }
  .orbit-visual {
    display: none;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .arch-roof {
    height: auto;
    clip-path: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding-top: 2rem;
  }
  .arch-body {
    grid-template-columns: 1fr;
  }
  .arch-bridge::before {
    display: none;
  }
  .arch-bridge {
    padding-top: 1rem;
  }
  .foundation-arrows {
    flex-direction: column;
  }
  .arrow-icon {
    justify-content: center;
    padding: 0.5rem;
  }
  .arrow-icon i {
    transform: rotate(90deg);
  }
  .border-right {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
  .visible-mobile {
    display: block;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .anchor-statement {
    font-size: 2.2rem;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-2-asym {
    grid-template-columns: 1fr;
  }
  .mt-3-mobile {
    margin-top: 1.5rem;
  }
  .footer-title {
    font-size: 2rem;
  }
  .flex-center-modified {
    flex-direction: column;
  }
}

/* Map Widget in Footer */
.map-widget {
  min-height: 250px;
  border-radius: var(--radius-md);
  overflow: visible;
}

.map-bg {
  background-image: url("assets/map.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}
.map-point {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 0 8px rgba(252, 72, 35, 0.8);
}

.map-point:hover,
.map-point.active {
  transform: translate(-50%, -50%) scale(1.5);
  z-index: 10;
}

.map-point::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.map-hover-card {
  position: absolute;
  background: rgba(20, 25, 35, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: var(--radius-md);
  width: 260px;
  pointer-events: none;
  transform: translate(-50%, -100%);
  transition:
    opacity 0.3s ease,
    margin-top 0.3s ease;
  opacity: 0;
  margin-top: -10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.map-hover-card.visible {
  opacity: 1;
  margin-top: -20px;
  pointer-events: auto;
}

.map-hover-card::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(20, 25, 35, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.company-logo {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.2;
}
/* Sector Tabs & Partnerships Card */
.sector-tabs {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1rem;
}

.sector-tab {
  background: none;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.sector-tab:hover {
  color: var(--text-dark);
}

.sector-tab.active {
  color: #94a3b8; /* Matching the mockup's subtle active color or keep it dark */
  color: var(--text-dark);
}

.sector-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent);
}

.partnerships-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-logo-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.client-logo-pill.hidden {
  display: none;
}

.client-logo-pill.fade-in {
  animation: logoFadeIn 0.4s ease forwards;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.client-logo-pill:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .sector-tabs {
    gap: 1rem;
  }
}
.tab-logo {
  max-width: 200px;
  max-height: 60px;
}
