@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --primary: #C5A059;
  --primary-rgb: 197, 160, 89;
  --secondary: #0057FF;
  --secondary-rgb: 0, 87, 255;
  --accent: #0084FF;
  --accent-rgb: 0, 132, 255;

  --bg-primary: #FFFFFF;
  --bg-secondary: #FAF9F6;
  --bg-tertiary: #F2F1EB;

  --text-main: #0D0D0C;
  --text-muted: #555550;
  --text-white: #FFFFFF;

  --glass-bg: rgba(255, 255, 255, 0.75);

  /* Borders & Shadows */
  --border-glass: rgba(13, 13, 12, 0.08);
  --border-neon: rgba(0, 87, 255, 0.06);
  --border-neon-hover: rgba(197, 160, 89, 0.25);

  --shadow-sm: 0 4px 12px rgba(13, 13, 12, 0.03);
  --shadow-md: 0 12px 30px rgba(13, 13, 12, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 87, 255, 0.03);
  --shadow-neon: 0 0 25px rgba(0, 87, 255, 0.03);
  --shadow-glass: 0 8px 32px 0 rgba(13, 13, 12, 0.03);

  /* Layout */
  --nav-height: 80px;
  --container-max: 1400px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Fonts */
  --font-heading: 'Playfair Display', 'Outfit', serif;
  --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
  height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button,
input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 87, 255, 0.2);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-secondary);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 87, 255, 0.5);
}

/* Custom Selection */
::selection {
  background: rgba(0, 87, 255, 0.1);
  color: var(--primary);
}

/* ==========================================================================
   LENIS SMOOTH SCROLL RESET
   ========================================================================== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* ==========================================================================
   GLOBAL CANVAS & BACKGROUND EFFECTS
   ========================================================================== */
#global-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.mesh-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(133, 194, 38, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(166, 226, 46, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(133, 194, 38, 0.02) 0%, transparent 60%);
  filter: blur(40px);
}

/* Noise overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   CURSOR TRAIL CANVAS
   ========================================================================== */
#trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10000;
}

/* ==========================================================================
   CINEMATIC LOADING SEQUENCE
   ========================================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1), visibility 1s;
}




.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  padding: 20px;
}

.loader-logo-placeholder {
  height: 120px;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.loader-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(133, 194, 38, 0.4));
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 15px rgba(133, 194, 38, 0.3));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 25px rgba(133, 194, 38, 0.6));
    transform: scale(1.04);
  }
}

.loader-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-main);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.loader-subtagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: #85C226;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUpIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 2.2s;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.loader-progress-wrap {
  width: 240px;
  height: 3px;
  background-color: var(--bg-tertiary);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.5s;
}

.loader-progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #85C226, #A6E32D);
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(133, 194, 38, 0.5);
}

.loader-percentage {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.6s;
  letter-spacing: 1px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: var(--container-max);
  height: var(--nav-height);
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.nav-header.nav-hidden {
  transform: translate(-50%, -120%);
  opacity: 0;
}

.nav-container {
  width: 100%;
  height: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-shadow: var(--shadow-glass);
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.08);
}

.nav-logo-dot {
  width: 6px;
  height: 6px;
  background-color: #85C226;
  border-radius: 50%;
  box-shadow: 0 0 10px #85C226;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-search-btn {
  background: transparent;
  border: none;
  font-size: 1.15rem;
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.nav-search-btn:hover {
  background-color: var(--bg-secondary);
  color: var(--text-main);
}

/* Menu Toggle Button (Mobile) */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  z-index: 1002;
}

.nav-mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary));
  color: var(--text-white);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.15);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.25);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: var(--bg-primary);
  color: var(--text-main);
  border: 1px solid rgba(0, 87, 255, 0.15);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background-color: var(--bg-secondary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(0, 87, 255, 0.04);
  transform: translateY(-2px);
}

.btn-text {
  padding: 0;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-text i {
  transition: transform 0.3s ease;
}

.btn-text:hover i {
  transform: translateX(4px);
}

.magnetic-wrap {
  display: inline-block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
}

.hero-container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 87, 255, 0.05);
  border: 1px solid rgba(0, 87, 255, 0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(0, 87, 255, 0.1);
  padding-top: 30px;
  width: 100%;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--text-main), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Illustration / Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.hero-shape-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating 3D/abstract elements */
.float-element {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.float-element.el-1 {
  top: 15%;
  right: 5%;
  animation-delay: 0s;
}

.float-element.el-2 {
  bottom: 20%;
  left: 0%;
  animation-delay: 2s;
}

.float-element.el-3 {
  top: 50%;
  right: 35%;
  animation-delay: 4s;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 87, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.float-info {
  display: flex;
  flex-direction: column;
}

.float-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.float-value {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
}

.mouse-wheel {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(8, 19, 38, 0.2);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

/* Section divider curves */
.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
  fill: var(--bg-secondary);
}

/* ==========================================================================
   GLOBAL LAYOUT UTILITIES
   ========================================================================== */
section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.bg-sec {
  background-color: var(--bg-secondary);
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -1px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.05);
}

.about-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 87, 255, 0.15);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: -1;
  transform: translate(10px, 10px);
}

.about-tabs-nav {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 87, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.about-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: none;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s;
}

.about-tab-btn.active {
  color: var(--primary);
}

.about-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-tab-btn.active::after {
  transform: scaleX(1);
}

.about-tab-content {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.about-tab-content.active {
  display: block;
}

.about-desc {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 87, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 4px;
}

.value-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.value-desc {
  font-size: 0.85rem;
}

/* Timeline inside About */
.about-timeline {
  margin-top: 40px;
  border-left: 2px solid rgba(0, 87, 255, 0.1);
  padding-left: 24px;
  position: relative;
}

.timeline-event {
  position: relative;
  margin-bottom: 24px;
}

.timeline-event::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 3px solid var(--primary);
  transition: background-color 0.3s;
}

.timeline-event:hover::before {
  background-color: var(--secondary);
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

/* ==========================================================================
   LEADERSHIP FOUNDERS SECTION
   ========================================================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.leader-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-neon-hover);
}

.leader-avatar-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 30px rgba(0, 87, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leader-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  object-position: center center;
  display: block;
  box-sizing: border-box;
  background-color: #0d0d0c;
  transition: transform 0.4s ease;
}

.leader-card:hover .leader-avatar-wrap {
  transform: scale(1.05);
  box-shadow: 0 14px 40px rgba(197, 160, 89, 0.4);
}

.leader-card:hover .leader-avatar {
  transform: scale(1.02);
}

.leader-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.leader-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.leader-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES SECTION (Floating neon-bordered glass cards)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.02), rgba(0, 212, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 87, 255, 0.05);
  border: 1px solid rgba(0, 87, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.service-desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link i {
  transition: transform 0.3s;
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-card-glow {
  border-color: var(--border-neon-hover);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(0, 87, 255, 0.25);
  transform: scale(1.05);
}

.service-card:hover .service-title {
  color: var(--primary);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* ==========================================================================
   SAP SOLUTIONS (Interactive showcase)
   ========================================================================== */
.sap-showcase {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border-neon);
  box-shadow: var(--shadow-lg);
}

.sap-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.sap-tab-btn {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 87, 255, 0.1);
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  cursor: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sap-tab-btn.active,
.sap-tab-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 87, 255, 0.15);
}

.sap-tab-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  animation: fadeIn 0.6s ease forwards;
}

.sap-tab-panel.active {
  display: grid;
}

.sap-content h3 {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.sap-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 87, 255, 0.05);
  border: 1px solid rgba(0, 87, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.sap-features {
  list-style: none;
  margin: 24px 0 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sap-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.sap-features li i {
  color: var(--secondary);
}

.sap-illustration {
  display: flex;
  justify-content: center;
  position: relative;
}

.sap-illustration img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-height: 380px;
  object-fit: cover;
}

/* ==========================================================================
   INDUSTRIES (Bento Grid)
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-primary);
  border: 1px solid var(--border-neon);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bento card sizing spanning */
.bento-card.span-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.span-2x1 {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  transition: transform 0.6s, opacity 0.4s;
  z-index: 1;
}

.bento-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.bento-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(0, 87, 255, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.4s;
  margin-bottom: 20px;
}

.bento-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.bento-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Bento grid hovers */
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-neon-hover);
}

.bento-card:hover .bento-card-bg {
  transform: scale(1.05);
  opacity: 0.35;
}

.bento-card:hover .bento-icon {
  background-color: var(--primary);
  color: var(--text-white);
}

/* ==========================================================================
   WHY YANO
   ========================================================================== */
.why-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.why-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.why-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}

.why-item:nth-child(even) {
  flex-direction: row-reverse;
}

.why-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 4px solid var(--primary);
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 87, 255, 0.3);
}

.why-card {
  width: 45%;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 87, 255, 0.15);
  margin-bottom: 12px;
  line-height: 1;
}

.why-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 40px;
}

.process-line {
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: var(--bg-tertiary);
  z-index: 1;
}

.process-line-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.5s ease;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 3px solid var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.process-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 0.85rem;
  max-width: 200px;
}

/* Process active styles */
.process-step.active .process-step-num {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 87, 255, 0.2);
  transform: scale(1.05);
}

/* ==========================================================================
   CASE STUDIES
   ========================================================================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.case-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 1;
}

.case-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.8s ease;
}

.case-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 19, 38, 0) 40%, rgba(8, 19, 38, 0.8) 100%);
  z-index: -1;
  transition: background 0.4s;
}

.case-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.case-title {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.case-results {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.case-result-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
}

.case-result-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.case-card:hover .case-card-img {
  transform: scale(1.05);
}

.case-card:hover .case-card-overlay {
  background: linear-gradient(180deg, rgba(8, 19, 38, 0.2) 20%, rgba(8, 19, 38, 0.9) 100%);
}

.case-card:hover .case-results {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   CLIENT MARQUEE
   ========================================================================== */
.marquee-wrap {
  overflow: hidden;
  padding: 40px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(0, 87, 255, 0.05);
  border-bottom: 1px solid rgba(0, 87, 255, 0.05);
  display: flex;
}

.marquee-content {
  display: flex;
  gap: 80px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.client-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.client-logo i {
  color: rgba(0, 87, 255, 0.2);
  transition: color 0.3s;
}

.client-logo:hover {
  color: var(--primary);
}

.client-logo:hover i {
  color: var(--secondary);
}

/* ==========================================================================
   TESTIMONIALS (Carousel)
   ========================================================================== */
.testimonials-slider {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  box-sizing: border-box;
}

.testimonial-card-inner {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.testimonial-role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  font-style: normal;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid rgba(0, 87, 255, 0.15);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: none;
}

.slider-btn:hover {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.15);
}

/* ==========================================================================
   CAREERS
   ========================================================================== */
.careers-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

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

.benefit-card {
  display: flex;
  gap: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-3px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 87, 255, 0.05);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.benefit-desc {
  font-size: 0.9rem;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-neon);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.job-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.job-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 40px;
}

.contact-info-card {
  background: #f9f9f9;
  border-radius: var(--radius-md);
  padding: 44px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.contact-icon-wrap {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.3s;
}

.contact-card-value:hover {
  color: var(--text-main);
}

.office-subhead {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.office-address {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-transform: uppercase;
}

.open-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
}

.open-maps-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.25);
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-desc {
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.form-group {
  position: relative;
  margin-bottom: 28px;
}

.form-input {
  width: 100%;
  padding: 16px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(0, 87, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: border-color 0.3s, background-color 0.3s;
}

.form-input:focus {
  border-color: var(--primary);
  background-color: var(--bg-primary);
}

.form-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label {
  top: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--bg-primary);
  padding: 0 8px;
  left: 12px;
}

/* For textarea label alignment */
.form-group-textarea .form-label {
  top: 24px;
}

.form-group-textarea .form-input:focus~.form-label,
.form-group-textarea .form-input:not(:placeholder-shown)~.form-label {
  top: 0;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(0, 87, 255, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.info-desc {
  font-size: 0.9rem;
}

.map-container {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: calc(100% + 65px);
  margin-top: -65px;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(0, 87, 255, 0.08);
  padding-top: 80px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(8, 19, 38, 0.06);
}

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 2px;
}

.footer-logo span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-desc {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid rgba(0, 87, 255, 0.1);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.social-btn:hover {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-text {
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 87, 255, 0.1);
  background-color: var(--bg-primary);
  font-size: 0.9rem;
}

.newsletter-btn {
  background-color: var(--primary);
  color: var(--text-white);
  border: none;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: none;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  background-color: #0046cc;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.25);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ==========================================================================
   SCROLL REVEAL / INTERACTION ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(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;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 0.3;
    transform: translate(-50%, 8px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.4;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  :root {
    --container-max: 960px;
  }

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

  .bento-card.span-2x2 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-card.span-2x1 {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    height: 400px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sap-tab-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sap-content>div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .sap-illustration {
    order: -1;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .careers-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-header {
    width: 95%;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--nav-height) + 12px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 0;
    gap: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  /* Burger Animation */
  .nav-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-card.span-2x2,
  .bento-card.span-2x1 {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-line {
    display: none;
  }

  .process-step-num {
    margin-bottom: 12px;
  }

  .why-timeline::before {
    left: 20px;
  }

  .why-dot {
    left: 20px;
  }

  .why-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }

  .why-item:nth-child(even) {
    flex-direction: column;
  }

  .why-card {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .sap-features {
    grid-template-columns: 1fr;
  }

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

/* ==========================================================================
   VIRTUAL PAGES & CURTAIN TRANSITION
   ========================================================================== */
.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-view.active {
  display: block;
  opacity: 1;
}

.transition-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--primary);
  z-index: 99999;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.transition-curtain.active {
  transform: scaleY(1);
  transform-origin: top;
}