/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: #f8fafc;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ================= HEADER ================= */

/* ======================================================
    HEADER – FINAL CLEAN PREMIUM VERSION
  ====================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 64px;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* ================= TOP STATE ================= */
/* Premium glass */
.header.is-top {
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.75),
    rgba(4, 28, 44, 0.75),
    rgba(2, 6, 23, 0.75)
  );

  backdrop-filter: blur(10px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

/* ================= SCROLLED STATE ================= */
/* SOLID DARK – NO BLUR, NO TRANSPARENCY */
.header.is-scrolled {
  background: linear-gradient(90deg, #020617, #041c2c, #020617);

  backdrop-filter: none; /* 🔥 THIS WAS MISSING */
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.7),
    inset 0 -1px 0 rgba(56, 189, 248, 0.18);
}

/* ================= LOGO ================= */
.logo img {
  height: 56px;
  width: auto;
}

/* ================= NAV ================= */
.header nav a {
  margin-left: 28px;

  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;

  color: #e5e7eb;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

/* Hover underline */
.header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #00f2ff);
  transition: width 0.3s ease;
}

.header nav a:hover {
  color: #ffffff;
}

.header nav a:hover::after {
  width: 100%;
}

/* ================= FOOTER – HARD FIX ================= */

/* ================= AI ANIMATED FOOTER ================= */

.footer-white {
  position: relative;
  z-index: 10;
  overflow: hidden;

  background: linear-gradient(135deg, #020617, #020617);
  color: #e5e7eb;
  padding: 20px 20px 20px;
}

/* ================= FLOATING ORBS ================= */

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: footerFloat 16s ease-in-out infinite;
}

.footer-orb.orb-one {
  width: 320px;
  height: 320px;
  background: #38bdf8;
  top: -120px;
  left: -100px;
}

.footer-orb.orb-two {
  width: 360px;
  height: 360px;
  background: #6366f1;
  bottom: -140px;
  right: -120px;
  animation-delay: 4s;
}

@keyframes footerFloat {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-40px) translateX(30px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* ================= GRID ================= */

.footer-top {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 70px;
}

/* ================= BRAND ================= */

.footer-brand img {
  width: 400px;
  max-width: 100%;
  height: auto;

  filter: brightness(1.15) contrast(1.05);
}

/* Mobile */
@media (max-width: 600px) {
  .footer-brand img {
    width: 140px;
  }
}

.footer-brand p {
  font-size: 15.5px;
  color: #c7d2fe;
  max-width: 420px;
  line-height: 1.65;
}

/* ================= HEADINGS ================= */

.footer-links h4,
.footer-cta h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #f8fafc;
}

/* ================= LINKS ================= */

.footer-links a {
  display: block;
  margin-bottom: 11px;
  font-size: 15px;
  color: #a5b4fc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(5px);
}

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

.footer-cta h3 {
  font-size: 20px;
  margin-bottom: 22px;
  line-height: 1.4;
}

.footer-cta .footer-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #020617;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(56, 189, 248, 0.35);
  animation: ctaPulse 3.5s ease-in-out infinite;
  transition: transform 0.25s ease;
}

.footer-cta .footer-btn:hover {
  transform: translateY(-4px) scale(1.04);
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(56, 189, 248, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

/* ================= BOTTOM ================= */

.footer-bottom {
  position: relative;
  z-index: 2;

  margin-top: 70px;
  padding-top: 22px;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-white {
    padding: 70px 30px 24px;
  }

  .footer-brand img {
    width: 180px;
  }
}
/* ================= FOOTER CONTENT GLASS LAYER ================= */

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 5;

  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 40px;
}

/* Remove double padding issue */
.footer-bottom {
  margin-top: 60px;
  padding: 22px 10px 0;
  background: none;
  backdrop-filter: none;
  border-radius: 0;
}

/* ================= TEXT VISIBILITY FIX ================= */

.footer-links h4,
.footer-cta h3 {
  color: #f8fafc !important;
}

.footer-brand p {
  color: #e5e7eb !important;
}

.footer-links a {
  color: #c7d2fe !important;
}

.footer-links a:hover {
  color: #38bdf8 !important;
}

.footer-bottom {
  color: #cbd5f5 !important;
}

:root {
  --primary: #00f2ff;
  --primary-dark: #0066ff;
  --bg-dark: #030712;
  --card-glass: rgba(15, 23, 42, 0.4);
  --border-glass: rgba(255, 255, 255, 0.08);
  --font-main: "Plus Jakarta Sans", sans-serif;
  --accent-gold: #e2b87e;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: #f8fafc;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 242, 255, 0.05) 0%,
    transparent 50%
  );
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url("Assets/ai.gif");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: overlay;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 10;
  margin-bottom: 60px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.05);
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: 100px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease-out;
}

.hero-actions {
  display: flex;
  gap: 32px;
  justify-content: center;
  animation: fadeInUp 1.4s ease-out;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shard {
  position: absolute;
  background: linear-gradient(45deg, var(--primary), transparent);
  border-radius: 20px;
  opacity: 0.1;
  filter: blur(40px);
}

.shard-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation: floatVisual 8s infinite;
}
.shard-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: 5%;
  animation: floatVisual 12s infinite reverse;
}
.shard-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 20%;
  animation: floatVisual 10s infinite 2s;
}

@keyframes floatVisual {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(10deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #475569;
}

.scroll-indicator span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #475569;
  border-radius: 20px;
  position: relative;
}

.mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  z-index: -1;
}

.glow-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
    circle at center,
    rgba(0, 102, 255, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.section-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-image: url("Assets/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.central-core {
  position: relative;
  z-index: 20;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 30% 30%, #1e293b, #0f172a);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-glass);
  box-shadow:
    0 0 80px rgba(0, 242, 255, 0.15),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
  padding: 40px;
  animation: floating 6s infinite ease-in-out;
}

.core-pulse {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid rgba(0, 242, 255, 0.2);
  animation: pulse-ring 4s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

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

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.sub-topic-tile {
  position: absolute;
  width: 220px;
  padding: 16px 20px;
  background: var(--card-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  z-index: 10;
  backface-visibility: hidden;
  will-change: transform, border-color;
  opacity: 1;
  transform: translateY(0);
}

.sub-topic-tile:hover {
  border-color: var(--primary);
  background: rgba(15, 23, 42, 0.9);
  transform: scale(1.05) translateY(-5px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 242, 255, 0.2);
}

.tile-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(0, 242, 255, 0.1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  pointer-events: none;
}

.sub-topic-tile:hover .tile-icon-box {
  background: var(--primary);
  color: #000;
}

.tile-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.2;
  pointer-events: none;
}

.line-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.beam {
  stroke: rgba(0, 242, 255, 0.08);
  stroke-width: 1.5;
  fill: none;
  transition: all 0.4s ease;
}

.beam.active {
  stroke: var(--primary);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px var(--primary));
  opacity: 1;
}

.services-section {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
  padding: 40px 5%;
  width: 100%;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.badge {
  background: rgba(226, 184, 126, 0.1);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(226, 184, 126, 0.2);
  margin-bottom: 24px;
  display: inline-block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-card.revealed:hover {
  transform: translateY(-10px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-gold),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--accent-gold), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.service-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.7;
  font-weight: 400;
}

.service-image {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-image.revealed {
  opacity: 1;
  transform: translateY(0);
}

.services-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .service-image {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .service-image {
    height: 300px;
  }
}

.strength-section {
  padding: 50px 5%;
  background: radial-gradient(circle at center, #0a0f1e, #000);
  position: relative;
  overflow: hidden;
  perspective: 2000px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 40px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.card-large {
  grid-column: span 2;
  grid-row: span 1;
  background: linear-gradient(145deg, rgba(0, 242, 255, 0.05), transparent);
}
.card-tall {
  grid-row: span 2;
}
.card-featured {
  grid-column: span 2;
  background: radial-gradient(
    circle at top right,
    rgba(226, 184, 126, 0.05),
    transparent
  );
}

.bento-card:hover {
  transform: translateZ(50px) rotateX(4deg) rotateY(-2deg);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.bento-card.revealed:hover {
  transform: translateZ(50px) rotateX(4deg) rotateY(-2deg);
}

.bento-card .card-content {
  transform: translateZ(30px);
  position: relative;
  z-index: 2;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--primary);
  opacity: 0.8;
  transition: transform 0.4s ease;
}

.bento-card:hover .card-icon {
  transform: scale(1.1) translateZ(20px);
  color: #fff;
}

.card-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 0.8;
  pointer-events: none;
  transition: color 0.4s ease;
}

.bento-card:hover .card-number {
  color: rgba(0, 242, 255, 0.05);
}

.card-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.card-desc {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
}

.stat-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: 12px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.model-section {
  padding: 50px 5%;
  background: #030712;
  position: relative;
}

.model-flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.model-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100px;
  bottom: 100px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary),
    var(--accent-gold),
    var(--primary)
  );
  opacity: 0.15;
  transform: translateX(-50%);
}

.model-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.model-step.revealed {
  opacity: 1;
  transform: translateY(0);
}

.model-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-info {
  width: 45%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: all 0.4s ease;
}

.model-step:hover .step-info {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.step-marker {
  width: 60px;
  height: 60px;
  background: #0f172a;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.model-step:nth-child(even) .step-marker {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(226, 184, 126, 0.2);
}

.step-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.model-step:nth-child(even) .step-label {
  color: var(--accent-gold);
}

.header-floating {
  text-align: center;
  margin-bottom: 80px;
}

#detailPanel {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 90%;
  max-width: 600px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: none;
  text-align: center;
}

#detailPanel.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.step-image-wrapper {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.model-step.revealed .step-image-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.step-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.85;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.model-step:hover .step-image {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .model-flow::before {
    left: 30px;
  }
  .model-step,
  .model-step:nth-child(even) {
    flex-direction: row;
  }
  .step-info {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  .step-marker {
    left: 30px;
    transform: translateX(-50%);
  }
  .step-image-wrapper {
    display: none;
  }
}
/* ================= FOOTER LINK POLISH ================= */

/* Remove default hyperlink styling */
.footer-links a {
  color: #020617;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* Footer text links (non-anchor spans) */
.footer-links span {
  color: #334155;
  font-size: 15px;
}

/* Section titles */
.footer-links h4 {
  color: #020617;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ================= CONTACT CTA FIX ================= */

.footer-cta h3 {
  font-size: 20px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 12px;
  vertical-align: mi;
}

.footer-cta a {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

.footer-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.4);
}

/* ================= BRAND TEXT ================= */

.footer-brand p {
  color: #334155;
  font-size: 15.5px;
  line-height: 1.6;
  margin-top: 12px;
}
/* ================= FOOTER – MAKE "WHAT WE DO" SAME AS "COMPANY" ================= */

/* Section titles */
.footer-links h4,
.footer-cta h3 {
  font-size: 18px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 16px;
}

/* ALL footer items – links & text */
.footer-links a,
.footer-links span {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 15.5px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

/* Hover effect – same for both */
.footer-links a:hover,
.footer-links span:hover {
  color: #2563eb;
}

/* Remove any inherited blue/link styles */
.footer-white a:visited,
.footer-white a:active {
  color: #ffffff !important;
}

/* Contact button polish (keep as button, not link-like) */
.footer-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}
/* ================= WORKING MODEL ================= */
.working-model {
  padding: 120px 10%;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.15),
      transparent 60%
    ),
    linear-gradient(135deg, #1c2536, #0f1624);
  color: #fff;
  text-align: center;
}

.wm-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.wm-sub {
  opacity: 0.7;
  margin-bottom: 70px;
  font-size: 1.1rem;
}

/* GRID */
.wm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* CARD */
.wm-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 40px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
  position: relative;
  overflow: hidden;
}

.wm-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.7);
}

/* ACCENT STRIP */
.wm-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: currentColor;
}

/* TEXT */
.wm-card h4 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.wm-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* COLORS */
.blue {
  color: #6bdba8;
}
.navy {
  color: #4f7cff;
}
.purple {
  color: #000000;
}
.violet {
  color: #ffffff;
}
.gray {
  color: #cbd5e1;
}
.orange {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .working-model {
    padding: 90px 7%;
  }
}
/* =====================================================
    WORKING MODEL SECTION – FINAL FIXED VERSION
  ===================================================== */

.working-model {
  position: relative;
  padding: 100px 8%;
  margin: 0 !important;
  color: black;

  /* Background image */
  background: url("Assets/2ndbg.png") center / cover no-repeat;

  overflow: hidden;
}

/* Remove reveal transform impact */
.working-model.reveal {
  transform: none !important;
}

/* Title */
.wm-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
  margin: 0 0 10px;
  color: #903232;
}

.wm-sub {
  text-align: center;
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 70px;
}

/* Grid */
.wm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* Card base */
.wm-card {
  position: relative;
  padding: 34px 30px;
  border-radius: 26px;

  background: linear-gradient(
    180deg,
    rgba(25, 30, 50, 0.92),
    rgba(15, 18, 35, 0.92)
  );

  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Accent strip */
.wm-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  height: 72%;
  width: 6px;
  border-radius: 6px;
  background: var(--accent);
}

/* Hover */
.wm-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.8),
    0 0 40px var(--glow);
}

/* Text */
.wm-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.wm-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e2e8f5;
}

/* Color variants */
.wm-card.blue {
  --accent: #3fd2c7;
  --glow: rgba(63, 210, 199, 0.35);
}

.wm-card.navy {
  --accent: #4f7cff;
  --glow: rgba(79, 124, 255, 0.35);
}

.wm-card.purple {
  --accent: #8b6cff;
  --glow: rgba(139, 108, 255, 0.35);
}

.wm-card.violet {
  --accent: #a78bfa;
  --glow: rgba(167, 139, 250, 0.35);
}

.wm-card.gray {
  --accent: #9ca3af;
  --glow: rgba(180, 190, 200, 0.35);
}

.wm-card.orange {
  --accent: #f59e0b;
  --glow: rgba(245, 158, 11, 0.45);
}

/* HARD FIX: remove gap before footer */
.working-model {
  padding-bottom: 100px;
  margin-bottom: 0 !important;
}

.footer-white {
  margin-top: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .working-model {
    padding: 80px 6%;
  }

  .wm-sub {
    margin-bottom: 50px;
  }
}
/* ======================================================
    HEADER – HARD OVERRIDE (NO CONFLICT, NO DEPENDENCY)
    PLACE THIS AT THE VERY END OF YOUR CSS FILE
  ====================================================== */

/* Base header */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  padding: 14px 60px !important;

  background: transparent !important;
  color: #ffffff !important;

  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease !important;
}

/* ALL nav links – default */
.header a,
.header nav a {
  color: #ffffff !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

/* =====================================
    INITIAL STATE – TRANSPARENT
  ===================================== */
.header.transparent {
  background-color: rgba(2, 6, 23, 0.35) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: none !important;
}

/* Keep text WHITE */
.header.transparent a,
.header.transparent nav a {
  color: #ffffff !important;
}

/* =====================================
    NAV SPACING & HOVER
  ===================================== */
.header nav a {
  margin-left: 26px !important;
}

.header nav a:hover {
  opacity: 0.7 !important;
}
/* ================= TEAM SECTION ================= */
.team-section {
  padding: 100px 8%;
  text-align: center;
}

.team-section h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

.team-section h2 span {
  color: var(--accent);
}

/* Wrapper */
.team-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

/* Track */
.team-carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

/* Card */
.team-card {
  min-width: 260px;
  background: linear-gradient(135deg, #0e1535, #050814);
  border-radius: 22px;
  padding: 25px 20px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Image wrapper */
.team-img {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent);
}

/* LinkedIn Overlay */
.linkedin-link {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 32, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.35s ease;
}

.linkedin-link img {
  width: 36px;
  height: 36px;
}

/* Hover */
.team-card:hover .linkedin-link {
  opacity: 1;
  transform: scale(1);
}

.team-card:hover .team-img {
  box-shadow: 0 0 30px rgba(63, 210, 199, 0.4);
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Navigation */
.team-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(63, 210, 199, 0.35);
  border: none;
  font-size: 28px;
  color: #fff;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.team-nav:hover {
  background: rgba(63, 210, 199, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.team-nav.prev {
  left: 12px; /* ✅ INSIDE container */
}

.team-nav.next {
  right: 12px;
}

.team-nav:hover {
  background: rgba(63, 210, 199, 0.4);
}

.team-nav.prev {
  left: -12px;
}

.team-nav.next {
  right: -12px;
}

/* Mobile */
@media (max-width: 768px) {
  .team-nav {
    display: none;
  }
  .team-card {
    min-width: 220px;
  }
}
/* ===== EVENT AUTO SCROLL ===== */

.auto-scroll {
  animation: scrollEvents 25s linear infinite;
}

@keyframes scrollEvents {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.team-carousel-wrapper:hover .auto-scroll {
  animation-play-state: paused;
}

/* Event cards */
.event-card {
  min-width: 320px;
  height: 220px;
  overflow: hidden;
  border-radius: 22px;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-section,
.strength-section,
.model-section {
  position: relative;
  z-index: 2;
}
.hero-section,
.section-container,
.services-section,
.strength-section,
.model-section {
  position: relative;
  z-index: 2;
}
/* ======================================================
    HEADER – FINAL DARK THEME (NO WHITE ANYWHERE)
  ====================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 60px;

  background: rgba(2, 6, 23, 0.4);
  backdrop-filter: blur(10px);

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* TOP STATE */
.header.transparent {
  background: rgba(2, 6, 23, 0.35);
  box-shadow: none;
}

/* SCROLLED STATE – STILL DARK */
.header.scrolled {
  background: rgba(2, 6, 23, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

/* NAV LINKS */
.header nav a {
  margin-left: 26px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.25s ease;
}

/* NAV HOVER */
.header nav a:hover {
  color: var(--primary);
}

/* LOGO */
.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
/* ================= HEADER STATES ================= */

/* Top (hero) */
.header.header-top {
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.75),
    rgba(2, 6, 23, 0.35)
  );
  backdrop-filter: blur(10px);
  box-shadow: none;
}

/* After scroll – solid premium dark */
.header.header-scrolled {
  background: linear-gradient(135deg, #020617, #020617);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

/* Nav text (always visible) */
.header a {
  color: #f8fafc;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* Hover polish */
.header nav a:hover {
  color: var(--primary);
}
/* FORCE HEADER ABOVE EVERYTHING */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001; /* ABOVE noise + loader */
}

/* HEADER STATES */
.header-top {
  background: transparent;
}

.header-scrolled {
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(12px);
}

/* FOOTER VISIBILITY */
#footer {
  position: relative;
  z-index: 10;
}
/* ======================================================
    GLOBAL SERVICES DROPDOWN (DESKTOP + MOBILE)
  ====================================================== */

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chevron {
  transition: transform 0.3s ease;
}

/* Dropdown panel */
.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 230px;

  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 14px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 22px;
  color: #cbd5f5;
  font-size: 14px;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}

/* ACTIVE STATE */
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown.active .chevron {
  transform: rotate(180deg);
}

/* ================= MOBILE NAV FIX ================= */

.mobile-nav .dropdown-menu {
  position: static;
  box-shadow: none;
  padding-left: 16px;
  transform: none;
  background: transparent;
}

.mobile-nav .dropdown-menu a {
  padding: 10px 0;
  font-size: 15px;
}

.mobile-nav .dropdown-menu {
  display: none;
}

.mobile-nav .nav-dropdown.active .dropdown-menu {
  display: block;
}
/* ================= NAV LAYOUT HARD FIX ================= */

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

/* Treat dropdown exactly like a link */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Button should look like <a> */
.nav-link.dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;

  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;

  color: #ffffff;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Prevent line break */
.nav a,
.nav button {
  white-space: nowrap;
}

/* Chevron animation */
.chevron {
  font-size: 11px;
  transition: transform 0.3s ease;
}

/* ================= DROPDOWN PANEL ================= */

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;

  min-width: 220px;
  padding: 12px 0;

  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(14px);
  border-radius: 14px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #cbd5f5;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}

/* ACTIVE */
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown.active .chevron {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: relative;
}

/* Dropdown hidden */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;

  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 12px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* Hover opens dropdown */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Chevron rotate */
.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}
/* ======================================================
   SERVICES DROPDOWN – FINAL OVERRIDE (DO NOT MOVE)
====================================================== */

/* Wrapper */
.nav-dropdown {
  position: relative;
}

/* Button styled like link */
.dropdown-toggle,
.mobile-services-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;

  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;

  color: #ffffff;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Chevron */
.chevron {
  font-size: 11px;
  transition: transform 0.25s ease;
}

/* Dropdown panel */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;

  background: rgba(2, 6, 23, 0.96);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 10px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #cbd5f5;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}

/* Main services entry */
.dropdown-main {
  font-weight: 800;
  color: #ffffff;
}

/* ===== DESKTOP ===== */
.desktop-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* ===== MOBILE ===== */
.mobile-dropdown .dropdown-menu {
  position: static;
  background: transparent;
  box-shadow: none;
  padding-left: 14px;
  display: none;
}

.mobile-dropdown.open .dropdown-menu {
  display: block;
}

.mobile-dropdown.open .chevron {
  transform: rotate(180deg);
}
.footer-white {
  background: radial-gradient(circle at top, #0c1020 0%, #050814 70%);
  color: #ffffff;
  padding: 70px 80px 30px;
  font-family: "Inter", sans-serif;
}

/* Layout */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Brand */
.footer-brand img {
  max-width: 220px;
}

/* Links */
.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* CTA */
.footer-cta h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Social */
.footer-social {
  display: flex;
  gap: 14px;
}

.linkedin-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.footer-social a:hover .linkedin-icon {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.55);
}

/* Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.linkedin-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: brightness(1.1) contrast(1.2);
}

/* Optional subtle hover */
.footer-social a:hover .linkedin-icon {
  transform: translateY(-3px);
}
/* ======================================================
   DETAIL PANEL – VISIBILITY + MOBILE POLISH
====================================================== */

#detailPanel {
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  #detailPanel {
    bottom: 16px;
    padding: 18px;
    font-size: 14px;
  }
}
