/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #111827;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   COLORS
=========================== */
:root {
  --blue: #1a56db;
  --blue-dark: #1344b5;
  --blue-light: #eff6ff;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
}
.blue { color: var(--blue); }

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid #d1d5db;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-card {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s;
}
.btn-card:hover { background: var(--blue-dark); }

.btn-eco {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 16px;
  display: inline-block;
}
.btn-eco:hover { background: var(--blue-dark); }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; object-fit: contain; display: block; }
.logo-img-footer { height: 48px; filter: brightness(0) invert(1); }

.nav-links { display: flex; gap: 20px; flex: 1; justify-content: center; align-items: center; }
.nav-links a, .nav-dropdown-toggle { font-size: 13.5px; font-weight: 500; color: var(--text-mid); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-dropdown-toggle:hover { color: var(--blue); }

/* ===========================
   PROGRAMS MEGA-DROPDOWN
=========================== */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 6px 0;
}

.nav-dropdown-toggle:focus {
  outline: none;
}

.nav-item-dropdown.open .nav-dropdown-toggle,
.nav-item-dropdown:hover .nav-dropdown-toggle {
  color: var(--blue);
}

.dropdown-chevron {
  width: 13px;
  height: 13px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  stroke: currentColor;
}

.nav-item-dropdown.open .dropdown-chevron,
.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.mega-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 760px;
  max-width: 92vw;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 45px -8px rgba(15, 23, 42, 0.18), 0 8px 20px -4px rgba(15, 23, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  z-index: 1100;
  overflow: hidden;
}

.nav-item-dropdown.open .mega-dropdown-menu,
.nav-item-dropdown:hover .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Header */
.mega-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px 14px;
  border-bottom: 1px solid #f1f5f9;
}

.mega-header-title {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.mega-header-sub {
  font-size: 12px;
  color: #64748b;
}

.mega-header-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.15s, color 0.15s;
  white-space: nowrap;
}

.mega-header-all:hover {
  color: var(--blue-dark);
  transform: translateX(2px);
}

/* Grid */
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 18px;
  gap: 6px 14px;
}

.mega-program-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}

.mega-program-item:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.mega-badge {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.badge-ds { background: #eff6ff; color: #2563eb; }
.badge-cd { background: #f0fdf4; color: #16a34a; }
.badge-cs { background: #fef2f2; color: #dc2626; }
.badge-da { background: #fefce8; color: #ca8a04; }
.badge-ai { background: #faf5ff; color: #9333ea; }
.badge-de { background: #ecfeff; color: #0891b2; }
.badge-az { background: #f0f9ff; color: #0284c7; }
.badge-sc { background: #fdf2f8; color: #db2777; }

.mega-content {
  flex: 1;
  min-width: 0;
}

.mega-title-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}

.mega-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.mega-tag-popular {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mega-desc {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.35;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
}

/* Footer Bar */
.mega-footer {
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mega-footer-text {
  font-size: 12px;
  color: #475569;
}

.mega-footer-text strong {
  color: #0f172a;
  font-weight: 700;
}

.btn-mega-all {
  background: var(--blue);
  color: #fff !important;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-mega-all:hover {
  background: var(--blue-dark);
}

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-search { background: none; border: none; cursor: pointer; color: var(--text-mid); padding: 6px; display: flex; align-items: center; }
.btn-login {
  background: transparent;
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-dark);
  transition: border-color 0.2s;
}
.btn-login:hover { border-color: var(--blue); color: var(--blue); }
.btn-apply {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-apply:hover { background: var(--blue-dark); }

.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); margin-left: auto; padding: 6px; line-height: 1; }

/* Enhanced Mobile Menu & Programs Accordion */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 14px 20px 24px;
  gap: 4px;
  max-height: 82vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}
.mobile-menu.open { display: flex !important; }
.mobile-menu > a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s ease;
}
.mobile-menu > a:hover { color: var(--blue); }

/* Mobile Programs Sub-menu Accordion */
.mobile-nav-item {
  border-bottom: 1px solid #f1f5f9;
}
.mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 700;
  color: #1a56db;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mobile-chevron {
  width: 18px;
  height: 18px;
  stroke: #1a56db;
  transition: transform 0.25s ease;
}
.mobile-nav-item.open .mobile-chevron {
  transform: rotate(180deg);
}
.mobile-sub-menu {
  display: none;
  flex-direction: column;
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 10px;
  margin: 4px 0 14px;
  border: 1px solid #e2e8f0;
}
.mobile-nav-item.open .mobile-sub-menu {
  display: flex;
}
.mobile-programs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-view-all {
  color: #1a56db !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  border: none !important;
  padding: 0 !important;
  text-decoration: none !important;
}
.mobile-programs-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
}
.mobile-prog-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 10px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.mobile-prog-link:hover {
  background: #eff6ff !important;
  border-color: #bfdbfe !important;
}
.m-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 800;
  flex-shrink: 0;
}
.m-badge.m-ds { background: #dbeafe; color: #1d4ed8; }
.m-badge.m-ai { background: #fae8ff; color: #86198f; }
.m-badge.m-cd { background: #ffedd5; color: #c2410c; }
.m-badge.m-az { background: #e0f2fe; color: #0369a1; }
.m-badge.m-cs { background: #fee2e2; color: #b91c1c; }
.m-badge.m-da { background: #dcfce7; color: #15803d; }
.m-badge.m-de { background: #fef3c7; color: #b45309; }

.mobile-prog-link div strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}
.mobile-prog-link div small {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}
.mobile-all-programs-btn {
  margin-top: 10px;
  text-align: center;
  padding: 11px 16px !important;
  background: #1a56db;
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  border-radius: 8px;
  border: none !important;
  text-decoration: none !important;
  display: block !important;
}
.mobile-btns { display: flex; gap: 10px; margin-top: 16px; }

/* ===========================
   HERO
=========================== */
.hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 40%, #f8f9ff 100%);
  padding: 44px 0 32px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 320px;
  gap: 24px;
  align-items: stretch;
  min-width: 0;
}
.hero-tags { font-size: 11px; font-weight: 600; color: var(--text-light); letter-spacing: 0.05em; margin-bottom: 14px; }
.hero-title { font-size: 2.5rem; font-weight: 800; line-height: 1.15; color: var(--text-dark); margin-bottom: 18px; }
.hero-title .blue { color: var(--blue); }
.hero-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; max-width: 440px; }
.hero-desc strong { color: var(--text-dark); }
.hero-btns { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; padding-bottom: 8px; }
.stat-item { display: flex; align-items: center; gap: 8px; }
.stat-icon { font-size: 20px; }
.stat-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.stat-item span { font-size: 11px; color: var(--text-light); }

.hero-left { min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.hero-center { display: flex; flex-direction: column; justify-content: flex-start; align-items: center; position: relative; width: 320px; flex-shrink: 0; }
.hero-img-wrap { position: relative; width: 300px; flex-shrink: 0; }
.hero-img { width: 300px; height: 380px; object-fit: cover; object-position: top; border-radius: 16px 16px 0 0; display: block; }
.hero-float-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  width: 300px;
  padding: 10px 0 0 0;
}

.hfc-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 7px 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.09);
  transition: transform 0.2s;
  flex: 1 1 calc(50% - 6px);
  min-width: 120px;
}
.hfc-item:hover { transform: translateY(-2px); }

.hfc-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hfc-text { display: flex; flex-direction: column; line-height: 1.2; }
.hfc-label { font-size: 11.5px; font-weight: 700; color: #111827; }
.hfc-sub   { font-size: 9.5px; font-weight: 500; color: #6b7280; }

.hfc-skills, .hfc-cert, .hfc-intern, .hfc-you, .hfc-placement, .hfc-rating { margin-left: 0; }
.mobile-only-hfc { display: none !important; }

.hero-right {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
}
.journey-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1.5px solid rgba(203, 222, 252, 0.85);
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.05),
    0 10px 28px -4px rgba(26, 86, 219, 0.11),
    0 22px 42px -8px rgba(15, 23, 42, 0.09);
  min-width: 280px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.journey-box:hover {
  border-color: rgba(147, 197, 253, 0.95);
  box-shadow:
    0 4px 10px rgba(15, 23, 42, 0.06),
    0 14px 34px -4px rgba(26, 86, 219, 0.15),
    0 28px 48px -8px rgba(15, 23, 42, 0.11);
}
.journey-box h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  flex-shrink: 0;
}
.journey-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.journey-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 6px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.journey-list li:hover {
  background: rgba(26, 86, 219, 0.04);
  transform: translateX(3px);
}
.journey-list li div:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.journey-list li strong {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
}
.journey-list li span {
  font-size: 11px;
  color: var(--text-light);
}
.j-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.blue-bg   { background: #1a56db; }
.teal-bg   { background: #0891b2; }
.green-bg  { background: #059669; }
.orange-bg { background: #d97706; }
.purple-bg { background: #7c3aed; }
.pink-bg   { background: #db2777; }
.indigo-bg { background: #4f46e5; }

/* ===========================
   COLLABORATION BAR
=========================== */
.collab-bar {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 25%, #e0e7ff 60%, #dbeafe 100%);
  border-top: 1px solid #bfdbfe;
  border-bottom: 1px solid #bfdbfe;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(37, 99, 235, 0.05), inset 0 -2px 10px rgba(37, 99, 235, 0.05);
}
.collab-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(79, 70, 229, 0.10) 0%, transparent 70%),
    radial-gradient(circle, rgba(26, 86, 219, 0.07) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 22px 22px;
  pointer-events: none;
}
.collab-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}
.collab-left strong,
.collab-right strong {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.55;
  white-space: nowrap;
}
.collab-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, #93c5fd, transparent);
  flex-shrink: 0;
}
.collab-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  border: 1.5px solid rgba(191, 219, 254, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.28s ease,
              background 0.28s ease;
  flex-shrink: 0;
}
.collab-partner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 13px;
  padding: 1.5px;
  background: linear-gradient(135deg, #2563eb, #7c3aed, #06b6d4, #2563eb);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.collab-partner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 40%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  pointer-events: none;
  transition: transform 0.6s ease;
}
.collab-partner:hover,
.collab-partner:active {
  transform: translateY(-3px) scale(1.02);
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 24px -3px rgba(37, 99, 235, 0.2), 0 4px 10px rgba(0, 0, 0, 0.04);
}
.collab-partner:hover::before,
.collab-partner:active::before {
  opacity: 1;
  animation: borderGlowRotate 3s linear infinite;
}
.collab-partner:hover::after,
.collab-partner:active::after {
  transform: translateX(100%);
}
@keyframes borderGlowRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.collab-partner span {
  font-size: 11px;
  color: #4b5563;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.collab-logo-svg { display: block; }
.ibm-svg { width: 78px; height: 29px; }
.ms-collab-svg { width: 155px; height: 31px; }

/* ===========================
   PROGRAMS SECTION
=========================== */
.programs-section { padding: 72px 0 0; background: #fff; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--text-dark); text-align: center; margin-bottom: 10px; }
.section-sub { font-size: 15px; color: var(--text-light); text-align: center; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.program-card:hover { box-shadow: 0 8px 32px rgba(26,86,219,0.12); transform: translateY(-2px); }
.program-card.featured { border: 2px solid var(--blue); box-shadow: 0 4px 24px rgba(26,86,219,0.1); }
.badge-popular {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: 0.06em; z-index: 2;
}
.card-img-wrap { width: 100%; height: 160px; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 16px 20px 0; }
.purple-icon { background: #7c3aed; }
.teal-icon   { background: #0891b2; }
.blue-icon   { background: #1a56db; }
.program-card h3 { font-size: 1.2rem; font-weight: 800; padding: 10px 20px 2px; color: var(--text-dark); }
.card-tagline { font-size: 13px; color: var(--text-light); padding: 0 20px 12px; }
.price { font-size: 1.5rem; font-weight: 800; padding: 8px 20px 12px; color: var(--text-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price small { font-size: 12px; font-weight: 400; color: var(--text-light); }
.features-list { padding: 14px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.features-list li { font-size: 13.5px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.check { color: var(--blue); font-size: 13px; font-weight: 700; flex-shrink: 0; }
.program-card .btn-card { margin: 0 20px 20px; width: calc(100% - 40px); }

.programs-footer-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--blue-light);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.pfb-item { display: flex; align-items: center; gap: 10px; }
.pfb-icon { font-size: 22px; }
.pfb-item div { display: flex; flex-direction: column; }
.pfb-item strong { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.pfb-item span { font-size: 11.5px; color: var(--text-light); }

/* Mobile program scroll dots */
.prog-scroll-dots {
  display: none; /* hidden on desktop */
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  margin-bottom: 4px;
}
.prog-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  border: none;
  padding: 0;
}
.prog-dot.active {
  background: var(--blue);
  width: 22px;
  border-radius: 4px;
}
/* Scroll hint text */
.programs-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 4px;
  margin-bottom: -8px;
}
.programs-scroll-hint svg { opacity: 0.5; animation: swipeAnim 1.5s ease-in-out infinite; }
@keyframes swipeAnim { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }

/* ===========================
   INTERNSHIP SECTION — DARK
=========================== */
.internship-section {
  padding: 80px 0;
  background: #0b1120;
  position: relative;
  overflow: hidden;
}
/* subtle radial glow */
.internship-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,86,219,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.internship-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: #60a5fa; margin-bottom: 10px; text-transform: uppercase; }
.internship-left h2 { font-size: 2.3rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: #fff; }
.internship-left h2 .blue { color: #60a5fa; }
.internship-desc { font-size: 14.5px; color: #94a3b8; line-height: 1.75; margin-bottom: 28px; }
.internship-img { width: 100%; height: 290px; object-fit: cover; border-radius: 18px; box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.internship-right { display: flex; flex-direction: column; gap: 14px; }
.internship-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.internship-feature:hover {
  background: rgba(26,86,219,0.15);
  border-color: rgba(96,165,250,0.3);
  transform: translateX(4px);
}
.if-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.blue-bg2   { background: linear-gradient(135deg, #1a56db, #3b82f6); }
.green-bg2  { background: linear-gradient(135deg, #059669, #10b981); }
.orange-bg2 { background: linear-gradient(135deg, #d97706, #f59e0b); }
.rocket-bg  { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.if-text { display: flex; flex-direction: column; gap: 2px; }
.if-text strong { font-size: 14px; font-weight: 700; color: #f1f5f9; }
.if-text span { font-size: 12px; color: #64748b; }

/* ===========================
   ECOSYSTEMS SECTION
=========================== */
.ecosystems-section {
  padding: 72px 0;
  background: #dbeafe;
  position: relative;
}
.ecosystems-section .section-title { color: #111827; }
.ecosystems-section .section-sub   { color: #374151; }
.ecosystems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ecosystem-card {
  border: 1px solid #bfdbfe;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(26,86,219,0.1);
}
.ecosystem-card:hover { box-shadow: 0 10px 36px rgba(26,86,219,0.18); transform: translateY(-2px); }
.eco-content { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.eco-logo { margin-bottom: 20px; }
.ms-logo-wrap { margin-bottom: 20px; }
.eco-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; flex: 1; }
.eco-list li { font-size: 14px; color: var(--text-mid); display: flex; align-items: center; gap: 10px; }
.blue-check { color: var(--blue); font-weight: 700; font-size: 14px; }
.eco-img { width: 200px; flex-shrink: 0; overflow: hidden; }
.eco-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ecosystem-card:hover .eco-img img { transform: scale(1.04); }

/* ===========================
   DASHBOARD SECTION
=========================== */
.dashboard-section {
  padding: 72px 0;
  background: #c7d9f8;
}
.dashboard-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.dashboard-section .section-title { color: #0f172a; text-align: left; margin-bottom: 8px; }
.dashboard-section .section-sub   { color: #334155; text-align: left; margin-bottom: 0; }

.dashboard-icons {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.di-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.di-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.di-icon:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }

/* individual icon colors */
.di-item:nth-child(1) .di-icon { background: linear-gradient(135deg,#1a56db,#3b82f6); }
.di-item:nth-child(2) .di-icon { background: linear-gradient(135deg,#d97706,#f59e0b); }
.di-item:nth-child(3) .di-icon { background: #ffffff; border: 1.5px solid #bfdbfe; }
.di-item:nth-child(4) .di-icon { background: #ffffff; border: 1.5px solid #bfdbfe; }
.di-item:nth-child(5) .di-icon { background: linear-gradient(135deg,#059669,#10b981); }
.di-item:nth-child(6) .di-icon { background: linear-gradient(135deg,#7c3aed,#8b5cf6); }
.di-item:nth-child(7) .di-icon { background: linear-gradient(135deg,#db2777,#f472b6); }
.di-item:nth-child(8) .di-icon { background: linear-gradient(135deg,#0891b2,#06b6d4); }

.di-item span {
  font-size: 10.5px;
  color: #1e3a5f;
  line-height: 1.35;
  font-weight: 600;
}
.ibm-di {
  font-size: 12px;
  font-weight: 900;
  color: #1F70C1;
  font-style: italic;
}
.ms-di {}

/* Dashboard Mockup */
.dashboard-mockup {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
  width: 280px;
  border: 1px solid var(--border);
}
.mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.mockup-logo { font-weight: 700; font-size: 13px; color: var(--blue); }
.mockup-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.mockup-welcome { font-size: 13px; font-weight: 600; margin-bottom: 14px; color: var(--text-dark); }
.mockup-progress { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.mp-item { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-mid); }
.mp-item span:first-child { min-width: 90px; }
.progress-bar { flex: 1; height: 6px; background: #e5e7eb; border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--blue); border-radius: 3px; }
.green-fill { background: #10b981; }
.mockup-badges { display: flex; gap: 8px; }
.badge-pill { background: #eff6ff; color: var(--blue); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; border: 1px solid #dbeafe; }

/* ===========================
   PLACEMENT SECTION — WHITE
=========================== */
.placement-section { padding: 64px 0; background: #dbeafe; border-top: none; }
.placement-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.placement-section .section-title { color: #0f172a; text-align: left; margin-bottom: 0; }
.placement-section .view-all-link  { color: #1a56db; font-weight: 700; }
.view-all-link { font-size: 13px; font-weight: 600; color: var(--blue); white-space: nowrap; }
.view-all-link:hover { text-decoration: underline; }
.partners-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #bfdbfe;
  box-shadow: 0 4px 20px rgba(26,86,219,0.1);
}
.partner-item { display: flex; align-items: center; justify-content: center; min-width: 80px; opacity: 0.8; transition: opacity 0.2s, transform 0.2s; }
.partner-item:hover { opacity: 1; transform: scale(1.06); }

/* ===========================
   TESTIMONIALS — CAROUSEL
=========================== */
.testimonials-section { padding: 72px 0 80px; background: #f0f7ff; }
.testimonials-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }

/* Carousel outer — clips overflow */
.t-carousel-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 4px;
}
.t-carousel-outer:active { cursor: grabbing; }

/* Track — all cards in a row */
.t-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual card */
.testimonial-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 32px 28px 28px;
  min-width: 360px;
  max-width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 20px rgba(26,86,219,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  border-radius: 20px 20px 0 0;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,86,219,0.13);
}

/* Big quote mark */
.t-quote-icon {
  font-size: 64px;
  line-height: 0.6;
  color: #bfdbfe;
  font-family: Georgia, serif;
  font-weight: 900;
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

/* Stars row */
.t-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 24px;
}
.t-star { color: #f59e0b; font-size: 16px; }
.t-rating-num {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  margin-left: 6px;
}

/* Author row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}
.t-avatar, .t-avatar-initials {
  width: 46px; height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
}
.t-avatar {
  object-fit: cover;
  border: 2px solid #dbeafe;
}
.t-avatar-initials {
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #bfdbfe;
  box-shadow: 0 2px 8px rgba(26,86,219,0.2);
  letter-spacing: 0.5px;
}
.t-author-info { display: flex; flex-direction: column; flex: 1; }
.t-author-info strong { font-size: 13.5px; font-weight: 700; color: #111827; display: flex; align-items: center; gap: 5px; }
.t-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #059669;
  font-size: 11px;
  font-weight: 600;
  background: #ecfdf5;
  padding: 1px 7px;
  border-radius: 12px;
  border: 1px solid #a7f3d0;
  margin-top: 2px;
  width: fit-content;
}
.t-author-info span { font-size: 12px; color: #6b7280; margin-top: 1px; }

/* Company badge */
.t-badge {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #1a56db;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.t-badge.accenture { background: #a100ff; }
.t-badge.hcl       { background: #00539b; }
.t-badge.infosys   { background: #007cc3; }
.t-badge.wipro     { background: #37ae3b; }
.t-badge.ibm-badge { background: #1f70c1; }
.t-badge.cap       { background: #0070ad; }

/* Dots */
.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #bfdbfe;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  border: none;
  padding: 0;
}
.t-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ===========================
   CTA SECTION — DEEP DARK NAVY
=========================== */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(59,130,246,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(99,102,241,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #030b1f 0%, #060e2a 45%, #0a1440 70%, #060c24 100%);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.7) 30%, rgba(129,140,248,0.9) 50%, rgba(96,165,250,0.7) 70%, transparent);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-left h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; letter-spacing: -0.02em; }
.cta-left p { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btns .btn-primary { background: #fff; color: #060e2a; box-shadow: 0 4px 20px rgba(255,255,255,0.15); }
.cta-btns .btn-primary:hover { background: #e8f0fe; box-shadow: 0 6px 24px rgba(255,255,255,0.25); }
.cta-btns .btn-outline-white { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.cta-btns .btn-outline-white:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.09); }
.cta-stats {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 8px 0;
  backdrop-filter: blur(10px);
}
.cta-stat { text-align: center; padding: 18px 44px; position: relative; }
.cta-stat:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.cta-stat strong {
  display: block; font-size: 2.2rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.cta-stat span { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }

/* ===========================
   FOOTER
=========================== */
.footer { background: #111827; color: #d1d5db; padding: 60px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 220px repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-ai { background: var(--blue); }
.footer-brand .logo-campus { color: #fff; }
.footer-brand .logo-tagline { color: #9ca3af; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #d1d5db;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--blue); color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: #9ca3af; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12.5px; color: #6b7280;
  flex-wrap: wrap; gap: 8px;
}
.footer-developer {
  font-size: 12.5px;
  color: #9ca3af;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.developer-link {
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.developer-link:hover {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ===========================
   RESPONSIVE — Full Device Coverage
   1200px → 1100px → 900px → 768px → 640px → 480px → 380px
=========================== */

/* ── Large tablets / small laptops ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr auto 270px; gap: 18px; align-items: stretch; }
  .journey-box { min-width: 250px; }
  .hero-title { font-size: 2.15rem; }
  .hero-img-wrap { width: 260px; }
  .hero-img { width: 260px; height: 330px; }
  .hero-float-card { width: 260px; }
  .dashboard-icons { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .cta-stat { padding: 16px 28px; }
}

/* ── Tablet portrait (iPad) ── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }

  /* Navbar */
  .nav-links   { display: none; }
  .nav-actions { display: none; }
  .hamburger   { display: block; }

  /* Hero — 2-col: text left, image right */
  .hero { padding: 32px 0 0; overflow: visible; }
  .hero-inner {
    grid-template-columns: 1fr 220px;
    gap: 20px;
    padding: 0 20px;
    align-items: center;
  }
  .hero-left   { order: 0; text-align: left; min-width: 0; }
  .hero-center { order: 1; width: 220px; min-width: 0; justify-content: center; flex-shrink: 0; }
  .hero-right  { display: none; }
  .hero-title  { font-size: 1.9rem; }
  .hero-img-wrap { width: 200px; }
  .hero-img { width: 200px; height: 260px; }
  .hero-float-card { width: 200px; }
  .mobile-only-hfc { display: flex !important; }
  .hero-desc { font-size: 14px; }
  .hero-btns { justify-content: flex-start; }
  .hero-stats { justify-content: flex-start; gap: 16px; }

  /* Collab bar — single line */
  .collab-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;
  }
  .collab-inner::-webkit-scrollbar { display: none; }
  .collab-divider {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, #93c5fd, transparent);
    flex-shrink: 0;
  }
  .collab-left, .collab-right, .collab-partner { flex-shrink: 0; }

  /* Programs */
  .programs-grid { grid-template-columns: repeat(2, 1fr); }

  /* Internship */
  .internship-section { padding: 60px 0; }
  .internship-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .internship-inner .internship-left { text-align: center; }
  .internship-img { height: 220px; max-width: 480px; margin: 0 auto; }
  .internship-right { max-width: 500px; margin: 0 auto; width: 100%; }

  /* Ecosystems */
  .ecosystems-grid { grid-template-columns: 1fr; gap: 20px; }
  .eco-img { width: 150px; }

  /* Dashboard */
  .dashboard-section { padding: 60px 0; }
  .dashboard-inner { grid-template-columns: 1fr; gap: 40px; }
  .dashboard-icons { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .dashboard-mockup { width: 100%; max-width: 340px; margin: 0 auto; }
  .dashboard-section .section-title { text-align: center; }
  .dashboard-section .section-sub   { text-align: center; }

  /* Placement */
  .placement-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .partners-row { justify-content: center; gap: 20px 28px; padding: 24px; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; gap: 32px; }
  .cta-btns  { justify-content: center; }
  .cta-stats { flex-wrap: wrap; justify-content: center; }
  .cta-left h2 { font-size: 1.8rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Large phone / phone landscape ── */
@media (max-width: 768px) {
  /* Hero */
  .hero-inner { grid-template-columns: 1fr 180px; gap: 14px; padding: 0 16px; }
  .hero-center { width: 180px; }
  .hero-img-wrap { width: 165px; }
  .hero-img { width: 165px; height: 210px; }
  .hero-float-card { width: 165px; }
  .hero-title  { font-size: 1.65rem; }
  .hero-desc   { font-size: 13.5px; margin-bottom: 20px; }
  .hero-stats  { gap: 10px; }
  .stat-item   { gap: 6px; }
  .stat-item strong { font-size: 12.5px; }
  .stat-item span   { font-size: 10px; }

  /* Collab bar — single line */
  .collab-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
    padding: 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .collab-inner::-webkit-scrollbar { display: none; }
  .collab-left, .collab-right, .collab-partner { flex-shrink: 0; }
  .collab-left strong, .collab-right strong { font-size: 12px; line-height: 1.35; white-space: nowrap; }
  .collab-partner { padding: 9px 18px; border-radius: 12px; gap: 5px; }
  .collab-partner span { font-size: 10px; white-space: nowrap; }
  .collab-divider {
    display: block;
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, transparent, #93c5fd, transparent);
    flex-shrink: 0;
  }
  .ibm-svg { width: 66px; height: 25px; }
  .ms-collab-svg { width: 130px; height: 26px; }

  /* Programs — Horizontal smooth swipe carousel on mobile */
  .section-title { font-size: 1.6rem; }
  .programs-section { padding: 40px 0 16px; }
  .programs-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 16px 20px;
    margin: 0 -16px;
    scrollbar-width: none;
  }
  .programs-grid::-webkit-scrollbar { display: none; }
  .program-card {
    flex: 0 0 85vw;
    max-width: 340px;
    min-width: 270px;
    scroll-snap-align: center;
    border-radius: 18px;
    box-sizing: border-box;
  }
  .programs-footer-bar { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: 12px 20px; }
  /* Show horizontal scroll dots and swipe hint on mobile */
  .prog-scroll-dots { display: flex !important; }
  .programs-scroll-hint { display: flex !important; }

  /* Internship */
  .internship-left h2 { font-size: 1.7rem; }
  .internship-feature { padding: 13px 16px; }

  /* Dashboard icons */
  .dashboard-icons { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .di-icon { width: 44px; height: 44px; }
  .di-item span { font-size: 9.5px; }

  /* Testimonials */
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .testimonial-card {
    min-width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    padding: 24px 20px;
    box-sizing: border-box;
  }

  /* CTA */
  .cta-stat { padding: 14px 20px; }
  .cta-stat strong { font-size: 1.8rem; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ── Standard phone portrait ≤640px ── */
@media (max-width: 640px) {
  .container { padding: 0 14px; }
  body { font-size: 14px; }
  .nav-container { padding: 0 14px; }
  .logo-img { height: 36px; }

  /* ── HERO ── */
  .hero { padding: 20px 0 16px; }
  .hero-inner {
    grid-template-columns: 1fr 148px;
    gap: 12px;
    padding: 0 14px;
    align-items: stretch;
  }
  .hero-left  { padding-top: 4px; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
  .hero-center { width: 148px; min-width: 0; flex-shrink: 0; display: flex; flex-direction: column; justify-content: flex-start; }
  .hero-tags  { font-size: 9.5px; letter-spacing: 0.03em; margin-bottom: 10px; }
  .hero-title { font-size: 1.4rem; line-height: 1.22; margin-bottom: 12px; }
  .hero-desc  { font-size: 13px; line-height: 1.6; margin-bottom: 16px; max-width: 100%; }
  .hero-btns  { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; font-size: 13.5px; padding: 11px 16px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; padding-bottom: 6px; }
  .stat-item  { gap: 5px; }
  .stat-icon  { font-size: 14px; }
  .stat-item strong { font-size: 12px; }
  .stat-item span   { font-size: 9.5px; }
  .hero-img-wrap  { width: 144px; }
  .hero-img { width: 144px; height: 180px; border-radius: 10px 10px 0 0; }
  .hero-float-card { width: 144px; flex-direction: column; gap: 5px; padding: 6px 0 0 0; }
  .hfc-item { flex: none; width: 100%; padding: 5px 8px; gap: 6px; border-radius: 8px; }
  .hfc-icon  { width: 22px; height: 22px; border-radius: 6px; }
  .hfc-label { font-size: 10px; }
  .hfc-sub   { font-size: 8.5px; }

  /* ── COLLAB BAR — Single Line on Mobile ── */
  .collab-bar { padding: 18px 0; }
  .collab-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }
  .collab-inner::-webkit-scrollbar { display: none; }
  .collab-left { order: 0; flex-shrink: 0; }
  .collab-left strong { font-size: 11px; line-height: 1.35; white-space: nowrap; }
  .collab-divider {
    display: block;
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, transparent, #93c5fd, transparent);
    flex-shrink: 0;
  }
  .collab-partner {
    order: 0;
    width: auto;
    max-width: none;
    padding: 8px 14px;
    border-radius: 11px;
    gap: 4px;
    flex-shrink: 0;
  }
  .collab-partner span { font-size: 9px; white-space: nowrap; }
  .ibm-svg { width: 56px; height: 21px; }
  .ms-collab-svg { width: 110px; height: 22px; }
  .collab-right { display: block; order: 0; flex-shrink: 0; }
  .collab-right strong { font-size: 11px; line-height: 1.35; white-space: nowrap; }

  /* ── PROGRAMS ── */
  .programs-section { padding: 36px 0 20px; }
  .section-title { font-size: 1.4rem; }
  .section-sub   { font-size: 13px; margin-bottom: 20px; }
  /* Keep carousel on phone — smooth snap */
  .programs-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 6px 14px 18px;
    margin: 0 -14px;
    scrollbar-width: none;
  }
  .programs-grid::-webkit-scrollbar { display: none; }
  .program-card {
    flex: 0 0 calc(100vw - 48px);
    max-width: 320px;
    min-width: 260px;
    scroll-snap-align: center;
  }
  .prog-scroll-dots { display: flex !important; }
  .programs-scroll-hint { display: flex !important; }
  .card-img-wrap { height: 148px; }
  .card-icon { width: 40px; height: 40px; margin: 14px 16px 0; border-radius: 10px; }
  .program-card h3 { font-size: 1.05rem; padding: 10px 16px 2px; }
  .card-tagline { font-size: 12px; padding: 0 16px 10px; }
  .price { font-size: 1.3rem; padding: 8px 16px 10px; }
  .price small { font-size: 11px; }
  .features-list { padding: 12px 16px; gap: 7px; }
  .features-list li { font-size: 12.5px; }
  .program-card .btn-card { margin: 4px 16px 16px; width: calc(100% - 32px); font-size: 13.5px; padding: 12px; }

  /* Programs footer bar — 2×2 grid */
  .programs-footer-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    margin-top: 20px;
    border-radius: 12px;
  }
  .pfb-item { gap: 8px; }
  .pfb-icon { font-size: 18px; }
  .pfb-item strong { font-size: 12px; }
  .pfb-item span   { font-size: 10.5px; }

  /* ── INTERNSHIP ── */
  .internship-section { padding: 48px 0; }
  .internship-inner { gap: 24px; }
  .internship-left h2 { font-size: 1.5rem; }
  .internship-desc  { font-size: 13.5px; }
  .internship-img   { height: 190px; border-radius: 12px; }
  .internship-right { width: 100%; }
  .internship-feature { padding: 12px 14px; gap: 12px; border-radius: 12px; }
  .if-icon { width: 38px; height: 38px; border-radius: 10px; }
  .if-text strong { font-size: 13px; }
  .if-text span   { font-size: 11.5px; }

  /* ── ECOSYSTEMS ── */
  .ecosystems-section { padding: 44px 0; }
  .ecosystems-grid { grid-template-columns: 1fr; gap: 16px; }
  .ecosystem-card { flex-direction: column; border-radius: 16px; }
  .eco-content { padding: 22px 18px; }
  .eco-img  { display: none; }
  .eco-logo { margin-bottom: 14px; }
  .eco-list li { font-size: 13px; }
  .btn-eco { display: block; width: 100%; text-align: center; padding: 11px; font-size: 14px; margin-top: 14px; border-radius: 8px; }

  /* ── DASHBOARD ── */
  .dashboard-section { padding: 44px 0; }
  .dashboard-section .section-title { font-size: 1.35rem; }
  /* Icons: 4 columns × 2 rows */
  .dashboard-icons { grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 20px; }
  .di-icon { width: 44px; height: 44px; border-radius: 12px; }
  .di-item span { font-size: 9px; line-height: 1.3; }
  /* Mockup card */
  .dashboard-mockup { max-width: 100%; padding: 16px; border-radius: 12px; }
  .mockup-header { margin-bottom: 10px; }
  .mockup-logo   { font-size: 12px; }
  .mockup-avatar { width: 28px; height: 28px; }
  .mockup-welcome { font-size: 12px; margin-bottom: 10px; }
  .mp-item { font-size: 10.5px; }
  .mp-item span:first-child { min-width: 80px; }
  .progress-bar { height: 5px; }
  .badge-pill { font-size: 10px; padding: 3px 8px; }

  /* ── PLACEMENT ── */
  .placement-section { padding: 40px 0; }
  .placement-header { margin-bottom: 18px; }
  .placement-section .section-title { font-size: 1.3rem; line-height: 1.3; }
  .partners-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    justify-items: center;
    align-items: center;
  }
  .partner-item { min-width: 0; width: 100%; justify-content: center; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { padding: 44px 0 52px; }
  .testimonials-header { margin-bottom: 24px; }
  .testimonials-header h2 { font-size: 1.35rem; }
  .testimonial-card { min-width: 272px; max-width: 272px; padding: 20px 16px; border-radius: 16px; }
  .t-quote-icon   { font-size: 44px; margin-bottom: 12px; }
  .testimonial-text { font-size: 13px; margin-bottom: 16px; line-height: 1.65; }
  .t-rating { margin-bottom: 18px; }
  .t-star { font-size: 14px; }
  .testimonial-author { padding-top: 16px; gap: 10px; }
  .t-avatar { width: 38px; height: 38px; }
  .t-author-info strong { font-size: 13px; }
  .t-author-info span  { font-size: 11px; }
  .t-badge { width: 32px; height: 32px; font-size: 8px; border-radius: 7px; }
  .t-dots { margin-top: 20px; gap: 6px; }

  /* ── CTA ── */
  .cta-section { padding: 52px 0; }
  .cta-inner { gap: 28px; text-align: center; }
  .cta-left h2 { font-size: 1.45rem; line-height: 1.25; }
  .cta-left p  { font-size: 13.5px; margin-bottom: 22px; }
  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .cta-btns .btn-primary,
  .cta-btns .btn-outline-white { width: 100%; max-width: 280px; padding: 13px; font-size: 14px; text-align: center; }
  .cta-stats { width: 100%; border-radius: 14px; }
  .cta-stat { flex: 1 1 33%; padding: 12px 8px; }
  .cta-stat strong { font-size: 1.35rem; }
  .cta-stat span   { font-size: 9.5px; letter-spacing: 0.04em; }

  /* ── FOOTER ── */
  .footer { padding: 40px 0 0; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding-bottom: 28px;
  }
  /* Brand row spans full width, centered */
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .logo-img-footer { height: 40px; }
  .footer-socials { justify-content: center; margin-top: 12px; gap: 10px; }
  .footer-col h4 { font-size: 12.5px; margin-bottom: 10px; }
  .footer-col a  { font-size: 12px; }
  .footer-col ul { gap: 7px; }
  .footer-bottom { padding: 14px 0; font-size: 11px; flex-direction: column; text-align: center; gap: 4px; }
}

/* ── Small phones ≤480px (iPhone SE, Galaxy A) ── */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .nav-container { padding: 0 12px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr 130px; gap: 10px; padding: 0 12px; }
  .hero-center { width: 130px; }
  .hero-title { font-size: 1.25rem; }
  .hero-desc  { font-size: 12.5px; }
  .hero-img-wrap { width: 125px; }
  .hero-img { width: 125px; height: 158px; }
  .hero-float-card { width: 125px; }
  .hfc-item  { padding: 4px 7px; }
  .hfc-label { font-size: 9.5px; }
  .hfc-icon  { width: 20px; height: 20px; }

  /* Collab — sleek compact single line */
  .collab-inner { gap: 8px; padding: 0 10px; }
  .collab-partner { padding: 6px 11px; border-radius: 9px; gap: 3px; }
  .collab-left strong, .collab-right strong { font-size: 10.5px; line-height: 1.3; }
  .collab-partner span { font-size: 8.5px; }
  .collab-divider { height: 32px; }
  .ibm-svg { width: 48px; height: 18px; }
  .ms-collab-svg { width: 94px; height: 19px; }

  /* Programs — Slider on Small Phones */
  .programs-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 6px 12px 16px;
    margin: 0 -12px;
    scrollbar-width: none;
  }
  .programs-grid::-webkit-scrollbar { display: none; }
  .program-card {
    flex: 0 0 calc(100vw - 36px);
    max-width: 310px;
    min-width: 250px;
    scroll-snap-align: center;
  }
  .programs-footer-bar { grid-template-columns: 1fr 1fr; gap: 10px; }
  .prog-scroll-dots { display: flex !important; }
  .programs-scroll-hint { display: flex !important; }

  /* Internship */
  .internship-feature { padding: 10px 12px; }
  .if-icon { width: 34px; height: 34px; }

  /* Dashboard */
  .dashboard-icons { gap: 6px; }
  .di-icon { width: 38px; height: 38px; border-radius: 10px; }
  .di-item span { font-size: 8.5px; }

  /* Placement — 4 per row still, smaller */
  .partners-row { gap: 12px; padding: 12px; }

  /* Testimonials */
  .testimonial-card {
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 22px 18px;
    box-sizing: border-box;
  }
  .t-carousel-track { gap: 14px; }

  /* CTA */
  .cta-stat { flex: 1 1 50%; }
  .cta-stat strong { font-size: 1.2rem; }
  .cta-left h2 { font-size: 1.3rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-col h4 { font-size: 12px; }
  .footer-col a  { font-size: 11.5px; }
}

/* ── Very small phones ≤380px ── */
@media (max-width: 380px) {
  .container { padding: 0 10px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr 110px; gap: 8px; padding: 0 10px; }
  .hero-center { width: 110px; }
  .hero-title { font-size: 1.15rem; }
  .hero-img-wrap { width: 105px; }
  .hero-img { width: 105px; height: 135px; }
  .hero-float-card { width: 105px; }
  .hfc-label { font-size: 9px; }
  .hfc-sub   { display: none; }

  /* Programs footer bar — single col */
  .programs-footer-bar { grid-template-columns: 1fr; gap: 8px; }

  /* Placement — 2 per row */
  .partners-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* CTA */
  .cta-stat strong { font-size: 1.1rem; }

  /* Footer — single col */
  .footer-top { grid-template-columns: 1fr; gap: 16px; }
}

/* ===================================================
   UNIVERSAL FAQ ACCORDION COMPONENT
   =================================================== */
.faq-section {
  padding: 80px 0;
  background: #ffffff;
}
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 26px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.faq-item:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.faq-item.open {
  border-color: #93c5fd;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(26, 86, 219, 0.08);
}
.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0;
  line-height: 1.4;
}
.faq-item h3::after {
  content: '+';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  color: #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  border: 1px solid #dbeafe;
}
.faq-item.open h3::after {
  content: '−';
  background: #1a56db;
  color: #ffffff;
  transform: rotate(180deg);
  border-color: #1a56db;
}
.faq-item p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.75;
  margin-top: 14px;
  margin-bottom: 0;
  display: none !important;
}
.faq-item.open p {
  display: block !important;
  animation: faqSlideDown 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes faqSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   INTERACTIVE PORTAL & ENQUIRY MODALS
   =================================================== */
.portal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.portal-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.portal-modal-box {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 490px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid #e2e8f0;
  position: relative;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.portal-modal-overlay.active .portal-modal-box {
  transform: scale(1) translateY(0);
}
.portal-modal-header {
  padding: 24px 28px 18px;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.modal-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.modal-badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  display: inline-block;
}
.modal-badge-text {
  font-size: 11px;
  font-weight: 700;
  color: #047857;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.portal-modal-header h3 {
  font-size: 1.28rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.3;
}
.portal-modal-header p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}
.portal-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.portal-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: scale(1.05);
}
.portal-modal-body {
  padding: 22px 28px 26px;
}
.portal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .portal-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.portal-form-group {
  margin-bottom: 15px;
}
.portal-form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.portal-form-group input,
.portal-form-group select {
  width: 100%;
  padding: 10.5px 13px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  font-size: 13.5px;
  font-family: inherit;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.portal-form-group select {
  cursor: pointer;
}
.portal-form-group input:focus,
.portal-form-group select:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}
.portal-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.portal-phone-prefix {
  position: absolute;
  left: 12px;
  font-weight: 700;
  font-size: 13px;
  color: #64748b;
  pointer-events: none;
}
.portal-phone-wrap input {
  padding-left: 44px;
}
.portal-modal-btn {
  width: 100%;
  background: linear-gradient(135deg, #1a56db, #1e40af);
  color: #ffffff;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.portal-modal-btn:hover {
  background: linear-gradient(135deg, #1344b5, #1e3a8a);
  transform: translateY(-1px);
}
.portal-modal-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.portal-modal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 11.5px;
  color: #64748b;
  flex-wrap: wrap;
}
.portal-modal-trust span.dot {
  color: #cbd5e1;
}

/* ===== Dynamic Top Announcement Bar ===== */
.top-announcement-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e40af 50%, #0284c7 100%);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.top-announcement-bar a {
  color: #fef08a;
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.top-announcement-bar a:hover {
  opacity: 0.85;
}
.top-announcement-close {
  position: absolute;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s;
}
.top-announcement-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

