

:root {
  /* === High-contrast light palette === */
  --bg-color: #ffffff;
  --bg-darker: #f4f6ff;
  --bg-mid: #eef2ff;
  --bg-violet: #f5f3ff;
  --bg-gradient: radial-gradient(circle at top, #ffffff 0%, #f4f6ff 100%);

  --text-primary: #0b1220;
  --text-secondary: #1f2937;
  --text-muted: #4b5563;

  /* Keep accents for brand */


  /* === Premium accents === */
  --accent-cyan: #00d2ff;
  --accent-blue: #0284c7;
  --accent-gold: #FFB400;
  --accent-magenta: #E91E63;
  --accent-violet: #8b5cf6;

  /* === Gradients === */
  --accent-gradient: linear-gradient(135deg, #00d2ff 0%, #0077b6 50%, #0284c7 100%);
  --premium-gradient: linear-gradient(135deg, #FFB400 0%, #00d2ff 50%, #E91E63 100%);
  --gold-cyan: linear-gradient(135deg, #FFB400 0%, #00d2ff 100%);
  --cyan-magenta: linear-gradient(135deg, #00d2ff 0%, #E91E63 100%);
  --accent-gradient-glow: linear-gradient(135deg, rgba(0, 210, 255, 0.18) 0%, rgba(2, 132, 199, 0.18) 100%);
  --premium-glow: linear-gradient(135deg, rgba(255, 180, 0, 0.18) 0%, rgba(0, 210, 255, 0.18) 50%, rgba(233, 30, 99, 0.18) 100%);

  /* === Glassmorphism tokens === */
  --glass-bg: rgba(255, 255, 255, 0.70);
  --glass-bg-strong: rgba(255, 255, 255, 0.82);

  --glass-border: rgba(11, 18, 32, 0.10);
  --glass-border-hover: rgba(0, 210, 255, 0.35);
  --glass-shadow: 0 8px 32px 0 rgba(11, 18, 32, 0.12);
  --glass-shadow-hover: 0 14px 48px 0 rgba(0, 210, 255, 0.18);

  --gold-shadow: 0 14px 48px 0 rgba(255, 180, 0, 0.22);
  --magenta-shadow: 0 14px 48px 0 rgba(233, 30, 99, 0.22);

  --font-main: 'Outfit', sans-serif;
  --font-display: 'Space Grotesk', 'Outfit', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

::selection {
  background: rgba(255, 180, 0, 0.4);
  color: var(--text-primary);
}

/* ============ Scrollbar ============ */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

/* ============ Container ============ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============ Typography ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.015em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

.gradient-text {
  background: var(--gold-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.gradient-text-premium {
  background: var(--premium-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.gradient-text-magenta {
  background: var(--cyan-magenta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.section-tag i { color: var(--accent-cyan); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ============ Glassmorphism ============ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.glass:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  gap: 0.6rem;
  letter-spacing: 0.02em;
  font-family: var(--font-main);
  white-space: nowrap;
}

.btn-primary {
  background: var(--premium-gradient);
  background-size: 200% 100%;
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 210, 255, 0.28);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.85s;
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background-position: 100% 0;
  box-shadow: 0 12px 36px rgba(255, 180, 0, 0.35);
}

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

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-outline:hover {
  background: rgba(0, 210, 255, 0.10);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(0, 210, 255, 0.20);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-gold {
  background: var(--accent-gold);
  color: #0a0f1f;
  box-shadow: 0 6px 24px rgba(255, 180, 0, 0.32);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 180, 0, 0.5);
}

/* ============ Header / Navigation ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.5rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container { height: 64px; }

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  z-index: 1100;
}

.logo-img {
  height: 46px;
  width: auto;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  transition: var(--transition-smooth);
}

.logo-link:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
  border-color: var(--accent-gold);
  box-shadow: 0 0 24px rgba(255, 180, 0, 0.4);
}

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

  .nav-item a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);

  position: relative;
  padding: 0.5rem 0;
}

.nav-item a:hover { color: var(--text-primary); }

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-cyan);
  transition: var(--transition-smooth);
}

.nav-item a.active {
  color: var(--accent-gold);
  font-weight: 600;
}

.nav-item a.active::after,
.nav-item a:hover::after { width: 100%; }

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 1200;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-menu-btn i,
.mobile-menu-btn svg {
  width: 26px;
  height: 26px;
  display: block;
  transition: transform 0.3s ease;
}

/* ============ Ambient glow ============ */
.ambient-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
}

.orb-1 {
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
}

.orb-2 {
  bottom: 15%;
  left: -20%;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
}

.orb-3 {
  top: 60%;
  right: 30%;
  background: radial-gradient(circle, var(--accent-magenta) 0%, transparent 70%);
  opacity: 0.10;
}

/* ============ Hero ============ */
.hero {
  padding: 9rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 3.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.15rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 180, 0, 0.28);
  background: rgba(255, 180, 0, 0.06);
  color: var(--accent-gold);
}

.badge i { color: var(--accent-gold); }

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 210, 255, 0.2);
  padding-top: 1.75rem;
  border-radius: 0;
  background: transparent;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.75rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(0, 210, 255, 0.2);
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 210, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}

.stat-icon i { width: 18px; height: 18px; }

.stat-item h3 {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
  background: var(--gold-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-item p {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 500;
}

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

.visual-glowing-circle {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 180, 0, 0.25), rgba(0, 210, 255, 0.25), rgba(233, 30, 99, 0.25), rgba(255, 180, 0, 0.25));
  filter: blur(50px);
  animation: orbSpin 12s linear infinite;
  opacity: 0.55;
}

.hero-illustration-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  border-radius: 26px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 80px rgba(0, 210, 255, 0.15);
  background: var(--glass-bg-strong);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.hero-illustration-container:hover .hero-img { transform: scale(1.04); }

.floating-overlay-card {
  position: absolute;
  padding: 0.95rem 1.15rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 210, 255, 0.25);
}

.card-pos-2 {
  top: 12%;
  right: -8%;
  animation: cardFloat2 6s ease-in-out infinite alternate;
}

.floating-overlay-card i {
  color: var(--accent-gold);
  padding: 0.55rem;
  background: rgba(255, 180, 0, 0.12);
  border-radius: 50%;
}

.floating-overlay-card span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
}

.floating-overlay-card strong {
  font-size: 0.9rem;
  color: var(--text-primary);
  display: block;
}

/* ============ Marquee / City Strip ============ */
.marquee-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.75);

  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.marquee-item i {
  color: var(--accent-gold);
  width: 18px;
  height: 18px;
}

/* ============ Courses Static Grid (replaces orbit animation) ============ */
.courses-static-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Last row: 2 cards centred */
.courses-static-grid .orbit-card:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: auto;
}
.courses-static-grid .orbit-card:nth-child(5) {
  grid-column: 2 / 3;
}

/* Override the absolute-positioned orbit-card defaults */
.courses-static-grid .orbit-card {
  position: static !important;
  transform: none !important;
  animation: none !important;
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  text-align: center;
}

.courses-static-grid .orbit-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--accent-gold);
  box-shadow: var(--gold-shadow);
  z-index: 1;
}

/* ============ Courses Orbit Animation ============ */
.courses-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 10, 46, 0.35) 50%, transparent 100%);
}

.courses-header {
  text-align: center;
  margin-bottom: 4rem;
}

.courses-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.orbit-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-center {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.18) 0%, rgba(255, 180, 0, 0.10) 100%);
  border: 2px solid rgba(0, 210, 255, 0.4);
  box-shadow: 0 0 60px rgba(0, 210, 255, 0.35), inset 0 0 40px rgba(255, 180, 0, 0.12);
  animation: centerPulse 4s ease-in-out infinite;
}

.orbit-center .oc-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--premium-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.orbit-center .oc-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 600;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 210, 255, 0.25);
  pointer-events: none;
}

.orbit-ring-1 {
  width: 320px; height: 320px;
  animation: ringRotate 30s linear infinite;
}

.orbit-ring-2 {
  width: 480px; height: 480px;
  border-color: rgba(255, 180, 0, 0.20);
  animation: ringRotate 45s linear infinite reverse;
}

.orbit-ring-3 {
  width: 600px; height: 600px;
  border-color: rgba(233, 30, 99, 0.18);
  animation: ringRotate 60s linear infinite;
}

.orbit-card {
  position: absolute;
  width: 180px;
  padding: 1.25rem;
  border-radius: 18px;
  text-align: center;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 32px rgba(0, 210, 255, 0.18);
  transition: var(--transition-smooth);
  cursor: pointer;
  /* Positions handled by individual classes below */
}

.orbit-card .oc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 210, 255, 0.12);
  color: var(--accent-cyan);
}

.orbit-card .oc-icon i { width: 26px; height: 26px; }

.orbit-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.orbit-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Position + animate individual cards */
.orbit-card-1 {
  top: 5%; left: 50%;
  transform: translateX(-50%);
  animation: orbitCard1 22s ease-in-out infinite;
}
.orbit-card-2 {
  top: 38%; right: 2%;
  animation: orbitCard2 22s ease-in-out infinite;
}
.orbit-card-3 {
  bottom: 18%; right: 18%;
  animation: orbitCard3 22s ease-in-out infinite;
}
.orbit-card-4 {
  bottom: 18%; left: 18%;
  animation: orbitCard4 22s ease-in-out infinite;
}
.orbit-card-5 {
  top: 38%; left: 2%;
  animation: orbitCard5 22s ease-in-out infinite;
}

.orbit-card:hover {
  transform: translateX(var(--hover-shift, 0)) translateY(-50%) scale(1.08);
  border-color: var(--accent-gold);
  box-shadow: var(--gold-shadow);
  z-index: 5;
}

/* ============ Services Highlight ============ */
.services-highlight-section {
  padding: 6rem 0;
  position: relative;
}

.services-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.sh-card {
  padding: 3rem 2.25rem;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.sh-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--premium-gradient);
  background-size: 200% 100%;
  transition: background-position 0.6s ease;
}

.sh-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -30%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--accent-cyan);
  filter: blur(80px);
  opacity: 0.10;
  transition: var(--transition-smooth);
}

.sh-card.sh-software::after { background: var(--accent-cyan); }
.sh-card.sh-training::after { background: var(--accent-gold); }
.sh-card.sh-consultancy::after { background: var(--accent-magenta); }

.sh-card:hover::after {
  opacity: 0.25;
  transform: scale(1.2);
}

.sh-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--gold-shadow);
}

.sh-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 210, 255, 0.32);
  position: relative;
  z-index: 1;
}

.sh-card.sh-training .sh-icon { background: linear-gradient(135deg, var(--accent-gold), #ff8c00); }
.sh-card.sh-consultancy .sh-icon { background: linear-gradient(135deg, var(--accent-magenta), var(--accent-violet)); }

.sh-icon i { width: 32px; height: 32px; }

.sh-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.sh-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.sh-sub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.sh-sub-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.sh-sub-list li i {
  color: var(--accent-gold);
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.sh-cta {
  margin-top: 1.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.sh-cta:hover { gap: 0.7rem; }
.sh-cta i { width: 16px; height: 16px; }

/* ============ Mission / Quick Intro ============ */
.mission-section { padding: 4rem 0; }

.mission-card {
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--premium-glow);
  opacity: 0.4;
  z-index: -1;
}

.mission-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 1.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.mission-card p {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ============ About / Services / Projects / Clients page styles ============ */
.about-header,
.services-header,
.projects-header,
.clients-header {
  padding: 8rem 0 3rem 0;
  text-align: center;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.about-intro-text { display: flex; flex-direction: column; justify-content: center; }

.about-intro-text h3 { font-size: 1.9rem; margin-bottom: 1.5rem; }

.about-intro-text p { font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.75; }

.mission-vision-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.mv-card {
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--premium-gradient);
}

.card-icon-lg {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(255, 180, 0, 0.10);
  border-radius: 16px;
}

.card-icon-lg i { width: 32px; height: 32px; }

.mv-card h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.mv-card p { font-size: 1.05rem; line-height: 1.75; }

.partners-section { margin-bottom: 5rem; }

.partners-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.partner-card {
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}

.partner-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--premium-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border: 2px solid var(--accent-gold);
  font-size: 1.8rem;
  font-weight: 800;
  color: #0a0f1f;
  box-shadow: 0 0 30px rgba(255, 180, 0, 0.4);
}

.partner-card h3 { font-size: 1.55rem; margin-bottom: 0.25rem; }

.partner-role {
  font-size: 0.82rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: block;
}

.partner-card p { margin-bottom: 1.5rem; font-size: 1rem; }

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 180, 0, 0.08);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
  border: 1px solid rgba(255, 180, 0, 0.20);
}

.experience-badge i { width: 16px; height: 16px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.service-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.service-icon {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(0, 210, 255, 0.10);
  border: 1px solid rgba(0, 210, 255, 0.20);
  color: var(--accent-cyan);
  transition: var(--transition-smooth);
}

.service-icon i { width: 28px; height: 28px; }

.service-card:hover .service-icon {
  background: var(--premium-gradient);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 22px rgba(0, 210, 255, 0.4);
  border-color: transparent;
}

.service-card h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.service-card p { font-size: 0.95rem; line-height: 1.65; }

.projects-header { padding: 8rem 0 3rem 0; text-align: center; }

.projects-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.project-showcase-row {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 4rem;
}

.project-showcase-row:nth-child(even) { grid-template-columns: 0.88fr 1.12fr; }
.project-showcase-row:nth-child(even) .project-info-side { order: 2; }

.project-visual-side { position: relative; }

.project-visual-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  width: 100%;
}

.project-visual-container:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--gold-shadow);
}

.project-visual-container img { width: 100%; height: auto; display: block; }

.project-info-side h3 { font-size: 2rem; margin-bottom: 1.25rem; }
.project-info-side p { font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.75; }

.project-features { list-style: none; margin-bottom: 2rem; }
.project-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.project-features li i {
  color: var(--accent-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.clients-header { padding: 8rem 0 3rem 0; text-align: center; }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.client-card {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.client-logo-placeholder {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--premium-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(0, 210, 255, 0.3);
  transition: var(--transition-smooth);
}

.client-card:hover .client-logo-placeholder {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 36px rgba(255, 180, 0, 0.5);
}

.client-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.client-card p { font-size: 0.85rem; color: var(--text-muted); }

.verified-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verified-tag i { width: 14px; height: 14px; }

.testimonials-section { margin-bottom: 5rem; }

.testimonials-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  padding: 2.5rem 2rem;
  position: relative;
}

.testimonial-text {
  font-size: 1.02rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  line-height: 1.65;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.author-info h4 { font-size: 1rem; margin-bottom: 0.15rem; }
.author-info p { font-size: 0.8rem; color: var(--text-muted); }

/* ============ CTA Banner ============ */
.cta-banner {
  padding: 5rem 0;
  margin-bottom: 5rem;
}

.cta-container {
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.10) 0%, rgba(255, 180, 0, 0.08) 50%, rgba(233, 30, 99, 0.08) 100%), var(--glass-bg);
  border: 1.5px solid rgba(255, 180, 0, 0.18);
}

.cta-content { max-width: 600px; }
.cta-content h2 { font-size: clamp(1.7rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.cta-content p { font-size: 1.05rem; }

.cta-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

/* ============ Footer ============ */
.footer {
  background: linear-gradient(180deg, var(--bg-darker) 0%, #ffffff 100%);

  border-top: 1px solid rgba(255, 180, 0, 0.10);
  padding: 5rem 0 2rem 0;
  margin-top: auto;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-cyan), var(--accent-magenta), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h2 { font-size: 1.85rem; margin-bottom: 0.75rem; font-weight: 800; }

.footer-llpin {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
}

.footer-description {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-est {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.95rem;
  border-radius: 20px;
  background: rgba(255, 180, 0, 0.08);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 180, 0, 0.20);
}

.footer-links h3, .footer-contact h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  color: var(--text-primary);
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--premium-gradient);
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links ul li a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links ul li a:hover { color: var(--accent-gold); padding-left: 5px; }

.contact-details { list-style: none; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.contact-details li i {
  color: var(--accent-gold);
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-details li span {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* ============ Combo Slider (Hero Visual) ============ */
.combo-slider-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}

.combo-slider-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.combo-hq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25);
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.combo-hq-badge i { width: 14px; height: 14px; color: var(--accent-cyan); }

.combo-slider-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  background: rgba(255, 180, 0, 0.10);
  border: 1px solid rgba(255, 180, 0, 0.30);
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.combo-slider-badge i { width: 16px; height: 16px; color: var(--accent-gold); }

.combo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 340px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.combo-card {
  position: absolute;
  inset: 0;
  padding: 2rem 1.75rem 1.5rem;
  border-radius: 22px;
  opacity: 0;
  transform: translateX(48px) scale(0.97);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  background: var(--glass-bg-strong);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.combo-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  position: relative;
  min-height: 340px;
}

.combo-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.combo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.combo-icon i { width: 26px; height: 26px; }

.combo-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.combo-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.combo-duration i { width: 14px; height: 14px; }

.combo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.combo-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.combo-features li i {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.combo-footer {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.combo-price {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gold-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.combo-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
  min-width: 140px;
}

.combo-seats-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: rgba(233, 30, 99, 0.10);
  border: 1px solid rgba(233, 30, 99, 0.30);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--accent-magenta);
  font-weight: 600;
  margin-top: 0.4rem;
  width: fit-content;
}

.combo-dots {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.combo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.combo-dot.active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 4px;
}

/* ============ Expanded Service Cards (services page) ============ */
.services-expanded-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.service-expanded-card {
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.service-expanded-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent-gradient);
  background-size: 200% 100%;
  transition: background-position 0.6s ease;
}

.service-expanded-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

.svc-full-width {
  grid-column: 1 / -1;
}

.svc-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.svc-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.service-expanded-card .service-icon { margin-bottom: 0; }

.svc-gold { background: rgba(255, 180, 0, 0.12) !important; color: var(--accent-gold) !important; border-color: rgba(255, 180, 0, 0.25) !important; }
.svc-magenta { background: rgba(233, 30, 99, 0.10) !important; color: var(--accent-magenta) !important; border-color: rgba(233, 30, 99, 0.20) !important; }
.svc-violet { background: rgba(139, 92, 246, 0.10) !important; color: var(--accent-violet) !important; border-color: rgba(139, 92, 246, 0.20) !important; }

.svc-hook {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-expanded-card > p:last-child {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ Keyframes ============ */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============ Keyframes ============ */
@keyframes orbFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-15px) scale(1.05); }
}

@keyframes orbSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes cardFloat2 {
  0% { transform: translateY(0) rotate(3deg); }
  100% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes centerPulse {
  0%, 100% {
    box-shadow: 0 0 60px rgba(0, 210, 255, 0.35), inset 0 0 40px rgba(255, 180, 0, 0.12);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 90px rgba(0, 210, 255, 0.55), inset 0 0 60px rgba(255, 180, 0, 0.20);
    transform: scale(1.04);
  }
}

@keyframes orbitCard1 {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  25% { transform: translate(20%, 30%) scale(1.05); }
  50% { transform: translate(80%, 80%) scale(1); }
  75% { transform: translate(20%, 50%) scale(0.95); }
}

@keyframes orbitCard2 {
  0%, 100% { transform: translate(0, -50%) scale(1); }
  25% { transform: translate(-30%, -20%) scale(0.95); }
  50% { transform: translate(-50%, 30%) scale(1.05); }
  75% { transform: translate(-20%, -10%) scale(1); }
}

@keyframes orbitCard3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-30%, -30%) scale(1.05); }
  50% { transform: translate(-50%, 10%) scale(1); }
  75% { transform: translate(-30%, -20%) scale(0.95); }
}

@keyframes orbitCard4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30%, -30%) scale(0.95); }
  50% { transform: translate(50%, 10%) scale(1.05); }
  75% { transform: translate(30%, -20%) scale(1); }
}

@keyframes orbitCard5 {
  0%, 100% { transform: translate(0, -50%) scale(1); }
  25% { transform: translate(30%, -20%) scale(1.05); }
  50% { transform: translate(50%, 30%) scale(1); }
  75% { transform: translate(20%, -10%) scale(0.95); }
}

@keyframes orbitCard1Mobile {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

@keyframes orbitCard2Mobile {
  0%, 100% { transform: translate(0, -50%); }
  50% { transform: translate(5px, -50%); }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .orbit-card { animation: none !important; }
  .ring-rotate { animation: none !important; }
}

/* ============ Responsive ============ */
@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-menu { gap: 1.5rem; }
  .nav-item a { font-size: 0.9rem; }
  .logo-link { font-size: 1.2rem; }
  .logo-img { height: 42px; }
}

@media (max-width: 1100px) {
  .orbit-wrap { max-width: 560px; height: 560px; }
  .orbit-ring-1 { width: 280px; height: 280px; }
  .orbit-ring-2 { width: 420px; height: 420px; }
  .orbit-ring-3 { width: 540px; height: 540px; }
  .orbit-card { width: 160px; }
  .orbit-center { width: 170px; height: 170px; }
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 243, 255, 0.97) 100%);

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(2, 132, 199, 0.18);

    z-index: 1050;
    visibility: hidden;
  }

  .nav-menu.active {
    right: 0;
    transform: translateX(0);
    visibility: visible;
  }

  .nav-menu .nav-item a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: none;
  }


  .mobile-menu-btn { display: flex !important; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-items: center; }
  .hero-visual { margin-top: 2rem; }

  .about-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mission-vision-cards { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }

  .project-showcase-row,
  .project-showcase-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .project-showcase-row:nth-child(even) .project-info-side { order: 0; }

  .cta-container {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
  }

  .cta-action { align-items: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: left; }

  .services-highlight-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Training Excellence (services.html) */
  .training-excellence-grid {
    grid-template-columns: 1fr !important;
  }
  /* Combo slider on tablet - slightly smaller */
  .combo-slider-wrapper { max-width: 100%; }

  /* Expanded service cards - single column on tablet */
  .services-expanded-grid { grid-template-columns: 1fr; }
  .svc-full-width { grid-column: auto; }

  /* Static courses grid → 2 columns on tablet */
  .courses-static-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .courses-static-grid .orbit-card:nth-child(4),
  .courses-static-grid .orbit-card:nth-child(5) {
    grid-column: auto;
    margin-left: 0;
  }
}


@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  .hero { padding: 6.5rem 0 4rem 0; }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.1rem); }
  .hero-title { font-size: clamp(1.85rem, 7vw, 2.5rem); }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: 1.25rem;
  }

  .floating-overlay-card { display: none !important; }

  .mv-card, .partner-card, .testimonial-card, .service-card, .client-card,
  .sh-card {
    padding: 2rem 1.5rem;
  }

  .footer-bottom-flex { flex-direction: column; gap: 0.85rem; text-align: center; }

  /* Static courses grid → 2 columns on mobile */
  .courses-static-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 0.25rem;
  }
  .courses-static-grid .orbit-card:nth-child(4),
  .courses-static-grid .orbit-card:nth-child(5) {
    grid-column: auto;
    margin-left: 0;
  }
  .courses-static-grid .orbit-card {
    padding: 1.25rem 1rem;
  }
  .courses-static-grid .orbit-card:hover { transform: translateY(-4px) !important; }

  .courses-section { padding: 4rem 0; }

  .cta-banner { padding: 3rem 0; margin-bottom: 3rem; }
  .mission-section { padding: 3rem 0; }
  .mission-card { padding: 2.5rem 1.5rem; }
  .services-highlight-section { padding: 4rem 0; }

  .visual-glowing-circle { width: 280px; height: 280px; }
}

@media (max-width: 576px) {
  .hero-btns { flex-direction: column; width: 100%; gap: 0.75rem; }
  .hero-btns .btn { width: 100%; }

  .cta-container { padding: 2.25rem 1.25rem; }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
  }

  .stat-item:not(:last-child)::after { display: none; }
  .stat-icon { width: 30px; height: 30px; }
  .stat-item { padding: 0.6rem 0.5rem; }

  .stat-item h3 { font-size: 1.55rem; }
  .stat-item p { font-size: 0.72rem; }

  .hero-title { font-size: clamp(1.65rem, 8vw, 2.1rem) !important; }
  .hero-subtitle { font-size: 1rem !important; }

  .about-header, .services-header, .projects-header, .clients-header {
    padding: 5.5rem 0 2rem 0;
  }

  .section-tag { font-size: 0.78rem; }

  /* Single column on small phones */
  .courses-static-grid {
    grid-template-columns: 1fr;
  }

  /* Smaller orbit cards in static grid */
  .courses-static-grid .orbit-card { padding: 1rem 0.75rem; }
  .courses-static-grid .orbit-card .oc-icon { width: 44px; height: 44px; }
  .courses-static-grid .orbit-card .oc-icon i { width: 22px; height: 22px; }
  .courses-static-grid .orbit-card h4 { font-size: 0.95rem; }
  .courses-static-grid .orbit-card p { font-size: 0.72rem; }
}

@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: 1.55rem !important; }
  .section-title { font-size: 1.55rem; }
  .cta-content h2 { font-size: 1.5rem; }
}

/* ============ Accessibility: Focus-visible ============ */
:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.combo-dot:focus-visible,
.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

/* ============ Performance: will-change hints ============ */
.visual-glowing-circle { will-change: transform; }
.combo-card { will-change: opacity, transform; }
.reveal { will-change: opacity, transform; }

/* ============ Hero visual alignment ============ */
@media (min-width: 1025px) {
  .hero-visual {
    align-items: flex-start;
    padding-top: 0.5rem;
  }
  .combo-slider-wrapper {
    width: 100%;
  }
}

/* ============ Training excellence mobile fix ============ */
@media (max-width: 768px) {
  .training-excellence-grid {
    grid-template-columns: 1fr !important;
    padding: 2.5rem 1.5rem !important;
    gap: 2rem !important;
  }
  .training-excellence-grid > div:last-child {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
  }
  .combo-slider-top-bar {
    gap: 0.5rem;
  }
  .combo-hq-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
  }
}

/* ============ Combo slider tablet sizing ============ */
@media (max-width: 1024px) {
  .combo-slider { min-height: 360px; }
  .combo-card.active { min-height: 360px; }
  .hero-grid { gap: 2.5rem; }
}

/* ============ Project images proper sizing ============ */
.project-visual-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============ Print styles ============ */
@media print {
  .header,
  .ambient-glow,
  .visual-glowing-circle,
  .marquee-section,
  .combo-dots,
  .mobile-menu-btn { display: none !important; }
  body { background: white !important; color: black !important; }
  .glass { border: 1px solid #ddd !important; box-shadow: none !important; }
}

/* ============ Safe area insets (notched phones) ============ */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer-bottom {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}
.combo-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

/* This creates an invisible 48x48px clickable box centered over your small dot */
.combo-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}



/* Footer Social Media Container */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Individual Social Icon Links */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px; /* വട്ടത്തിലുള്ള ഡിസൈൻ */
  background: rgba(255, 255, 255, 0.05); /* പശ്ചാത്തലത്തിലെ നേരിയ നിറം */
  color: #ffffff; /* ഐക്കണിന്റെ നിറം */
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease; /* ആനിമേഷൻ സുഗമമാക്കാൻ */
  text-decoration: none;
}

/* Icons sizing inside the link */
.footer-social a svg,
.footer-social a i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* Hover Effects (മൗസ് മുകളിൽ വെക്കുമ്പോൾ) */
.footer-social a:hover {
  background: var(--accent-gold, #dfb76c); /* നിങ്ങളുടെ ഗോൾഡ് തീം നിറം */
  color: #000000; /* ഹോവർ ചെയ്യുമ്പോൾ ഐക്കൺ കറുപ്പ് നിറമാകും */
  border-color: var(--accent-gold, #dfb76c);
  box-shadow: 0 4px 15px rgba(223, 183, 108, 0.3); /* നേരിയ തിളക്കം */
}

/* Hover ചെയ്യുമ്പോൾ ഐക്കൺ ചെറുതായി മുകളിലേക്ക് പൊങ്ങാൻ */
.footer-social a:hover svg,
.footer-social a:hover i {
  transform: translateY(-2px);
}



/* ==========================================================================
   Self-Hosted Web Fonts
   ========================================================================== */

/* Outfit - Regular (400) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/outfit-v15-latin-regular.woff2') format('woff2');
}

/* Outfit - Bold (700) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/outfit-v15-latin-700.woff2') format('woff2');
}

/* Space Grotesk - Regular (400) */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/space-grotesk-v22-latin-regular.woff2') format('woff2');
}

/* Space Grotesk - Bold (700) */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/space-grotesk-v22-latin-700.woff2') format('woff2');
}