*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #87DCEA;
  --accent-dark: #4fc3d8;
  --accent-glow: rgba(135, 222, 234, 0.35);
  --accent-subtle: rgba(135, 222, 234, 0.1);
  --accent-border: rgba(135, 222, 234, 0.25);
  --bg-dark: #080c18;
  --bg-mid: #0d1526;
  --text-light: #eef4ff;
  --text-muted: #8fa8c8;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ── Mega Dropdown ── */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }

.mega-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(8, 12, 24, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.mega-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mega-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 5%;
}

.mega-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 1rem 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  margin-bottom: -1px;
}

.mega-tab i { color: var(--accent); font-size: 0.95rem; }
.mega-tab:hover { color: var(--text-light); }
.mega-tab.active { color: var(--text-light); border-bottom-color: var(--accent); }

.mega-panels { padding: 1.8rem 5%; }
.mega-panel { display: none; }
.mega-panel.active { display: block; }

.panel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.mega-cards { display: flex; gap: 1rem; flex-wrap: nowrap; }

.mega-card {
  flex: 1;
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.mega-card:hover {
  border-color: var(--accent-border);
  background: var(--accent-subtle);
  transform: translateY(-3px);
}

.mega-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity 0.25s;
}

.mega-card:hover img { opacity: 1; }

.mega-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 0.7rem 0.9rem 0.2rem;
}

.mega-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0 0.9rem 0.8rem;
  line-height: 1.5;
}

.mega-footer {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mega-footer a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.mega-footer a:hover { opacity: 0.75; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 100;
  background: rgba(8, 12, 24, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  animation: slideDown 0.7s ease forwards;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.accent { color: var(--accent); }

.nav-links { display: flex; list-style: none; gap: 2.2rem; }

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-light); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-signup {
  text-decoration: none;
  background: var(--accent);
  color: #080c18;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1.3rem;
  border-radius: 6px;
  transition: background 0.25s, transform 0.2s;
}

.btn-signup:hover { background: var(--accent-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,12,24,0.93) 0%, rgba(8,12,24,0.72) 50%, rgba(5,18,40,0.88) 100%);
}

/* ── Floating icons ── */
.floating-icons { position: absolute; inset: 0; pointer-events: none; }

.icon {
  position: absolute;
  color: rgba(135, 222, 234, 0.25);
  animation: float 6s ease-in-out infinite;
}

.icon-1  { top: 15%; left: 8%;   font-size: 2rem;   animation-delay: 0s;   }
.icon-2  { top: 25%; right: 10%; font-size: 1.8rem;  animation-delay: 1s;   }
.icon-3  { top: 60%; left: 5%;   font-size: 2.2rem;  animation-delay: 2s;   }
.icon-4  { top: 70%; right: 8%;  font-size: 1.6rem;  animation-delay: 0.5s; }
.icon-5  { top: 40%; right: 5%;  font-size: 2rem;    animation-delay: 1.5s; }
.icon-6  { top: 80%; left: 15%;  font-size: 1.8rem;  animation-delay: 2.5s; }
.icon-7  { top: 50%; left: 2%;   font-size: 1.6rem;  animation-delay: 3s;   }
.icon-8  { top: 88%; right: 18%; font-size: 1.5rem;  animation-delay: 1.8s; }
.icon-9  { top: 20%; left: 20%;  font-size: 2rem;    animation-delay: 0.8s; }
.icon-10 { top: 75%; left: 30%;  font-size: 2rem;    animation-delay: 2.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(8deg); }
}

/* ── Hero content ── */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 2rem;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.tagline-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2.2rem;
  animation: fadeUp 0.8s ease 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.9s both;
}

.btn-primary {
  text-decoration: none;
  background: var(--accent);
  color: #080c18;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-outline {
  text-decoration: none;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.25s, color 0.25s, transform 0.2s, background 0.25s;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
  transform: translateY(-3px);
}

.typing-wrapper {
  font-size: 0.9rem;
  color: var(--text-muted);
  animation: fadeUp 0.8s ease 1.1s both;
}

.typing-text { color: var(--accent); font-weight: 600; }

.cursor {
  color: var(--accent);
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeUp 1s ease 1.5s both;
}

.scroll-indicator span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── About Section ── */
.about { background: #f0f2f5; padding: 6rem 5%; }

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-left { flex: 1; }

.about-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0d1526;
  background: rgba(135,222,234,0.25);
  border: 1px solid var(--accent-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.about-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0d1526;
  margin-bottom: 1rem;
}

.about-desc {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.about-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.2rem; }

.about-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.about-step:hover {
  border-color: var(--accent-border);
  box-shadow: 0 4px 20px rgba(135,222,234,0.2);
}

.step-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.step-body h4 { font-size: 0.95rem; font-weight: 600; color: #0d1526; margin-bottom: 0.25rem; }
.step-body p  { font-size: 0.82rem; color: #4a5568; line-height: 1.6; }

.about-cta { display: inline-block; }

.about-right { flex: 1; }

.about-img-wrap { position: relative; border-radius: 16px; overflow: visible; }

.about-img-main {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
}

.about-badge-float {
  position: absolute;
  top: -18px; right: 20px;
  background: var(--accent);
  color: #080c18;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.about-card-float {
  position: absolute;
  bottom: -20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 160px;
  max-width: 48%;
}

.about-card-left  { left: 12px; }
.about-card-right { right: 12px; }

.about-card-float i { font-size: 1.6rem; color: var(--accent); }
.about-card-float div { display: flex; flex-direction: column; }
.about-card-float strong { font-size: 0.88rem; color: #0d1526; font-weight: 600; }
.about-card-float span  { font-size: 0.75rem; color: #4a5568; }

/* ══════════════════════════════════════
   SHOWCASE SECTION
══════════════════════════════════════ */
.showcase {
  position: relative;
  background: #f4f5f7;
  padding: 7rem 5% 6rem;
  overflow: hidden;
}

.sketch-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(135,222,234,0.5);
  animation: particleDrift linear infinite;
}

@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(135,222,234,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }

.showcase-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0d1526;
  background: rgba(135,222,234,0.2);
  border: 1px solid var(--accent-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.showcase-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0d1526;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.showcase-desc {
  font-size: 0.95rem;
  color: #4a5568;
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 4rem;
}

.laptop-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  perspective: 1200px;
  min-height: 340px;
  position: relative;
}

.laptop-wrap {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), filter 0.6s ease;
  cursor: pointer;
}

.laptop-left {
  transform: translateX(60px) rotateY(22deg) rotateX(4deg) scale(0.82);
  filter: blur(1.5px) brightness(0.75);
  z-index: 1;
  margin-right: -60px;
}

.laptop-center {
  transform: translateY(-30px) rotateY(0deg) rotateX(2deg) scale(1.08);
  filter: blur(0) brightness(1);
  z-index: 3;
}

.laptop-right {
  transform: translateX(-60px) rotateY(-22deg) rotateX(4deg) scale(0.82);
  filter: blur(1.5px) brightness(0.75);
  z-index: 1;
  margin-left: -60px;
}

.laptop {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18));
}

.laptop-screen {
  width: 100%; height: 190px;
  background: #0d1117;
  border-radius: 10px 10px 0 0;
  border: 2px solid #2a2f3e;
  overflow: hidden;
  position: relative;
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #161b22;
  padding: 6px 10px;
  border-bottom: 1px solid #2a2f3e;
}

.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.screen-title { font-size: 0.65rem; color: #8b949e; margin-left: 6px; }

.code-area {
  padding: 8px 10px;
  font-size: 0.62rem;
  font-family: 'Courier New', monospace;
  line-height: 1.7;
  overflow: hidden;
  height: calc(100% - 28px);
  position: relative;
}

.code-line { white-space: nowrap; }
.pl1 { padding-left: 12px; }
.pl2 { padding-left: 24px; }
.pl3 { padding-left: 36px; }
.mt  { margin-top: 4px; }

.tag  { color: #7ee787; }
.attr { color: #79c0ff; }
.str  { color: #a5d6ff; }
.txt  { color: #e6edf3; }
.key  { color: #ff7b72; }
.prop { color: #d2a8ff; }
.val  { color: #79c0ff; }

.screen-preview {
  width: 100%;
  height: calc(100% - 28px);
  overflow: hidden;
  position: relative;
}

.screen-preview iframe {
  width: 1280px; height: 800px;
  border: none;
  transform: scale(0.228);
  transform-origin: top left;
  pointer-events: none;
  display: block;
}

.code-cursor {
  display: inline-block;
  color: #87dcea;
  font-weight: bold;
  animation: blink 0.8s step-end infinite;
  font-size: 0.75rem;
}

.laptop-base { width: 100%; display: flex; flex-direction: column; align-items: center; }

.laptop-hinge {
  width: 100%; height: 6px;
  background: linear-gradient(to bottom, #2a2f3e, #1a1f2e);
  border-left: 2px solid #2a2f3e;
  border-right: 2px solid #2a2f3e;
}

.laptop-bottom {
  width: 110%; height: 14px;
  background: linear-gradient(to bottom, #1e2330, #161b27);
  border-radius: 0 0 8px 8px;
  border: 1px solid #2a2f3e;
  border-top: none;
}

.laptop-glow {
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 60px;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.55;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

.glow-cyan   { background: #87dcea; }
.glow-orange { background: #ff8c42; }
.glow-green  { background: #56d364; }

@keyframes glowPulse {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 0.7;  transform: translateX(-50%) scaleX(1.1); }
}

.graph-labels { display: flex; justify-content: center; gap: 3rem; margin-top: 3rem; }

.glabel {
  font-size: 0.78rem;
  font-weight: 600;
  color: #4a5568;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 6px;
}

.glabel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
}

.glabel-1::after { background: #87dcea; }
.glabel-2::after { background: #ff8c42; }
.glabel-3::after { background: #56d364; }

/* ══════════════════════════════════════
   PROGRAMS / PRICING SECTION
══════════════════════════════════════ */
.programs {
  background: #f8f9fb;
  padding: 7rem 5%;
}

.programs-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section header */
.programs-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.programs-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.programs-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0d1526;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.programs-subtitle {
  font-size: 0.98rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Category block */
.prog-category { margin-bottom: 4rem; }

.prog-cat-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1526;
  margin-bottom: 1.8rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.prog-cat-label i { color: #2563eb; font-size: 1.2rem; }

/* Grid */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Card base */
.prog-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.prog-card-top {
  height: 5px;
  width: 100%;
}

.blue-top   { background: #2563eb; }
.green-top  { background: #16a34a; }
.orange-top { background: #ea580c; }

.prog-card-body { padding: 1.6rem; }

/* Icon */
.prog-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.blue-icon   { background: rgba(37,99,235,0.1);  color: #2563eb; }
.green-icon  { background: rgba(22,163,74,0.1);  color: #16a34a; }
.orange-icon { background: rgba(234,88,12,0.1);  color: #ea580c; }

/* Card text */
.prog-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1526;
  margin-bottom: 0.5rem;
}

.prog-desc {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

/* Meta list */
.prog-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #f1f5f9;
}

.prog-meta li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #334155;
}

.meta-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-weight: 500;
}

.meta-label i { font-size: 0.75rem; color: #2563eb; }

.prog-price {
  font-weight: 700;
  font-size: 1rem;
  color: #0d1526;
}

.green-price  { color: #16a34a; }
.orange-price { color: #ea580c; }

.prog-original {
  font-size: 0.78rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-left: 6px;
}

.prog-saving {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(22,163,74,0.1);
  color: #16a34a;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-left: 6px;
}

.orange-saving {
  background: rgba(234,88,12,0.1);
  color: #ea580c;
}

/* Outcomes */
.prog-outcomes { margin-bottom: 1.2rem; }

.outcomes-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.6rem;
}

.prog-outcomes ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }

.prog-outcomes li {
  font-size: 0.82rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 7px;
}

.prog-outcomes li i { color: #2563eb; font-size: 0.7rem; }

/* Project tag */
.prog-project {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

.prog-project i { color: #2563eb; }

/* Buttons */
.prog-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.blue-btn {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}

.blue-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.35);
}

.green-btn {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}

.green-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22,163,74,0.4);
}

.orange-btn {
  background: #ea580c;
  color: #fff;
  box-shadow: 0 4px 14px rgba(234,88,12,0.3);
}

.orange-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234,88,12,0.4);
}

/* ── Featured card ── */
.prog-featured {
  border-width: 2px;
  transform: scale(1.03);
  z-index: 2;
}

.green-featured  { border-color: #16a34a; box-shadow: 0 8px 32px rgba(22,163,74,0.18); }
.orange-featured { border-color: #ea580c; box-shadow: 0 8px 32px rgba(234,88,12,0.18); }

.prog-featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.16);
}

.green-featured:hover  { box-shadow: 0 18px 48px rgba(22,163,74,0.28); }
.orange-featured:hover { box-shadow: 0 18px 48px rgba(234,88,12,0.28); }

/* Badge corner */
.prog-badge-corner {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.green-badge  { background: #16a34a; color: #fff; }
.orange-badge { background: #ea580c; color: #fff; }

/* ══════════════════════════════════════
   NEWS SECTION
══════════════════════════════════════ */
.news-section {
  background: #fff;
  padding: 7rem 5%;
}

.news-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.news-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 0.32rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.news-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2563eb;
  animation: pulse 1.5s ease infinite;
}

.news-section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0d1526;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.news-section-sub {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 480px;
}

.news-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
}

.news-view-all:hover {
  border-color: #2563eb;
  gap: 11px;
}

/* Cards grid */
.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: #f8f9fb;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.news-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-img-wrap img { transform: scale(1.05); }

.news-cat {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.news-cat-blue   { background: #dbeafe; color: #1d4ed8; }
.news-cat-green  { background: #dcfce7; color: #15803d; }
.news-cat-purple { background: #f3e8ff; color: #7e22ce; }

.news-card-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  color: #94a3b8;
  margin-bottom: 0.7rem;
}

.news-card-meta i { font-size: 0.65rem; }

.news-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1526;
  line-height: 1.45;
  margin-bottom: 0.6rem;
}

.news-card-excerpt {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  transition: gap 0.2s;
}

.news-card-link:hover { gap: 10px; }

/* Responsive */
@media (max-width: 1023px) {
  .news-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .news-section { padding: 4rem 5%; }
  .news-cards-grid { grid-template-columns: 1fr; }
  .news-section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 479px) {
  .news-card-img-wrap { height: 170px; }
  .news-section-title { font-size: 1.6rem; }
}

/* News modal */
.news-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.6);
  backdrop-filter: blur(4px);
  z-index: 500;
}

.news-modal-overlay.open { display: block; }

.news-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(560px, 92vw);
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  z-index: 501;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.news-modal.open {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.news-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: #f1f5f9;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.news-modal-close:hover { background: #e2e8f0; color: #0d1526; }

.news-modal-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1526;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.news-modal-date {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-modal-body {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.news-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 0.6rem;
  padding: 0.65rem 1.4rem;
  background: #2563eb;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.news-modal-btn:hover { background: #1d4ed8; transform: translateY(-1px); }

/* ══════════════════════════════════════
   MEET YOUR LECTURER
══════════════════════════════════════ */
.lecturer {
  background: #f8f9fb;
  padding: 7rem 5%;
}

.lecturer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

/* ── Left: image ── */
.lecturer-img-col {
  flex: 0 0 420px;
  position: relative;
}

.lecturer-img-wrap {
  position: relative;
  width: 100%;
}

/* Blob background shape */
.lec-blob {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 60%, #d1fae5 100%);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  z-index: 0;
  animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  50%      { border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
}

/* Dot grid decoration */
.lec-dots {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, #2563eb22 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 0;
}

.lec-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  border: 4px solid #fff;
}

/* Floating badge */
.lec-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  z-index: 2;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0d1526;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.lec-badge i { color: #2563eb; font-size: 0.9rem; }

/* ── Right: content ── */
.lecturer-content { flex: 1; }

.lec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 0.32rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.lec-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2563eb;
  animation: pulse 1.5s ease infinite;
}

.lec-name {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0d1526;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.lec-role {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 1.4rem;
}

.lec-role i { font-size: 0.82rem; }

.lec-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.lec-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.4rem 0 2rem;
}

.lec-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 500;
  color: #334155;
}

.lec-highlights li i {
  color: #16a34a;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.lec-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.82rem 1.8rem;
  background: #2563eb;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,99,235,0.28);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.lec-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.38);
}

.lec-btn i { transition: transform 0.2s; }
.lec-btn:hover i { transform: translateX(4px); }

/* Responsive */
@media (max-width: 1023px) {
  .lecturer-inner { gap: 3rem; }
  .lecturer-img-col { flex: 0 0 340px; }
}

@media (max-width: 767px) {
  .lecturer { padding: 4rem 5%; }
  .lecturer-inner { flex-direction: column; gap: 2.5rem; }
  .lecturer-img-col { flex: unset; width: 100%; max-width: 340px; margin: 0 auto; }
  .lec-highlights { grid-template-columns: 1fr; }
  .lec-badge { left: 10px; }
}

@media (max-width: 479px) {
  .lec-name { font-size: 1.7rem; }
  .lecturer-img-col { max-width: 280px; }
}

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
.contact {
  background: #f9fafb;
  padding: 7rem 5%;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

/* ── Left ── */
.contact-left { flex: 1; }

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 0.32rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.contact-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2563eb;
  animation: pulse 1.5s ease infinite;
}

.contact-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0d1526;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.contact-intro {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.contact-info-item:hover .contact-info-icon {
  background: #2563eb;
  color: #fff;
  transform: scale(1.08);
}

.contact-info-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0d1526;
  margin-bottom: 0.3rem;
}

.contact-info-item p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.7;
}

.contact-info-item a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-info-item a:hover { opacity: 0.75; }

/* Social */
.contact-social-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.contact-social-icons {
  display: flex;
  gap: 0.7rem;
}

.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  filter: brightness(1.1);
}

.social-icon.whatsapp  { background: #25d366; }
.social-icon.linkedin  { background: #0a66c2; }
.social-icon.instagram { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.social-icon.twitter   { background: #000; }

/* ── Right: Card ── */
.contact-right {
  flex: 0 0 480px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem 2rem;
  box-shadow: 0 8px 40px rgba(37,99,235,0.1), 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d1526;
  margin-bottom: 1.6rem;
}

.cf-field {
  margin-bottom: 1.1rem;
}

.cf-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}

.cf-field label span { color: #ef4444; }

.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.83rem;
  color: #0d1526;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder { color: #b0bec5; }

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.cf-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.cf-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  background: #2563eb;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 0.4rem;
}

.cf-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,99,235,0.38);
}

.cf-success {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9px;
  font-size: 0.82rem;
  color: #166534;
  font-weight: 500;
}

.cf-success i { color: #16a34a; }
.cf-success.show { display: flex; }

/* Responsive */
@media (max-width: 1023px) {
  .contact-inner { gap: 3rem; }
  .contact-right { flex: 0 0 400px; }
}

@media (max-width: 767px) {
  .contact { padding: 4rem 5%; }
  .contact-inner { flex-direction: column; gap: 2.5rem; }
  .contact-right { flex: unset; width: 100%; }
}

@media (max-width: 479px) {
  .contact-title { font-size: 1.7rem; }
  .contact-card { padding: 1.5rem 1.2rem; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #0d1a2d;
  color: #94a3b8;
  font-family: 'Poppins', sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 5% 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.8fr;
  gap: 3rem;
}

/* Brand col */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-logo-icon { color: #87DCEA; font-size: 1rem; }
.footer-accent { color: #87DCEA; }

.footer-brand-desc {
  font-size: 0.8rem;
  line-height: 1.75;
  color: #64748b;
  margin-bottom: 1.4rem;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.footer-social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social-link:hover {
  background: #87DCEA;
  color: #0d1a2d;
  transform: translateY(-2px);
  border-color: transparent;
}

.footer-more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #87DCEA;
  text-decoration: none;
  transition: gap 0.2s;
}

.footer-more-link:hover { gap: 11px; }

/* Link columns */
.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: #87DCEA;
  padding-left: 4px;
}

/* Newsletter col */
.footer-newsletter-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.footer-newsletter-form input {
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter-form input::placeholder { color: #475569; }
.footer-newsletter-form input:focus { border-color: #87DCEA; }

.footer-newsletter-form button {
  padding: 0.65rem 1rem;
  background: #2563eb;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.footer-newsletter-form button:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-quick-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-quick-link i { color: #87DCEA; font-size: 0.75rem; }
.footer-quick-link:hover { color: #87DCEA; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #475569;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #87DCEA; }

/* Footer responsive */
@media (max-width: 1023px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-newsletter-col { grid-column: span 2; }
  .footer-newsletter-form { flex-direction: row; }
  .footer-newsletter-form input { flex: 1; }
  .footer-newsletter-form button { width: auto; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5% 2rem; }
  .footer-newsletter-col { grid-column: span 1; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Print ── */
@media print {
  .navbar, .floating-icons, .scroll-indicator,
  .hero-buttons, .typing-wrapper, .showcase { display: none; }
  .hero { background: #fff; min-height: auto; padding: 2rem; }
  .hero-overlay { display: none; }
  .hero-heading, .hero-desc, .tagline { color: #000; }
  .accent { color: #1a8fa8; }
  .about { background: #fff; padding: 2rem; }
  .about-img-wrap, .about-badge-float, .about-card-float { display: none; }
  .about-heading, .step-body h4 { color: #000; }
  .about-desc, .step-body p { color: #333; }
}
