/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #04050f;
  --bg-secondary: #080a1a;
  --bg-card: #0d1025;
  --bg-card-hover: #111530;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 229, 255, 0.15);
  --text-primary: #f0f4ff;
  --text-secondary: #8a9abf;
  --text-muted: #4a5578;
  --accent-cyan: #00e5ff;
  --accent-blue: #2979ff;
  --accent-violet: #7c4dff;
  --accent-pink: #ff4081;
  --accent-orange: #ff6d00;
  --accent-gold: #ffd600;
  --accent-green: #00e676;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Fira Code', monospace;
  --font-accent: 'Space Grotesk', sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: rgba(0, 229, 255, 0.2);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.3);
  border-radius: 3px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #04050f;
}

.btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: var(--r-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* ===== TAG ===== */
.tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 229, 255, 0.18);
  font-family: var(--font-accent);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  margin-top: 14px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.section-title span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.78;
  font-weight: 400;
  letter-spacing: 0.005em;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.rv1 {
  transition-delay: 0.1s;
}

.rv2 {
  transition-delay: 0.2s;
}

.rv3 {
  transition-delay: 0.3s;
}

.rv4 {
  transition-delay: 0.4s;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-topbar {
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-violet));
}

.nav-main {
  background: rgba(4, 5, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#navbar.scrolled .nav-main {
  background: rgba(4, 5, 15, 0.97);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav-logo-name span {
  color: var(--accent-cyan);
}

.nav-logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 7px 13px;
  border-radius: var(--r-sm);
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 500;
  font-family: var(--font-accent);
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone:hover {
  color: var(--accent-cyan);
}

.nav-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}

.nav-menu-btn:hover,
.nav-menu-btn:active {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--accent-cyan);
}

/* ===== MOBILE NAV — FULL REWRITE ===== */

/* Overlay backdrop */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

/* Drawer panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  height: 100dvh;
  /* dynamic viewport height on iOS */
  background: var(--bg-secondary);
  background: linear-gradient(160deg, #0d1025 0%, #080a1a 100%);
  border-left: 1px solid var(--border-accent);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 48px rgba(0, 0, 0, 0.6);
}

.mobile-nav.open {
  transform: translateX(0);
}

/* Top accent line */
.mobile-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-violet));
  z-index: 1;
}

/* Header row */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.mobile-nav-logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.mobile-nav-logo-name span {
  color: var(--accent-cyan);
}

/* Close button */
.mobile-nav-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-close:hover,
.mobile-nav-close:active {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* Contact strip */
.mobile-nav-contact {
  padding: 12px 20px;
  background: rgba(0, 229, 255, 0.05);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-contact a i {
  color: var(--accent-cyan);
  font-size: 0.75rem;
}

.mobile-nav-contact a:hover {
  color: var(--accent-cyan);
}

/* Scrollable links area */
.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 14px 14px 0;
}

/* Thin styled scrollbar inside drawer */
.mobile-nav-body::-webkit-scrollbar {
  width: 3px;
}

.mobile-nav-body::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-nav-body::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.2);
  border-radius: 2px;
}

/* Section label */
.mobile-nav-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 8px 8px;
  margin-top: 4px;
}

/* Nav link rows */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mobile-nav-links .nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  min-height: 48px;
  /* iOS recommended touch target */
}

.mobile-nav-links .nav-link::after {
  display: none;
}

/* remove desktop underline effect */

.mobile-nav-links .nav-link .mn-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.mobile-nav-links .nav-link .mn-label {
  flex: 1;
  font-family: var(--font-accent);
  font-weight: 600;
}

.mobile-nav-links .nav-link .mn-arrow {
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link:active {
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent-cyan);
}

.mobile-nav-links .nav-link:hover .mn-icon,
.mobile-nav-links .nav-link:active .mn-icon {
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent-cyan);
}

.mobile-nav-links .nav-link:hover .mn-arrow,
.mobile-nav-links .nav-link:active .mn-arrow {
  transform: translateX(3px);
  color: var(--accent-cyan);
}

/* Footer CTA area */
.mobile-nav-footer {
  padding: 16px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.2);
}

.mobile-nav-footer .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: 0.95rem;
  -webkit-tap-highlight-color: transparent;
}

/* Accreditation badges in drawer */
.mobile-nav-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
}

.mn-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.mn-badge i {
  color: var(--accent-gold);
  font-size: 0.6rem;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 229, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(41, 121, 255, 0.12) 0%, transparent 60%),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1800&q=70') center/cover no-repeat;
  filter: brightness(0.28) saturate(1.8);
  opacity: 1;
  animation: heroBgShimmer 20s ease-in-out infinite alternate;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 229, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(41, 121, 255, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124, 77, 255, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(4, 5, 15, 0.25) 0%, rgba(4, 5, 15, 0.65) 100%);
  z-index: 1;
}

#hero .hero-content,
#hero .hero-visual,
#hero .hero-particles,
#hero .hero-grid {
  z-index: 2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 229, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 255, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  margin-bottom: 28px;
}

.hero-badge-dot {
  font-size: 1rem;
}

.hero-badge-text {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.hero-title-line1 {
  display: block;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-stat {}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  pointer-events: none;
  z-index: 2;
}

.hero-float-img {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.1);
  animation: heroImgFloat linear infinite;
}

.hero-float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.4);
}

.hero-float-img-1 {
  width: 200px;
  height: 140px;
  top: 10%;
  right: 5%;
  animation: heroImgFloat1 7s ease-in-out infinite;
}

.hero-float-img-2 {
  width: 160px;
  height: 120px;
  top: 55%;
  right: 22%;
  animation: heroImgFloat2 8.5s ease-in-out infinite;
}

.hero-float-img-3 {
  width: 120px;
  height: 90px;
  top: 32%;
  right: 60%;
  animation: heroImgFloat3 6s ease-in-out infinite;
}

@keyframes heroImgFloat1 {

  0%,
  100% {
    transform: translateY(0px) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes heroImgFloat2 {

  0%,
  100% {
    transform: translateY(0px) rotate(2deg);
  }

  50% {
    transform: translateY(-10px) rotate(-1.5deg);
  }
}

@keyframes heroImgFloat3 {

  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(2.5deg);
  }
}

.hero-orb {
  position: absolute;
  inset: 0;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  transform: translate(-50%, -50%);
  animation: orbRotate linear infinite;
}

@keyframes orbRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 8px;
}

.marquee-item i {
  color: var(--accent-cyan);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image-frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(41, 121, 255, 0.06));
  border: 1px solid var(--border-accent);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-image-frame img.about-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(1.5);
  transition: transform 0.6s ease, filter 0.6s ease;
  z-index: 0;
}

.about-image-frame:hover img.about-bg-photo {
  transform: scale(1.05);
  filter: brightness(0.35) saturate(1.8);
}

.about-frame-inner {
  position: relative;
  z-index: 1;
}

.about-frame-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-icon-main {
  font-size: 4rem;
  margin-bottom: 12px;
}

.about-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.about-sub-label {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.floating-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: var(--r-md);
  text-align: center;
  min-width: 110px;
  z-index: 2;
}

.floating-badge-1 {
  top: 10%;
  right: -14%;
}

.floating-badge-2 {
  bottom: 20%;
  right: -16%;
}

.floating-badge-3 {
  bottom: 5%;
  left: 5%;
}

.fb-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent-cyan);
}

.fb-txt {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.af-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.af-icon.c {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
}

.af-icon.b {
  background: rgba(41, 121, 255, 0.1);
  color: var(--accent-blue);
}

.af-icon.v {
  background: rgba(124, 77, 255, 0.1);
  color: var(--accent-violet);
}

.af-icon.g {
  background: rgba(0, 230, 118, 0.1);
  color: var(--accent-green);
}

.af-icon.o {
  background: rgba(255, 109, 0, 0.1);
  color: var(--accent-orange);
}

.about-feature h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== IMPACT ===== */
#impact {
  padding: 48px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.impact-item {
  text-align: center;
}

.impact-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-label {
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 4px;
}

.impact-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== LEARNING PATH ===== */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.path-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.path-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.path-step-num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.path-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.path-step-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ===== COURSES ===== */
.search-section {
  margin-bottom: 28px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 20px;
}

.search-bar i {
  color: var(--text-muted);
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-tab {
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.course-group {
  display: none;
}

.course-group.active {
  display: block;
}

.dept-section {
  margin-bottom: 40px;
}

.dept-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.dept-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dept-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.dept-title-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.dept-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 55px;
}

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.07), rgba(41, 121, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.course-card::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.course-card:hover::before {
  opacity: 1;
}

.course-card:hover::after {
  left: 130%;
}

.course-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 229, 255, 0.12), 0 0 24px rgba(0, 229, 255, 0.08);
}

.cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.cc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.cc-meta {
  margin-bottom: 12px;
}

.cc-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}

.cc-tag.beginner {
  background: rgba(0, 230, 118, 0.1);
  color: var(--accent-green);
}

.cc-tag.intermediate {
  background: rgba(41, 121, 255, 0.1);
  color: var(--accent-blue);
}

.cc-tag.advanced {
  background: rgba(124, 77, 255, 0.1);
  color: var(--accent-violet);
}

.cc-enroll {
  display: block;
  width: 100%;
  padding: 8px;
  border-radius: var(--r-sm);
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-display);
  transition: var(--transition);
}

.cc-enroll:hover {
  background: rgba(0, 229, 255, 0.14);
}

/* ===== INTERNSHIP ===== */
.internship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.intern-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
  cursor: pointer;
}

.intern-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glow, rgba(0, 229, 255, 0.08)), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.intern-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.intern-card:hover::before {
  opacity: 1;
}

.intern-card:hover::after {
  left: 130%;
}

.intern-card:hover {
  border-color: rgba(0, 229, 255, 0.28);
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 229, 255, 0.15), 0 0 40px rgba(0, 229, 255, 0.07);
}

.intern-card:hover .intern-icon {
  transform: scale(1.18) rotate(-5deg);
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}

.intern-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1), filter 0.4s ease;
  display: inline-block;
}

.intern-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.intern-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.intern-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.intern-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.intern-features li i {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.intern-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.intern-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 600;
}

.intern-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== PLACEMENT ===== */
.placement-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.placement-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pf-card {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  transition: var(--transition);
}

.pf-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.07), -4px 0 0 rgba(0, 229, 255, 0.35);
  background: var(--bg-card-hover);
}

.pf-card {
  transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.pf-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.pf-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.pf-text {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.55;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.company-tags h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-tag {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.company-tag:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.why-card-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.why-text {
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ===== TRAINERS ===== */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.trainer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 20px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  overflow: hidden;
}

.trainer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(41, 121, 255, 0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trainer-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-violet));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.trainer-card:hover::before {
  opacity: 1;
}

.trainer-card:hover::after {
  transform: scaleX(1);
}

.trainer-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.12), 0 0 40px rgba(0, 229, 255, 0.08);
}

.trainer-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  overflow: hidden;
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
}

.trainer-avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trainer-card:hover .trainer-avatar::before {
  opacity: 1;
}

.trainer-card:hover .trainer-avatar {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
}

.trainer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.trainer-card:hover .trainer-avatar img {
  transform: scale(1.1);
}

.trainer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.trainer-card:hover .trainer-name {
  color: var(--accent-cyan);
}

.trainer-role {
  font-size: 0.72rem;
  color: var(--accent-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  background: rgba(0, 229, 255, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.trainer-dept {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.trainer-exp {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ===== FACILITIES ===== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.facility-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
}

.facility-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.15), 0 0 40px rgba(0, 229, 255, 0.1);
}

.facility-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.facility-visual img.facility-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.4);
  transition: transform 0.6s ease, filter 0.5s ease;
  z-index: 0;
}

.facility-card:hover .facility-photo {
  transform: scale(1.1);
  filter: brightness(0.4) saturate(1.8);
}

.facility-icon-main {
  font-size: 3rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.4));
}

.facility-card:hover .facility-icon-main {
  transform: scale(1.25) rotate(6deg);
  filter: drop-shadow(0 0 24px rgba(0, 229, 255, 0.7));
}

.facility-body {
  padding: 22px 24px;
}

.facility-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.facility-card:hover .facility-name {
  color: var(--accent-cyan);
}

.facility-desc {
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.facility-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 600;
  background: rgba(0, 230, 118, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0, 230, 118, 0.2);
}

/* ===== CERTIFICATIONS ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--transition);
}

.cert-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.cert-badge-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.cert-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.cert-desc {
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cert-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cert-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.cert-features li i {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testi-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(124, 77, 255, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.testi-card:hover::before {
  transform: scaleX(1);
}

.testi-card:hover::after {
  opacity: 1;
}

.testi-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.07);
}

.testi-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(255, 214, 0, 0.4));
}

.testi-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  color: rgba(0, 229, 255, 0.07);
  font-family: Georgia, serif;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.testi-card:hover .testi-quote {
  color: rgba(0, 229, 255, 0.15);
  transform: scale(1.1);
}

.testi-text {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.75;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.3s ease;
}

.testi-card:hover .testi-avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.3);
}

.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.testi-card:hover .testi-name {
  color: var(--accent-cyan);
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.placed-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-top: 5px;
  background: rgba(0, 230, 118, 0.08);
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(0, 230, 118, 0.18);
}

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
}

.news-card:hover {
  border-color: rgba(0, 229, 255, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  transform: translateY(-8px) !important;
}

.news-thumb {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  transition: font-size 0.35s ease;
}

.news-thumb img.news-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(1.4);
  transition: transform 0.6s ease, filter 0.5s ease;
  z-index: 0;
}

.news-card:hover .news-photo {
  transform: scale(1.1);
  filter: brightness(0.35) saturate(1.8);
}

.news-thumb-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.4));
}

.news-card:hover .news-thumb-icon {
  transform: scale(1.2);
  font-size: 3.6rem;
}

.news-body {
  padding: 20px 22px;
}

.news-cat {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.news-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.news-excerpt {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 10px;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border-accent);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  gap: 12px;
  transition: var(--transition);
}

.faq-q:hover {
  color: var(--accent-cyan);
}

.faq-item.open .faq-q {
  color: var(--accent-cyan);
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
  color: var(--accent-cyan);
}

.faq-q i {
  transition: transform 0.3s;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* ===== CTA BANNER ===== */
#cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(41, 121, 255, 0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-title span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(0, 229, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.15);
  transform: translateX(4px);
}

.contact-item:hover .ci-icon {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.2);
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.3s ease;
}

.ci-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.ci-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ci-value a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.ci-value a:hover {
  color: var(--accent-cyan);
}

.map-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 10px;
  position: relative;
  height: 180px;
  transition: all 0.3s ease;
}

.map-frame:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 229, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.7) saturate(0.5) invert(0.9) hue-rotate(180deg);
  transition: filter 0.4s ease;
}

.map-frame:hover iframe {
  filter: brightness(0.85) saturate(0.8) invert(0.9) hue-rotate(180deg);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  border-color: rgba(0, 229, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 229, 255, 0.05);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.contact-form p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08), 0 0 16px rgba(0, 229, 255, 0.06);
  background: rgba(13, 16, 37, 0.9);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-check input {
  margin-top: 3px;
  accent-color: var(--accent-cyan);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
#footer {
  background:
    linear-gradient(180deg, rgba(8, 10, 26, 0.97) 0%, rgba(4, 5, 15, 0.99) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=30') center/cover no-repeat;
  border-top: 1px solid var(--border);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.footer-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.footer-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0, 229, 255, 0.04), transparent);
  pointer-events: none;
}

.footer-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-brand-name span {
  color: var(--accent-cyan);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.06);
}

.social-wa:hover {
  color: var(--accent-green);
  border-color: var(--accent-green);
  background: rgba(0, 230, 118, 0.06);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.footer-about-text {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-newsletter {}

.footer-nl-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-weight: 600;
}

.newsletter-input {
  display: flex;
  gap: 8px;
}

.newsletter-input input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  color: var(--text-primary);
  font-size: 0.83rem;
  font-family: var(--font-body);
  outline: none;
}

.newsletter-input input:focus {
  border-color: var(--accent-cyan);
}

.newsletter-input button {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #04050f;
  border: none;
  border-radius: var(--r-sm);
  padding: 9px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display);
  transition: var(--transition);
}

.newsletter-input button:hover {
  filter: brightness(1.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.83rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-links a i {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-contact-list i {
  color: var(--accent-cyan);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--accent-cyan);
}

.footer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #04050f;
  padding: 11px 20px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.83rem;
  transition: var(--transition);
}

.footer-cta-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent-cyan);
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

#back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

#back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#back-top:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--accent-green);
  border-radius: var(--r-md);
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
  max-width: 90vw;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== CHATBOT — ADVANCED CSS ===== */

/* FAB Button */
@keyframes fabPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.55), 0 4px 20px rgba(0, 229, 255, 0.4);
  }

  60% {
    box-shadow: 0 0 0 14px rgba(0, 229, 255, 0), 0 4px 20px rgba(0, 229, 255, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0), 0 4px 20px rgba(0, 229, 255, 0.4);
  }
}

@keyframes fabSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fabFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

#chatbot-fab {
  position: fixed;
  bottom: 144px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent-cyan), var(--accent-blue), var(--accent-violet), var(--accent-cyan));
  background-size: 200% 200%;
  border: none;
  color: #04050f;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 950;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), filter 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fabPulse 2.5s ease infinite, fabFloat 3s ease-in-out infinite;
}

#chatbot-fab::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent-cyan), var(--accent-violet), var(--accent-blue), var(--accent-cyan));
  z-index: -1;
  animation: fabSpin 4s linear infinite;
  opacity: 0.6;
}

#chatbot-fab:hover {
  transform: scale(1.13) translateY(-3px);
  filter: brightness(1.15);
  animation: none;
}

.fab-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: #fff;
  border-radius: 100px;
  font-size: 0.5rem;
  font-weight: 800;
  padding: 3px 6px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px rgba(124, 77, 255, 0.6);
  border: 1.5px solid #04050f;
}

/* Chatbot Window */
@keyframes chatWindowIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bgShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes orbitDot {
  from {
    transform: rotate(0deg) translateX(110px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(110px) rotate(-360deg);
  }
}

@keyframes orbitDot2 {
  from {
    transform: rotate(180deg) translateX(90px) rotate(-180deg);
  }

  to {
    transform: rotate(540deg) translateX(90px) rotate(-540deg);
  }
}

#chatbot-window {
  position: fixed;
  bottom: 218px;
  right: 24px;
  width: 370px;
  background: transparent;
  border: none;
  border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 229, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 940;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: calc(100vh - 260px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.95);
  transition: opacity 0.35s cubic-bezier(.34, 1.56, .64, 1), transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

#chatbot-window.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* Animated background layer */
#chatbot-window::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(0, 229, 255, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(124, 77, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(41, 121, 255, 0.07) 0%, transparent 70%),
    linear-gradient(160deg, #070918 0%, #0a0e22 50%, #07091a 100%);
  background-size: 300% 300%, 300% 300%, 300% 300%, 100% 100%;
  animation: bgShift 8s ease infinite;
  z-index: 0;
  border-radius: inherit;
}

/* Subtle grid overlay */
#chatbot-window::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}

/* All children above bg */
.chatbot-header,
.chatbot-messages,
.chatbot-quick,
.chatbot-input-area {
  position: relative;
  z-index: 1;
}

/* Header — glassmorphism + animated shimmer */
@keyframes shimmerSlide {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }

  100% {
    transform: translateX(250%) skewX(-15deg);
  }
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg,
      rgba(0, 229, 255, 0.14) 0%,
      rgba(41, 121, 255, 0.10) 50%,
      rgba(124, 77, 255, 0.10) 100%);
  border-bottom: 1px solid rgba(0, 229, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.chatbot-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.08) 50%, transparent 100%);
  width: 60%;
  animation: shimmerSlide 3.5s ease-in-out infinite;
}

/* Avatar with glow ring */
.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.35), 0 0 18px rgba(0, 229, 255, 0.3);
}

.chatbot-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--accent-cyan);
  border-right-color: rgba(0, 229, 255, 0.3);
  animation: fabSpin 2s linear infinite;
}

.chatbot-info {
  flex: 1;
}

.chatbot-info h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.chatbot-info p {
  font-size: 0.7rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 5px;
}

.chatbot-info p::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-block;
  box-shadow: 0 0 6px var(--accent-green);
  animation: typingBounce 2s ease infinite;
}

.chatbot-clear,
.chatbot-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.chatbot-clear:hover,
.chatbot-close:hover {
  color: var(--text-primary);
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.08);
  transform: scale(1.08);
}

/* Messages area */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  /* custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.25) transparent;
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.25);
  border-radius: 2px;
}

@keyframes msgSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: msgSlideIn 0.3s ease forwards;
}

.chat-msg.user {
  flex-direction: row-reverse;
}

.chat-msg-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.chat-msg.bot .chat-msg-icon {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #04050f;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
}

.chat-msg.user .chat-msg-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-bubble {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.83rem;
  line-height: 1.58;
  transition: box-shadow 0.2s;
}

.chat-msg.bot .chat-bubble {
  background: rgba(13, 16, 37, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-bottom-left-radius: 4px;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(0, 229, 255, 0.06);
}

.chat-msg.bot .chat-bubble:hover {
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.12), inset 0 1px 0 rgba(0, 229, 255, 0.1);
}

.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(41, 121, 255, 0.18));
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-bottom-right-radius: 4px;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 229, 255, 0.1);
}

.chat-bubble p {
  margin-bottom: 6px;
}

.chat-bubble p:last-child {
  margin-bottom: 0;
}

.chat-bubble ul {
  margin: 4px 0 4px 4px;
}

.chat-bubble li {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

/* Typing dots */
.chat-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 5px 2px;
}

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: typingBounce 1.2s ease infinite;
  box-shadow: 0 0 6px var(--accent-cyan);
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.2s;
  background: var(--accent-blue);
  box-shadow: 0 0 6px var(--accent-blue);
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.4s;
  background: var(--accent-violet);
  box-shadow: 0 0 6px var(--accent-violet);
}

@keyframes typingBounce {

  0%,
  80%,
  100% {
    transform: scale(0.7) translateY(0);
    opacity: 0.5;
  }

  40% {
    transform: scale(1) translateY(-4px);
    opacity: 1;
  }
}

/* Quick buttons */
.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  background: rgba(4, 5, 15, 0.4);
  backdrop-filter: blur(8px);
}

.quick-btn {
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.74rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.quick-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.12);
}

/* Input area */
.chatbot-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  background: rgba(4, 5, 15, 0.55);
  backdrop-filter: blur(14px);
}

#chatbot-input {
  flex: 1;
  background: rgba(13, 16, 37, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

#chatbot-input::placeholder {
  color: var(--text-muted);
}

#chatbot-input:focus {
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(13, 16, 37, 0.95);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08), 0 0 18px rgba(0, 229, 255, 0.08);
}

@keyframes sendGlow {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.7), 0 0 40px rgba(41, 121, 255, 0.3);
  }
}

#chatbot-send {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border: none;
  color: #04050f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.25s cubic-bezier(.34, 1.56, .64, 1);
  animation: sendGlow 2.5s ease infinite;
}

#chatbot-send:hover {
  filter: brightness(1.2);
  transform: scale(1.1) rotate(15deg);
}

/* Floating particles inside chatbot */
.chatbot-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

@keyframes cpFloat {
  0% {
    transform: translateY(100%) translateX(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-20px) translateX(20px) rotate(360deg);
    opacity: 0;
  }
}

.cp {
  position: absolute;
  border-radius: 50%;
  animation: cpFloat linear infinite;
}


/* ===== SECTION BACKGROUND IMAGES — ALL SECTIONS ===== */

/* COURSES — dark abstract tech/code background */
#courses {
  background:
    linear-gradient(180deg, rgba(4, 5, 15, 0.84) 0%, rgba(6, 8, 22, 0.80) 100%),
    url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1400&q=40') center/cover no-repeat fixed;
}

/* LEARNING PATH — clean workspace/study background */
#learning-path {
  background:
    linear-gradient(180deg, rgba(4, 5, 15, 0.86) 0%, rgba(8, 10, 26, 0.84) 100%),
    url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1400&q=40') center/cover no-repeat fixed;
}

/* INTERNSHIP — team/office collaboration */
#internship {
  background:
    linear-gradient(180deg, rgba(4, 5, 15, 0.82) 0%, rgba(8, 10, 26, 0.85) 100%),
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=40') center/cover no-repeat fixed;
}

/* PLACEMENT — career/handshake/success */
#placement {
  background:
    linear-gradient(180deg, rgba(8, 10, 26, 0.83) 0%, rgba(4, 5, 15, 0.82) 100%),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=40') center/cover no-repeat fixed;
}

/* WHY — modern architecture/light rays */
#why {
  background:
    linear-gradient(180deg, rgba(8, 10, 26, 0.83) 0%, rgba(4, 5, 15, 0.85) 100%),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1400&q=40') center/cover no-repeat fixed;
}

/* TRAINERS — professional people/conference */
#trainers {
  background:
    linear-gradient(180deg, rgba(4, 5, 15, 0.85) 0%, rgba(8, 10, 26, 0.83) 100%),
    url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1400&q=40') center/cover no-repeat fixed;
}

/* FACILITIES — modern lab/tech equipment */
#facilities {
  background:
    linear-gradient(180deg, rgba(4, 5, 15, 0.82) 0%, rgba(8, 10, 26, 0.84) 100%),
    url('https://images.unsplash.com/photo-1581092921461-39b9ae4c91af?w=1400&q=40') center/cover no-repeat fixed;
}

/* CERTIFICATIONS — achievement/diploma */
#certifications {
  background:
    linear-gradient(180deg, rgba(8, 10, 26, 0.86) 0%, rgba(4, 5, 15, 0.84) 100%),
    url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1400&q=40') center/cover no-repeat fixed !important;
  border-top: 1px solid var(--border) !important;
}

/* TESTIMONIALS — audience/community */
#testimonials {
  background:
    linear-gradient(180deg, rgba(4, 5, 15, 0.88) 0%, rgba(8, 10, 26, 0.86) 100%),
    url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?w=1400&q=40') center/cover no-repeat fixed;
}

/* NEWS — newspaper/media */
#news {
  background:
    linear-gradient(180deg, rgba(8, 10, 26, 0.87) 0%, rgba(4, 5, 15, 0.85) 100%),
    url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1400&q=40') center/cover no-repeat fixed;
}

/* FAQ — clean minimal */
#faq {
  background:
    linear-gradient(180deg, rgba(4, 5, 15, 0.90) 0%, rgba(8, 10, 26, 0.88) 100%),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1400&q=40') center/cover no-repeat fixed;
}

/* CONTACT — city/location */
#contact {
  background:
    linear-gradient(180deg, rgba(4, 5, 15, 0.88) 0%, rgba(8, 10, 26, 0.90) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=40') center/cover no-repeat fixed;
}

/* IMPACT BAR — keep its subtle bg but add a tinted photo */
#impact {
  background:
    linear-gradient(180deg, rgba(4, 5, 15, 0.93) 0%, rgba(8, 10, 26, 0.93) 100%),
    url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1400&q=40') center/cover no-repeat fixed;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ===== ENHANCED AMBIENT GLOW BACKGROUNDS ===== */
body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.055) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  bottom: -15%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(ellipse, rgba(124, 77, 255, 0.045) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: ambientDrift2 22s ease-in-out infinite alternate-reverse;
}

@keyframes ambientDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(3%, 5%) scale(1.08);
  }
}

@keyframes ambientDrift2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-4%, 3%) scale(1.06);
  }
}

/* Section title neon glow pulse */
.section-title span {
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    filter: drop-shadow(0 0 0px transparent);
  }

  to {
    filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.5));
  }
}

/* Glowing scrollbar */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-violet));
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

/* ===== CURSOR SPARKLE ===== */
.cursor-spark {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  animation: sparkFade 0.6s ease forwards;
  box-shadow: 0 0 8px var(--accent-cyan), 0 0 16px rgba(0, 229, 255, 0.4);
}

@keyframes sparkFade {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -180%) scale(0);
    opacity: 0;
  }
}

/* ===== SECTION ENTRY GLOW ===== */
.section-pad {
  position: relative;
}

/* ===== MASSIVE VISUAL UPGRADE EXTRAS ===== */

/* Hero image parallax shimmer */
.hero-bg {
  animation: heroBgShimmer 20s ease-in-out infinite alternate;
}

@keyframes heroBgShimmer {
  0% {
    filter: brightness(0.28) saturate(1.8);
  }

  100% {
    filter: brightness(0.33) saturate(2.2) hue-rotate(5deg);
  }
}

/* Marquee item hover glow */
.marquee-item {
  transition: color 0.2s ease;
  cursor: default;
}

.marquee-item:hover {
  color: var(--accent-cyan);
}

.marquee-item:hover i {
  filter: drop-shadow(0 0 6px var(--accent-cyan));
}

/* Why card neon border on hover */
.why-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.15), 0 0 30px rgba(0, 229, 255, 0.07);
}

/* Cert card upgrade */
.cert-card {
  transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1) !important;
}

.cert-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.1) !important;
  border-color: rgba(0, 229, 255, 0.3) !important;
}

.cert-card:hover .cert-badge-icon {
  transform: scale(1.2) rotate(-8deg);
  transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
  display: inline-block;
}

.cert-badge-icon {
  transition: transform 0.4s ease;
}

/* Nav link enhanced */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 2px;
  transition: left 0.3s ease, right 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 13px;
  right: 13px;
}

/* Button shimmer on hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-primary:hover::after {
  left: 130%;
}

/* FAQ item upgraded */
.faq-item.open {
  border-color: rgba(0, 229, 255, 0.3) !important;
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.07), -3px 0 0 var(--accent-cyan);
  background: rgba(0, 229, 255, 0.02) !important;
}

/* Footer social glow */
.social-link:hover {
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.3);
  color: var(--accent-cyan) !important;
  border-color: rgba(0, 229, 255, 0.4) !important;
}

/* Impact number glow on hover */
.impact-num {
  transition: filter 0.3s ease;
}

.impact-item:hover .impact-num {
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.6));
}

/* Path step bottom line */
.path-step {
  position: relative;
}

.path-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.path-step:hover::after {
  transform: scaleX(1);
}

/* Intern card full glow */
.intern-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.1) !important;
  transform: translateY(-8px) !important;
}

/* Placement feature card stronger hover */
.pf-card:hover {
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.1), -4px 0 0 var(--accent-cyan) !important;
}

/* Image load shimmer placeholder */
img {
  background: rgba(255, 255, 255, 0.03);
}

.trainer-card:hover .trainer-role {
  color: var(--accent-blue);
}

/* Cert card — badge icon bounce */
.cert-card {
  transition: all 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.cert-card:hover {
  border-color: rgba(255, 214, 0, 0.35) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 214, 0, 0.08) !important;
  transform: translateY(-8px) scale(1.02) !important;
}

.cert-card:hover .cert-badge-icon {
  transform: scale(1.15) rotate(-6deg);
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.cert-badge-icon {
  transition: transform 0.35s ease;
}

/* Testimonial card — quote glow */
.testi-card {
  transition: all 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.testi-card:hover {
  border-color: rgba(0, 229, 255, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 229, 255, 0.08) !important;
  transform: translateY(-8px) scale(1.02) !important;
}

.testi-card:hover .testi-quote {
  color: rgba(0, 229, 255, 0.15);
}

.testi-quote {
  transition: color 0.3s ease;
}

/* News card — thumb zoom */
.news-card {
  transition: all 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.news-card:hover {
  border-color: rgba(0, 229, 255, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  transform: translateY(-8px) !important;
}

.news-card:hover .news-thumb {
  font-size: 3.6rem;
  transition: font-size 0.35s ease;
}

.news-thumb {
  transition: font-size 0.35s ease;
}

/* stat-card in placement */
.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.stat-card:hover .stat-num {
  filter: drop-shadow(0 0 10px currentColor);
}

/* company-tag pill */
.company-tag {
  transition: all 0.25s ease;
}

.company-tag:hover {
  background: rgba(0, 229, 255, 0.1) !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.12);
}

/* About features */
.about-feature {
  transition: all 0.3s ease;
  border-radius: var(--r-sm);
  padding: 8px;
}

.about-feature:hover {
  background: rgba(0, 229, 255, 0.04);
  transform: translateX(4px);
}

.about-feature:hover .af-icon {
  transform: scale(1.12);
}

.af-icon {
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

/* Impact items */
.impact-item {
  transition: all 0.3s ease;
  padding: 8px 4px;
  border-radius: var(--r-md);
}

.impact-item:hover {
  background: rgba(0, 229, 255, 0.04);
  transform: translateY(-4px);
}

.impact-item:hover .impact-num {
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}

/* Filter tabs */
.filter-tab {
  transition: all 0.25s cubic-bezier(.34, 1.56, .64, 1);
}

.filter-tab:hover:not(.active) {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 14px rgba(0, 229, 255, 0.1);
}

.filter-tab.active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.15);
}

/* Floating badges in about */
.floating-badge {
  transition: all 0.3s ease;
}

.floating-badge:hover {
  transform: translateY(-4px) scale(1.06);
  border-color: rgba(0, 229, 255, 0.3);
}

/* FAQ items */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover:not(.open) {
  border-color: rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.02);
}

/* Footer links */
.footer-links a {
  transition: all 0.25s ease;
}

.footer-links a:hover {
  transform: translateX(4px);
}

/* Social links */
.social-link {
  transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Path step icon */
.path-step:hover .path-step-num {
  transform: scale(1.12) rotate(-5deg);
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.path-step-num {
  transition: transform 0.35s ease;
}

/* Intern card icon bounce */
.intern-card:hover .intern-icon {
  transform: scale(1.2) rotate(8deg) !important;
}

.intern-icon {
  transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1) !important;
}

/* cc-enroll button on course card */
.cc-enroll {
  transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.course-card:hover .cc-enroll {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #04050f;
  font-weight: 700;
  transform: scale(1.02);
}

/* Why card icon */
.why-card:hover .why-icon {
  transform: scale(1.18) rotate(-8deg);
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
  display: inline-block;
}

.why-icon {
  transition: transform 0.35s ease;
  display: inline-block;
}

/* Facility icon */
.facility-card:hover .facility-icon-main {
  transform: scale(1.18) rotate(6deg);
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.facility-icon-main {
  transition: transform 0.35s ease;
}

/* Chatbot quick btn */
.quick-btn:hover {
  transform: translateY(-2px) scale(1.05) !important;
}

/* WhatsApp float */
.whatsapp-float {
  transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.whatsapp-float:hover {
  transform: scale(1.14) rotate(-8deg) !important;
}

/* Pf card left accent bar animation */
.pf-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pf-card {
  position: relative;
  overflow: hidden;
}

.pf-card:hover::before {
  opacity: 1;
}

/* Section header subtle hover on tag */
.tag {
  transition: all 0.3s ease;
  cursor: default;
}

.tag:hover {
  background: rgba(0, 229, 255, 0.14);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.12);
}

/* Path steps */
.path-step:hover {
  border-color: var(--border-accent) !important;
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 229, 255, 0.12) !important;
}

/* Course card even stronger */
.course-card:hover {
  border-color: rgba(0, 229, 255, 0.5) !important;
  background: var(--bg-card-hover) !important;
  transform: translateY(-10px) scale(1.04) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 229, 255, 0.2), 0 0 40px rgba(0, 229, 255, 0.15) !important;
}

/* Intern cards */
.intern-card:hover {
  transform: translateY(-10px) scale(1.03) !important;
  border-color: rgba(0, 229, 255, 0.4) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 50px rgba(0, 229, 255, 0.12) !important;
}

.intern-card:hover::before {
  opacity: 1 !important;
}

/* Trainer cards */
.trainer-card:hover {
  transform: translateY(-14px) scale(1.04) !important;
  border-color: rgba(0, 229, 255, 0.45) !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 255, 0.2), 0 0 50px rgba(0, 229, 255, 0.1) !important;
}

/* Why cards */
.why-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  border-color: rgba(0, 229, 255, 0.4) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 229, 255, 0.1) !important;
}

/* Facility cards */
.facility-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  border-color: rgba(0, 229, 255, 0.4) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 229, 255, 0.1) !important;
}

/* Nav link stronger underline */
.nav-link:hover,
.nav-link.active {
  color: var(--accent-cyan) !important;
  background: rgba(0, 229, 255, 0.14) !important;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.12) inset !important;
}

/* Buttons stronger glow */
.btn-primary:hover {
  filter: brightness(1.25) !important;
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.35) !important;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08) !important;
}

/* Filter tabs */
.filter-tab:hover,
.filter-tab.active {
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.2) !important;
}

/* About section feature items */
.about-feature:hover .af-icon {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 10px currentColor);
  transition: all 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.af-icon {
  transition: all 0.35s ease;
}

/* ===== ADVANCED HOVER — TRAINER CARD ===== */
.trainer-card {
  transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1) !important;
  cursor: pointer;
}

.trainer-card:hover {
  transform: translateY(-10px) scale(1.03) !important;
  border-color: rgba(0, 229, 255, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.12), 0 0 40px rgba(0, 229, 255, 0.06) !important;
}

.trainer-card:hover .trainer-avatar {
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.25), 0 0 30px rgba(0, 229, 255, 0.2);
  transform: scale(1.05);
}

.trainer-avatar {
  transition: all 0.4s ease;
}

/* ===== ADVANCED HOVER — WHY CARD ===== */
.why-card {
  transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1) !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(124, 77, 255, 0.04));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
  pointer-events: none;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0, 229, 255, 0.25) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.06) !important;
}

.why-card:hover .why-icon {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

.why-icon {
  transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1), filter 0.4s ease;
  display: inline-block;
}

/* ===== ADVANCED HOVER — FACILITY CARD ===== */
.facility-card {
  transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1) !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.facility-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-violet));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.facility-card:hover::after {
  transform: scaleX(1);
}

.facility-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0, 229, 255, 0.22) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 229, 255, 0.05) !important;
}

/* ===== ADVANCED HOVER — NAV LINKS ===== */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--accent-cyan);
  transition: left 0.25s ease, right 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 10%;
  right: 10%;
}

/* ===== ADVANCED HOVER — BUTTONS ===== */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-primary:hover::after {
  left: 130%;
}

/* ===== ADVANCED HOVER — TESTIMONIAL CARD ===== */
.testimonial-card {
  transition: all 0.35s cubic-bezier(.34, 1.56, .64, 1) !important;
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.015) !important;
  border-color: rgba(0, 229, 255, 0.2) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4) !important;
}

/* ===== ADVANCED HOVER — FAQ CARD ===== */
.faq-item {
  transition: all 0.3s ease !important;
}

.faq-item:hover {
  border-color: rgba(0, 229, 255, 0.2) !important;
  background: var(--bg-card-hover) !important;
}

/* ===== RESPONSIVE ===== */
/* ================================================================
       RESPONSIVE — ALL BREAKPOINTS (phones, tablets, desktops)
       ================================================================ */

/* ---- Large tablets / small laptops ---- */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .placement-grid {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Tablets ---- */
@media (max-width: 900px) {
  .path-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .internship-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Hide desktop nav, show hamburger */
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }
}

/* ---- Large phones (≤640px) ---- */
@media (max-width: 640px) {
  .section-pad {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-stat-num {
    font-size: 1.6rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    padding: 40px 0;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .internship-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .section-header {
    margin-bottom: 40px;
  }

  #chatbot-window {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 190px;
  }

  .nav-inner {
    padding: 12px 0;
  }

  .nav-logo-name {
    font-size: 0.95rem;
  }

  .nav-logo-img {
    width: 36px;
    height: 36px;
  }
}

/* ---- Standard phones (≤480px) ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section-pad {
    padding: 50px 0;
  }

  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-badge-text {
    font-size: 0.72rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-num {
    font-size: 1.4rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .trainer-avatar {
    width: 70px;
    height: 70px;
  }

  .trainer-name {
    font-size: 0.82rem;
  }

  .about-image-frame {
    max-width: 100%;
  }

  .floating-badge {
    display: none;
  }

  .section-title {
    font-size: clamp(1.5rem, 7.5vw, 1.9rem);
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .why-card,
  .cert-card,
  .testi-card,
  .intern-card,
  .facility-card {
    padding: 22px 18px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-brand-socials {
    gap: 8px;
  }

  .social-link {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  #chatbot-window {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 170px;
  }

  /* Move floating buttons inward on small phones */
  .whatsapp-float {
    right: 16px;
    bottom: 80px;
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  #back-top {
    right: 16px;
    bottom: 20px;
    width: 38px;
    height: 38px;
  }

  #chatbot-fab {
    right: 16px;
    bottom: 130px;
    width: 54px;
    height: 54px;
  }
}

/* ---- Small phones (≤390px — iPhone SE, Galaxy A series) ---- */
@media (max-width: 390px) {
  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: clamp(1.7rem, 8.5vw, 2.1rem);
  }

  .hero-cta .btn-lg {
    padding: 13px 20px;
    font-size: 0.9rem;
  }

  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .impact-num {
    font-size: 1.9rem;
  }

  .nav-logo-name {
    font-size: 0.88rem;
  }

  .nav-logo-tagline {
    display: none;
  }

  .filter-tabs {
    gap: 6px;
  }

  .filter-tab {
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  .news-card .news-thumb {
    height: 120px;
  }

  .facility-visual {
    height: 140px;
  }
}

/* ---- Very small phones (≤360px — Galaxy A03, Moto E) ---- */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 1.65rem;
    letter-spacing: -0.03em;
  }

  .hero-badge {
    padding: 6px 12px;
  }

  .hero-badge-text {
    font-size: 0.68rem;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .mobile-nav {
    width: 92vw;
  }
}

/* ---- Landscape phones ---- */
@media (max-width: 900px) and (orientation: landscape) {
  #hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-stats {
    gap: 20px;
  }

  .mobile-nav {
    width: min(360px, 70vw);
  }

  .mobile-nav-body {
    max-height: calc(100dvh - 220px);
  }
}

/* ---- Notched / iPhone safe area support ---- */
@supports (padding: max(0px)) {
  .mobile-nav {
    padding-top: max(0px, env(safe-area-inset-top));
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }

  .mobile-nav-footer {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  #navbar .nav-main {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}

/* ===== EXTRA LARGE SCREENS ---- */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* ===== COURSE SEARCH BAR ===== */
.course-search-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 560px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 100px;
  padding: 8px 8px 8px 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.course-search-wrap:focus-within {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}

.course-search-wrap i {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.course-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.course-search-input::placeholder {
  color: var(--text-muted);
}

.course-search-btn {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border: none;
  border-radius: 100px;
  color: #04050f;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-accent);
  transition: filter 0.2s;
  flex-shrink: 0;
}

.course-search-btn:hover {
  filter: brightness(1.15);
}

/* ===== COMPARISON TABLE ===== */
.compare-section {
  padding: 96px 0;
  background:
    linear-gradient(180deg, rgba(4, 5, 15, 0.94) 0%, rgba(8, 10, 26, 0.96) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=40') center/cover no-repeat fixed;
  position: relative;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-table th {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table th:first-child {
  text-align: left;
}

.compare-table th.highlight-col {
  background: rgba(0, 229, 255, 0.07);
  color: var(--accent-cyan);
  border-left: 2px solid rgba(0, 229, 255, 0.3);
  border-right: 2px solid rgba(0, 229, 255, 0.3);
}

.compare-table td {
  padding: 16px 24px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  color: var(--text-secondary);
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 600;
  font-family: var(--font-accent);
}

.compare-table td.highlight-col {
  background: rgba(0, 229, 255, 0.04);
  border-left: 2px solid rgba(0, 229, 255, 0.15);
  border-right: 2px solid rgba(0, 229, 255, 0.15);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.compare-table tr:hover td.highlight-col {
  background: rgba(0, 229, 255, 0.06);
}

.compare-check {
  color: var(--accent-green);
  font-size: 1rem;
}

.compare-cross {
  color: var(--text-muted);
  font-size: 1rem;
  opacity: 0.5;
}

.compare-partial {
  color: var(--accent-gold);
  font-size: 0.78rem;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--accent-cyan);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-accent);
}

/* ===== RATING SUMMARY SECTION ===== */
.rating-summary {
  display: flex;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .rating-summary {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
}

.rating-big {
  text-align: center;
  flex-shrink: 0;
}

.rating-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rating-stars-big {
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin: 6px 0;
  letter-spacing: 2px;
}

.rating-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

.rating-bar-label {
  width: 32px;
  color: var(--text-secondary);
  flex-shrink: 0;
  font-family: var(--font-accent);
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.rating-bar-pct {
  width: 36px;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-align: right;
}

/* ===== COMPANY LOGOS STRIP ===== */
.companies-strip {
  padding: 60px 0 0;
}

.companies-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-accent);
  margin-bottom: 28px;
}

.companies-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.company-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-accent);
  transition: all 0.25s ease;
}

.company-pill:hover {
  background: rgba(0, 229, 255, 0.07);
  border-color: rgba(0, 229, 255, 0.2);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.company-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== BACK TO TOP BUTTON ENHANCED ===== */
#back-top {
  transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1) !important;
}

#back-top:hover {
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3) !important;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.preloader-logo span {
  color: var(--accent-cyan);
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 229, 255, 0.15);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.preloader-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== COMPARE TABLE ROWS ===== */
.compare-table tbody tr {
  transition: all 0.2s ease;
}

.compare-table td.highlight-col {
  position: relative;
}

/* ===== TICKER BAR PAUSE ON HOVER ===== */
.ticker-inner:hover {
  animation-play-state: paused;
}

/* ===== ENHANCED BACK TOP BUTTON ===== */
#back-top {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue)) !important;
  border: none !important;
  color: #04050f !important;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.35) !important;
}

/* ===== MOUSE GLOW FOLLOWER ===== */
#mouse-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* ===== ENHANCED FAQ OPEN ICON ===== */
.faq-item.open .faq-q i {
  transform: rotate(45deg);
  color: var(--accent-cyan);
}

.faq-q i {
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ===== BACK TO TOP WITH RING ===== */
#back-top {
  position: fixed !important;
  bottom: 80px !important;
  right: 24px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(4, 5, 15, 0.9) !important;
  border: none !important;
  color: var(--accent-cyan) !important;
  cursor: pointer !important;
  z-index: 800 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1) !important;
}

#back-top:hover {
  transform: scale(1.1) !important;
  color: #04050f !important;
  background: var(--accent-cyan) !important;
}

#back-top:hover .progress-ring-fill,
#back-top:hover #progress-ring-fill {
  stroke: white;
}

/* ===== COMPARE SECTION EXTRA ===== */
.compare-section .section-header {
  margin-bottom: 0;
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-violet));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

/* ===== ENHANCED HERO BADGE ===== */
.hero-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  margin-left: 10px;
}

.hero-badge-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-badge-live-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-green);
  font-family: var(--font-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== STICKY CTA BAR ===== */
#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(4, 5, 15, 0.97);
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  backdrop-filter: blur(20px);
  z-index: 800;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
}

#sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-accent);
}

.sticky-cta-text strong {
  color: var(--accent-cyan);
}

.sticky-cta-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 640px) {
  .sticky-cta-text {
    display: none;
  }

  #sticky-cta {
    justify-content: center;
  }
}

/* ===== TYPEWRITER CURSOR ===== */
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--accent-cyan);
  margin-left: 4px;
  vertical-align: middle;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ===== FLOATING NOTIFICATION ===== */
.floating-notif {
  position: fixed;
  bottom: 80px;
  left: 24px;
  background: rgba(13, 16, 37, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  z-index: 700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: notifIn 0.4s cubic-bezier(.34, 1.56, .64, 1) forwards, notifOut 0.4s ease 5s forwards;
  backdrop-filter: blur(12px);
}

@keyframes notifIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes notifOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.notif-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.notif-text {
  flex: 1;
}

.notif-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}

.notif-msg {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.notif-time {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== COURSE CARD ENHANCED ===== */
.course-card {
  transition: all 0.35s cubic-bezier(.34, 1.56, .64, 1) !important;
}

.course-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 229, 255, 0.08) !important;
  border-color: rgba(0, 229, 255, 0.25) !important;
}

/* ===== STATS SECTION ===== */
.mega-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 60px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (max-width: 900px) {
  .mega-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .mega-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.mega-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mega-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.mega-stat:hover::before {
  opacity: 1;
}

.mega-stat:hover {
  transform: translateY(-4px);
}

.mega-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.mega-stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-family: var(--font-accent);
  font-weight: 500;
}

.mega-stat-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

/* ===== BANNER TICKER ===== */
.ticker-bar {
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.08), rgba(41, 121, 255, 0.08));
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  gap: 60px;
  animation: tickerMove 30s linear infinite;
  white-space: nowrap;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-family: var(--font-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ticker-item i {
  color: var(--accent-cyan);
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-cyan);
  flex-shrink: 0;
}

/* ===== PREVENT MOBILE ZOOM ON INPUTS ===== */
input,
select,
textarea {
  font-size: 16px !important;
}

@media (max-width: 900px) {

  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}