@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1e3a8a;
  --primary-dark: #172554;
  --accent: #f97316;
  --accent-warm: #fbbf24;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --gradient-hero: linear-gradient(135deg, #172554 0%, #1e3a8a 50%, #1e40af 100%);
  --gradient-card-java: linear-gradient(135deg, #ea580c, #f97316);
  --gradient-card-python: linear-gradient(135deg, #306998, #4b8bbe);
  --gradient-card-spring: linear-gradient(135deg, #059669, #10b981);
  --gradient-card-aws: linear-gradient(135deg, #d97706, #f59e0b);
  --gradient-card-devops: linear-gradient(135deg, #7c3aed, #a855f7);
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

body.ta-modern {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

.ta-modern h1,
.ta-modern h2,
.ta-modern h3,
.ta-modern h4,
.ta-modern h5 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

/* Top bar */
.ta-topbar {
  background: var(--dark);
  color: #cbd5e1;
  font-size: 0.875rem;
  padding: 10px 0;
}

.ta-topbar a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s;
}

.ta-topbar a:hover {
  color: var(--accent);
}

.ta-topbar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.ta-topbar-list i {
  color: var(--accent-warm);
  margin-right: 6px;
}

/* Navbar */
.ta-navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  padding: 6px 0 8px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(15, 23, 42, 0.06);
}

.ta-navbar > .container {
  align-items: center;
}

.ta-navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary) !important;
  letter-spacing: 0;
}

.ta-nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text) !important;
  margin: 0 2px;
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: all 0.2s;
}

.ta-nav-link:hover,
.ta-nav-link.active {
  color: var(--primary) !important;
  background: #fff7ed;
}

.ta-navbar .ta-btn-primary {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.ta-btn-primary {
  background: linear-gradient(135deg, var(--accent), #ea580c);
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.ta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.45);
  color: #fff;
}

.ta-btn-outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.ta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* Hero */
.ta-hero {
  background: var(--gradient-hero);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.ta-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.ta-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.ta-hero-content {
  position: relative;
  z-index: 2;
}

.ta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fde68a;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.ta-hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.ta-hero h1 .highlight {
  background: linear-gradient(90deg, var(--accent-warm), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ta-hero-tagline {
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.ta-hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.ta-hero-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.ta-hero-step--learn {
  background: #1e40af;
}

.ta-hero-step--practice {
  background: #059669;
}

.ta-hero-step--hired {
  background: #7c3aed;
}

.ta-hero-desc {
  color: #cbd5e1;
  font-size: 1.125rem;
  max-width: 540px;
  margin-bottom: 32px;
}

.ta-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.ta-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ta-stat-item strong,
.ta-stat-card strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.ta-stat-item span,
.ta-stat-card span {
  color: #94a3b8;
  font-size: 0.875rem;
}

.ta-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 16px 22px;
  min-width: 120px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.ta-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.5);
}

.ta-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 28px;
}

.ta-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
}

.ta-hero-trust i {
  color: #4ade80;
}

.ta-btn-pulse {
  animation: ta-pulse-glow 2.5s ease-in-out infinite;
}

@keyframes ta-pulse-glow {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  }

  50% {
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.65), 0 0 0 6px rgba(249, 115, 22, 0.15);
  }
}

.ta-enroll-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* Local SEO — Bhubaneswar section */
.ta-local-seo {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

.ta-local-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.ta-local-seo-item {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid #e2e8f0;
}

.ta-local-seo-item h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.ta-local-seo-item h4 i {
  color: var(--accent);
  margin-right: 8px;
}

.ta-local-seo-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.55;
}

.ta-local-seo-item a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.ta-local-seo-item a:hover {
  color: var(--accent);
}

/* How it works strip */
.ta-how-strip {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  padding: 48px 0;
  border-bottom: 1px solid #e2e8f0;
}

.ta-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ta-how-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.ta-how-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #f59e0b;
}

.ta-how-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.ta-how-icon--orange {
  background: linear-gradient(135deg, #ea580c, #f97316);
}

.ta-how-icon--green {
  background: linear-gradient(135deg, #059669, #10b981);
}

.ta-how-item h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.ta-how-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0 0 12px;
  line-height: 1.5;
}

.ta-how-link {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
}

.ta-how-link:hover {
  color: var(--accent);
}

/* Mid-page call banner */
.ta-call-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #172554 0%, #1e3a8a 60%, #312e81 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25);
}

.ta-call-banner h3 {
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin-bottom: 8px;
}

.ta-call-banner p {
  color: #cbd5e1;
  margin: 0;
  font-size: 0.95rem;
  max-width: 520px;
}

.ta-call-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ta-phone-btn--wa {
  background: rgba(22, 163, 74, 0.35) !important;
  border-color: rgba(74, 222, 128, 0.5) !important;
}

/* Sticky mobile call bar */
.ta-sticky-call {
  display: none;
  position: fixed;
  flex-direction: row;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
  gap: 10px;
}

.ta-sticky-call-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff !important;
  transition: transform 0.15s;
}

.ta-sticky-call-btn:active {
  transform: scale(0.97);
}

.ta-sticky-call-btn--phone {
  background: linear-gradient(135deg, var(--accent), #ea580c);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

.ta-sticky-call-btn--wa {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
}

.ta-hero-visual {
  position: relative;
  z-index: 2;
}

.ta-hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
}

.ta-hero-card h3 {
  color: #fff;
  margin-bottom: 20px;
}

.ta-course-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  border-radius: 12px;
  margin: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.ta-course-pill i {
  font-size: 1.1rem;
}

/* Sections */
.ta-section {
  padding: 90px 0;
}

.ta-section-alt {
  background: var(--surface-alt);
}

.ta-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.ta-section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.ta-section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.ta-section-header p {
  color: var(--text-light);
  margin: 0;
}

/* Course cards */
.ta-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.ta-course-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e2e8f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ta-course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ta-course-card-header {
  padding: 28px 28px 20px;
  color: #fff;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ta-course-card-header.java {
  background: var(--gradient-card-java);
}

.ta-course-card-header.python {
  background: var(--gradient-card-python);
}

.ta-course-card-header.spring {
  background: var(--gradient-card-spring);
}

.ta-course-card-header.aws {
  background: var(--gradient-card-aws);
}

.ta-course-card-header.devops {
  background: var(--gradient-card-devops);
}

.ta-course-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.ta-course-card-header h3 {
  color: #fff;
  font-size: 1.35rem;
  margin: 0;
}

.ta-course-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ta-course-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

.ta-course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ta-course-tags span {
  background: #f1f5f9;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
}

.ta-course-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ta-course-link:hover {
  color: var(--primary-dark);
}

/* Features */
.ta-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.ta-feature-box {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.25s, border-color 0.2s, box-shadow 0.25s;
}

.ta-feature-box:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.12);
}

.ta-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.ta-feature-box h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.ta-feature-box p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* CTA */
.ta-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 50%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ta-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.ta-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.ta-cta-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.ta-phone-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.ta-phone-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.ta-btn-white {
  background: #fff;
  color: var(--primary) !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
}

.ta-btn-white:hover {
  transform: scale(1.05);
  color: var(--primary-dark);
}

/* Footer */
.ta-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 70px 0 0;
}

.ta-footer h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.ta-footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.ta-footer a:hover {
  color: var(--accent);
}

.ta-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ta-footer-links li {
  margin-bottom: 10px;
}

.ta-footer-course-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ta-footer-course-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.ta-footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 48px;
  padding: 24px 0;
  text-align: center;
  font-size: 0.875rem;
}

/* Page header for inner pages */
.ta-page-hero {
  background: var(--gradient-hero);
  padding: 80px 0 70px;
  text-align: center;
}

.ta-page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.ta-page-hero p {
  color: #cbd5e1;
  margin: 0;
}

.ta-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-size: 0.9rem;
}

.ta-breadcrumb a {
  color: #a5f3fc;
  text-decoration: none;
}

.ta-breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: #64748b;
}

/* Course detail page */
.ta-course-detail {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 32px;
}

.ta-course-detail-header {
  padding: 36px 40px;
  color: #fff;
}

.ta-course-detail-body {
  padding: 36px 40px;
}

.ta-course-detail-body ul {
  padding-left: 20px;
  color: var(--text-light);
}

.ta-course-detail-body li {
  margin-bottom: 8px;
}

/* Contact */
.ta-contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.ta-contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.ta-contact-item-icon {
  width: 48px;
  height: 48px;
  background: #eef2ff;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Pricing – bold ₹999 */
.ta-price-banner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid #f59e0b;
  color: #92400e;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 100%;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.ta-price-banner--center {
  margin: 0 auto 16px;
  display: inline-flex;
}

.ta-price-banner .amount {
  font-size: 1.75rem;
  color: #b45309;
  letter-spacing: -0.5px;
}

.ta-price-hero-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fff 100%);
  border: 3px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.25);
}

.ta-price-hero-card .ta-price-big {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #b45309;
  line-height: 1;
  margin: 8px 0;
}

.ta-price-hero-card .ta-price-label {
  font-size: 1rem;
  font-weight: 700;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ta-price-hero-card .ta-no-hidden {
  display: inline-block;
  background: #059669;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-top: 12px;
}

.ta-price-sticky-note {
  background: #fff;
  border-left: 5px solid #f59e0b;
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.ta-price-sticky-note strong {
  color: #b45309;
  font-size: 1.25rem;
}

.ta-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.ta-included-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ta-included-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.ta-included-item i {
  color: #059669;
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ta-included-item h5 {
  font-size: 0.95rem;
  margin: 0 0 4px;
}

.ta-included-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.ta-ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.ta-ai-tool-card {
  background: linear-gradient(145deg, #1e1b4b, #312e81);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ta-ai-tool-card i {
  font-size: 2rem;
  color: #22d3ee;
  margin-bottom: 12px;
}

.ta-ai-tool-card h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.ta-ai-tool-card p {
  color: #cbd5e1;
  font-size: 0.85rem;
  margin: 0;
}

.ta-module-timeline {
  position: relative;
  padding-left: 28px;
  border-left: 3px solid #e0e7ff;
  margin-left: 8px;
}

.ta-module-step {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 4px;
}

.ta-module-step::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid #eef2ff;
}

.ta-module-step h5 {
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.ta-module-step ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-light);
}

.ta-online-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #6ee7b7;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

.ta-compare-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
}

.ta-timing-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid #3b82f6;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 32px;
}

.ta-timing-notice i {
  color: #2563eb;
  font-size: 1.35rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ta-timing-notice p {
  margin: 0;
  color: #1e40af;
  font-weight: 600;
}

.ta-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ta-program-card {
  background: var(--surface);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ta-program-card:hover {
  border-color: #f59e0b;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15);
  transform: translateY(-4px);
}

.ta-program-card-header {
  padding: 24px;
  color: #fff;
}

.ta-program-card-header.java-stack {
  background: linear-gradient(135deg, #ea580c, #f97316);
}

.ta-program-card-header.aws-cert {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.ta-program-card-header.devops {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.ta-program-card-header.python-basic {
  background: linear-gradient(135deg, #306998, #4b8bbe);
}

.ta-program-card-header.interview {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.ta-program-card-header h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 12px 0 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.ta-program-card-header .ta-program-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.ta-program-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ta-program-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.ta-program-price {
  font-size: 2rem;
  font-weight: 800;
  color: #b45309;
  line-height: 1;
}

.ta-program-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.ta-program-card-body ul {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 18px;
  margin: 0 0 16px;
  flex: 1;
}

.ta-program-card-body ul li {
  margin-bottom: 6px;
}

.ta-cert-note {
  display: block;
  background: #fef3c7;
  border: 1px solid #fbbf24;
  color: #92400e;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.ta-program-card .ta-btn-primary {
  margin-top: auto;
}

.ta-btn-static {
  cursor: default;
  pointer-events: none;
  user-select: text;
}

.ta-btn-static:hover {
  transform: none;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
}

.ta-btn-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.ta-btn-purple.ta-btn-static:hover {
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.ta-btn-green {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.ta-btn-blue {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.ta-btn-green.ta-btn-static:hover {
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

span.ta-btn-primary.w-100 {
  display: flex;
  width: 100%;
  justify-content: center;
}

.ta-navbar .navbar-toggler {
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--dark);
}

.ta-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
  outline: none;
}

.ta-modern img:not(.ta-brand-logo) {
  max-width: 100%;
  height: auto;
}

.ta-program-header-inline {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ta-contact-phone {
  font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
  word-break: break-word;
}

.ta-contact-phone a {
  color: var(--dark);
  text-decoration: none;
}

.ta-contact-phone a:hover {
  color: var(--primary);
}

.ta-topbar .ta-tel-link {
  color: #e2e8f0;
  text-decoration: none;
}

.ta-topbar .ta-tel-link:hover {
  color: var(--accent);
}

.ta-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.ta-contact-actions .ta-btn-primary {
  font-size: 1rem;
  padding: 12px 20px;
}

.ta-contact-email {
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 800;
}

.ta-contact-item--plain {
  border: none;
  padding: 0;
}

.ta-contact-item-icon--lg {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}

.ta-contact-item-icon--green {
  background: #dcfce7;
  color: #16a34a;
}

.ta-contact-item-icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.ta-programs-grid--single {
  grid-template-columns: 1fr;
}

.ta-program-header-inline > div {
  min-width: 0;
  flex: 1;
}

.ta-program-header-inline h3 {
  margin: 0;
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.ta-program-header-inline .ta-program-price--lg {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
}

.ta-check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ta-faq .accordion-button {
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.4;
}

.ta-faq .accordion-button:not(.collapsed) {
  background: #eef2ff;
  color: var(--primary-dark);
}

.ta-faq .accordion-body {
  line-height: 1.7;
}

.ta-faq .accordion-body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.ta-faq .accordion-body a:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .ta-navbar .navbar-brand {
    max-width: calc(100% - 58px);
    margin-right: 0;
  }

  .ta-brand-lockup {
    max-width: 100%;
  }

  .ta-brand-tagline {
    font-size: 0.62rem;
    white-space: normal;
    max-width: 200px;
    padding-left: 40px;
  }

  .ta-navbar .navbar-collapse {
    margin-top: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
  }

  .ta-navbar .navbar-nav {
    gap: 4px !important;
    width: 100%;
  }

  .ta-navbar .nav-item {
    width: 100%;
  }

  .ta-navbar .ta-nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 16px !important;
  }

  .ta-navbar .nav-item .ta-btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .ta-hero {
    padding: 70px 0 80px;
  }

  .ta-hero-visual {
    margin-top: 40px;
  }

  .ta-section {
    padding: 64px 0;
  }

  .ta-page-hero {
    padding: 56px 0 48px;
  }

  .ta-cta {
    padding: 40px 24px;
  }

  .ta-course-detail-body {
    padding: 24px 20px;
  }

  .ta-course-detail-header {
    padding: 24px 20px;
  }

  .ta-course-detail-header h2 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    line-height: 1.3;
  }

  .ta-contact-card {
    padding: 32px 24px !important;
  }

  .ta-section .row.g-4 > .col-lg-5 {
    margin-top: 8px;
  }

  .ta-about-visual {
    margin-top: 24px;
  }

  .ta-how-grid {
    grid-template-columns: 1fr;
  }

  .ta-local-seo {
    padding: 28px 22px;
  }

  .ta-local-seo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .ta-topbar {
    font-size: 0.8rem;
    padding: 8px 0;
    text-align: center;
  }

  .ta-topbar .container > .d-flex {
    flex-direction: column;
    align-items: center !important;
    gap: 8px !important;
  }

  .ta-topbar-list {
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
  }

  .ta-topbar-list li {
    word-break: break-word;
    text-align: center;
  }

  .ta-navbar .navbar-brand {
    font-size: 1.25rem;
  }

  .ta-hero {
    padding: 48px 0 56px;
  }

  .ta-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .ta-hero-desc {
    font-size: 1rem;
  }

  .ta-hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 32px;
  }

  .ta-hero-actions .ta-btn-primary,
  .ta-hero-actions .ta-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .ta-hero-stats {
    gap: 20px;
    justify-content: space-between;
  }

  .ta-stat-item,
  .ta-stat-card {
    flex: 1;
    min-width: 90px;
    text-align: center;
  }

  .ta-stat-item strong,
  .ta-stat-card strong {
    font-size: 1.5rem;
  }

  .ta-how-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ta-how-strip {
    padding: 36px 0;
  }

  .ta-call-banner {
    padding: 28px 24px;
  }

  .ta-call-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .ta-price-banner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    padding: 10px 18px;
    max-width: 100%;
  }

  .ta-price-banner .amount {
    font-size: 1.5rem;
  }

  .ta-price-hero-card {
    padding: 24px 20px;
  }

  .ta-section {
    padding: 48px 0;
  }

  .ta-section-header {
    margin-bottom: 40px;
  }

  .ta-programs-grid {
    grid-template-columns: 1fr;
  }

  .ta-program-header-inline {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }

  .ta-program-header-inline h3 {
    font-size: 1.05rem;
  }

  .ta-module-timeline {
    padding-left: 20px;
    margin-left: 4px;
  }

  .ta-module-step::before {
    left: -28px;
  }

  .ta-timing-notice {
    flex-direction: column;
    text-align: left;
  }

  .ta-cta-phones {
    flex-direction: column;
    align-items: stretch;
  }

  .ta-phone-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 12px 20px;
  }

  .ta-cta .ta-btn-white {
    width: 100%;
    justify-content: center;
  }

  .ta-footer {
    padding-top: 48px;
    text-align: center;
  }

  .ta-footer-course-item {
    justify-content: center;
  }

  .ta-page-hero {
    padding: 44px 0 40px;
  }

  .ta-page-hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    line-height: 1.25;
    padding: 0 4px;
  }

  .ta-page-hero p {
    font-size: 0.95rem;
    padding: 0 8px;
  }

  .ta-features-grid,
  .ta-included-grid,
  .ta-ai-tools-grid,
  .ta-course-grid {
    grid-template-columns: 1fr;
  }

  .ta-contact-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .ta-contact-actions .ta-btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 12px 16px;
  }

  .ta-course-detail-header h2 {
    font-size: clamp(1.1rem, 4.5vw, 1.5rem);
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .ta-course-detail-header p {
    font-size: 0.9rem;
    overflow-wrap: anywhere;
  }

  .accordion-button {
    font-size: 0.9rem;
    padding: 14px 16px;
    white-space: normal;
    text-align: left;
    line-height: 1.4;
  }

  .ta-program-header-inline {
    align-items: flex-start;
  }

  .ta-about-visual {
    margin-top: 8px;
  }

  .ta-footer .row > [class*='col-'] {
    text-align: center;
  }

  .ta-footer-bottom p {
    overflow-wrap: anywhere;
    padding: 0 8px;
  }

  .ta-cta {
    padding: 32px 20px;
  }

  .ta-cta h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.75rem);
    line-height: 1.3;
  }

  .ta-section-header h2 {
    font-size: clamp(1.35rem, 5vw, 2rem);
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ta-hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .ta-stat-item,
  .ta-stat-card {
    width: 100%;
  }

  .ta-how-grid {
    grid-template-columns: 1fr;
  }

  .ta-call-banner {
    flex-direction: column;
    padding: 28px 22px;
    text-align: center;
  }

  .ta-call-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .ta-call-banner-actions .ta-btn-primary {
    width: 100%;
    justify-content: center;
  }

  .ta-hero-trust {
    justify-content: center;
  }

  body.ta-modern:has(.ta-sticky-call) {
    padding-bottom: 72px;
  }

  .ta-sticky-call {
    display: flex;
  }

  .ta-contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ta-contact-item .text-start {
    text-align: center !important;
  }

  .ta-contact-actions .ta-btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 1rem !important;
    padding: 12px 20px !important;
  }

  .ta-price-sticky-note {
    padding: 16px 18px;
  }

  .ta-price-sticky-note strong {
    font-size: 1.1rem;
  }

  .ta-course-card-header,
  .ta-program-card-header {
    padding: 20px;
  }

  .ta-course-card-body,
  .ta-program-card-body {
    padding: 20px;
  }

  .ta-breadcrumb {
    flex-wrap: wrap;
  }

  .ta-hero-image-wrap {
    margin-bottom: 20px;
  }

  .ta-price-banner {
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 12px;
  }

  .ta-price-banner .amount {
    font-size: 1.25rem;
  }

  .ta-badge {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .ta-hero-desc {
    font-size: 0.95rem;
  }

  .ta-price-hero-card {
    padding: 20px 16px;
  }

  .ta-contact-card {
    padding: 28px 18px !important;
  }

  .ta-contact-item {
    gap: 12px;
  }

  .ta-module-timeline h4 {
    font-size: 1rem;
  }

  .ta-timing-notice {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .ta-learning-banner h3 {
    font-size: 1.15rem;
  }

  .ta-topbar-list li {
    font-size: 0.75rem;
  }
}

/* Brand logo — poster wordmark + visible tagline */
.ta-brand {
  display: inline-flex !important;
  align-items: center;
  padding: 0;
  overflow: visible;
  text-decoration: none !important;
}

.ta-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.05;
}

.ta-navbar .ta-brand-logo {
  width: auto;
  height: 36px;
  max-width: min(200px, 58vw);
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  display: block;
}

.ta-brand-tagline {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.1px;
  line-height: 1.2;
  padding-left: 48px;
  margin-top: 1px;
}

.ta-brand-tagline-accent {
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 0;
}

/* Hero image */
.ta-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ta-hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.ta-hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ta-hero-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Program card images */
.ta-program-card--visual {
  overflow: hidden;
}

.ta-program-card-img {
  position: relative;
  overflow: hidden;
  height: 180px;
  background: #e2e8f0;
}

.ta-program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ta-program-card--visual:hover .ta-program-card-img img {
  transform: scale(1.06);
}

.ta-program-card-img .ta-card-price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 50px;
  border: 2px solid #f59e0b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* About / content images */
.ta-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
}

.ta-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ta-img-frame--tall img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ta-about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Team / trainers */
.ta-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.ta-team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.ta-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ta-team-card-img {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}

.ta-team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ta-team-card-body {
  padding: 20px 20px 24px;
}

.ta-team-card-body h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.ta-team-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.ta-team-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 10px;
}

/* Page hero with image */
.ta-page-hero--visual {
  position: relative;
  overflow: hidden;
}

.ta-page-hero--visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(49, 46, 129, 0.88) 100%);
  z-index: 1;
}

.ta-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ta-page-hero--visual .container {
  position: relative;
  z-index: 2;
}

/* Learning banner strip */
.ta-learning-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid #e2e8f0;
  margin-bottom: 48px;
  overflow: hidden;
}

.ta-learning-banner img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Contact visual */
.ta-contact-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.ta-contact-visual img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .ta-learning-banner {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .ta-program-card-img {
    height: 160px;
  }

  .ta-team-card-img {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .ta-navbar .navbar-brand {
    max-width: calc(100% - 54px);
  }

  .ta-navbar .ta-brand-logo {
    height: 32px;
    max-width: min(175px, 55vw);
  }

  .ta-brand-tagline {
    font-size: 0.58rem;
    white-space: normal;
    max-width: 180px;
    line-height: 1.25;
    padding-left: 36px;
  }

  .ta-learning-banner {
    padding: 24px;
    gap: 24px;
  }

  .ta-program-card-img {
    height: 140px;
  }

  .ta-contact-visual img {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 160px;
  }
}
