/* ============================================
   BadgeBytes Corporate Website — Design System
   Version: 1.0
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colour Palette */
  --color-primary: #0070F2;
  --color-primary-dark: #003366;
  --color-primary-light: #0FAAFF;
  --color-accent: #00C8FF;
  --color-white: #FFFFFF;
  --color-bg-light: #F5F8FC;
  --color-text-dark: #1F2937;
  --color-text-muted: #6B7280;
  --color-text-light: #9CA3AF;
  --color-border: #E5E7EB;
  --color-border-light: #F0F0F0;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #003366 0%, #0070F2 50%, #0FAAFF 100%);
  --gradient-hero: linear-gradient(135deg, #001d3d 0%, #003366 40%, #0070F2 100%);
  --gradient-card: linear-gradient(180deg, #0070F2 0%, #003366 100%);
  --gradient-subtle: linear-gradient(135deg, #F5F8FC 0%, #E8F0FE 100%);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 2px 12px rgba(0, 112, 242, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(0, 112, 242, 0.15);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Container */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;

  /* Header */
  --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Skip to Content (Accessibility) ---------- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition-base);
}

.skip-to-content:focus {
  top: var(--space-4);
  color: var(--color-white);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-dark);
}

h1 { font-size: var(--text-5xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-4xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); font-weight: 600; }

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

.text-primary { color: var(--color-primary); }
.text-dark { color: var(--color-text-dark); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
}

.section-alt {
  background-color: var(--color-bg-light);
}

.section-dark {
  background: var(--gradient-hero);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: var(--color-white);
}

.section-dark p {
  opacity: 0.9;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-header .section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.5;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 112, 242, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 112, 242, 0.35);
  color: var(--color-white);
}

.btn-lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

.btn-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ---------- Loading Screen ---------- */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  width: 120px;
  margin-bottom: var(--space-6);
  animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes loadingPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

/* ---------- Header & Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-slow);
  background: transparent;
}

.header.scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 1001;
}

.header-logo img,
.header-logo svg {
  height: 40px;
  width: auto;
}

.header-logo .logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-base);
}

.header.scrolled .header-logo .logo-text {
  color: var(--color-text-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.header.scrolled .nav-link {
  color: var(--color-text-dark);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--color-primary);
  background: var(--color-bg-light);
}

.nav-link .nav-arrow {
  font-size: 10px;
  transition: transform var(--transition-base);
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border-light);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-dark);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-dropdown a:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

.nav-cta {
  margin-left: var(--space-4);
}

.nav-cta .btn {
  padding: var(--space-2) var(--space-6);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: var(--space-2);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header.scrolled .hamburger span {
  background: var(--color-text-dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,200,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(15,170,255,0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: var(--space-16) 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}

.hero h1 {
  color: var(--color-white);
  font-size: var(--text-5xl);
  line-height: 1.15;
  margin-bottom: var(--space-6);
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-white);
}

.hero-stat .stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

.solution-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Inner Page Hero */
.page-hero {
  background: var(--gradient-hero);
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
  color: var(--color-white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--color-white);
}

.breadcrumb .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .breadcrumb-current {
  color: var(--color-accent);
  font-weight: 500;
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-slow);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  color: var(--color-primary);
  font-size: var(--text-2xl);
  transition: all var(--transition-base);
}

.card:hover .card-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.card p {
  font-size: var(--text-sm);
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-primary);
  margin-top: var(--space-4);
  transition: gap var(--transition-base);
}

.card-link:hover {
  gap: var(--space-3);
}

/* Service Card Extended */
.service-card-extended {
  padding: var(--space-10);
}

.service-card-extended .service-features {
  margin-top: var(--space-6);
}

.service-card-extended .service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.service-card-extended .service-features li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.tech-tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--color-bg-light);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

/* ---------- About / Feature Blocks ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-content h2 {
  margin-bottom: var(--space-4);
}

.about-content .section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.about-image-placeholder svg {
  width: 200px;
  opacity: 0.3;
}

/* Value Props */
.value-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
}

.value-card .card-icon {
  margin: 0 auto var(--space-5);
}

/* Mission Vision Values */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.mvv-card {
  text-align: center;
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.mvv-card .mvv-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border-radius: 50%;
  margin: 0 auto var(--space-5);
  font-size: var(--text-3xl);
  color: var(--color-primary);
}

.mvv-card h3 {
  margin-bottom: var(--space-3);
}

/* ---------- Process / Timeline ---------- */
.process-timeline {
  position: relative;
  padding: var(--space-8) 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-border);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-12);
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step-content {
  width: 45%;
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
}

.process-step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  border-radius: 50%;
  z-index: 2;
  border: 4px solid var(--color-white);
}

.process-step:nth-child(even) .process-step-content {
  text-align: right;
}

/* ---------- Counters / Stats ---------- */
.stats-section {
  background: var(--gradient-hero);
  padding: var(--space-20) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat-item {
  padding: var(--space-6);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item .stat-suffix {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-accent);
}

.stat-item .stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: var(--space-10);
  text-align: center;
}

.testimonial-card .testimonial-quote {
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.testimonial-card .testimonial-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-primary);
  opacity: 0.15;
  position: absolute;
  top: -30px;
  left: -10px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
}

.testimonial-info h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.testimonial-info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonial-dot.active {
  background: var(--color-primary);
  width: 32px;
  border-radius: var(--radius-full);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transition: all var(--transition-base);
}



.industry-card-body {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* --- Industry Image --- */
.industry-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(0, 112, 242, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: left;
  cursor: pointer;
  background: transparent;
  transition: color var(--transition-base);
}

.faq-item.active .faq-question {
  color: var(--color-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-light);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
}

/* ---------- Blog Cards ---------- */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-slow);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: var(--gradient-subtle);
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
}

.blog-card-body {
  padding: var(--space-6);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.blog-card-body h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: var(--color-text-dark);
  transition: color var(--transition-base);
}

.blog-card-body h3 a:hover {
  color: var(--color-primary);
}

.blog-card-body p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

/* Blog Page Specific */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-10);
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  margin-bottom: var(--space-6);
}

.sidebar-widget h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-bg-light);
}

.search-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  transition: border-color var(--transition-base);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 112, 242, 0.1);
}

.category-list li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.category-list a:hover {
  color: var(--color-primary);
}

.category-count {
  background: var(--color-bg-light);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag-cloud a {
  padding: var(--space-1) var(--space-3);
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.tag-cloud a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  background: var(--color-white);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 112, 242, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
  border-color: var(--color-error);
}

.form-group.error .form-error {
  display: block;
}

.form-success {
  display: none;
  padding: var(--space-6);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-success);
}

.form-success.show {
  display: block;
}

/* File Upload */
.file-upload {
  position: relative;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.file-upload:hover {
  border-color: var(--color-primary);
  background: rgba(0, 112, 242, 0.02);
}

.file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.file-upload p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}

.file-upload .file-types {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-info-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  transition: background var(--transition-base);
}

.contact-info-card:hover {
  background: var(--color-bg-light);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: var(--text-xl);
}

.contact-info-card h4 {
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}

.contact-info-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Partners ---------- */
.partners-section {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-border-light);
  background: var(--color-surface);
}

.partners-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  opacity: 0.6;
  transition: opacity var(--transition-base);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-marquee:hover {
  opacity: 1;
}

.marquee-track {
  display: flex;
  animation: scrollMarquee 20s linear infinite;
}

.marquee-group {
  display: flex;
  gap: var(--space-10);
  padding-right: var(--space-10);
  align-items: center;
  flex-shrink: 0;
}

.partners-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  filter: grayscale(100%) opacity(0.7);
  cursor: pointer;
  padding: var(--space-2) var(--space-4);
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

.partner-logo-img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.partner-logo-aarini,
.partner-logo-img[src*="l1.webp"] {
  max-height: 58px;
  transform: scale(1.35);
}

/* ---------- Industries ---------- */
.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.industry-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

/* ---------- Training ---------- */
.training-program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.training-program:nth-child(even) {
  direction: rtl;
}

.training-program:nth-child(even) > * {
  direction: ltr;
}

.training-program:last-child {
  border-bottom: none;
}

.training-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  background: rgba(0, 112, 242, 0.1);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

/* ---------- Careers ---------- */
.job-card {
  padding: var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.job-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.job-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.job-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
}

/* ---------- Newsletter ---------- */
.newsletter-section {
  background: var(--gradient-hero);
  padding: var(--space-16) 0;
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  max-width: 500px;
  margin: var(--space-6) auto 0;
}

.newsletter-form .form-input {
  flex: 1;
  border: none;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
}

.newsletter-form .btn {
  white-space: nowrap;
  border-radius: var(--radius-lg);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-hero);
  padding: var(--space-20) 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

/* ---------- Footer ---------- */
.footer {
  background: #0A1628;
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  padding-right: var(--space-8);
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-brand .logo-text img,
.footer-brand .logo-text svg {
  height: 36px;
  width: auto;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
  font-size: var(--text-sm);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul li {
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-column ul a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-base);
}

.footer-column ul a:hover {
  color: var(--color-white);
  padding-left: var(--space-2);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-sm);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ---------- Utilities ---------- */
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.pt-0 { padding-top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Solutions page */
.solution-detail {
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.solution-detail:last-child {
  border-bottom: none;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.solution-grid:nth-child(even) {
  direction: rtl;
}

.solution-grid:nth-child(even) > * {
  direction: ltr;
}

.solution-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* Tab navigation for services */
.tab-nav {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-10);
}

.tab-btn {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-base);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Benefits list */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.benefit-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 112, 242, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: var(--text-lg);
}

.benefit-item h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.benefit-item p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Training calendar */
.calendar-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.calendar-table th {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
}

.calendar-table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.calendar-table tr:last-child td {
  border-bottom: none;
}

.calendar-table tr:hover td {
  background: var(--color-bg-light);
}

.status-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.status-open {
  background: #f0fdf4;
  color: var(--color-success);
}

.status-filling {
  background: #fffbeb;
  color: var(--color-warning);
}

.status-full {
  background: #fef2f2;
  color: var(--color-error);
}

/* Logo inline SVG styles */
.logo-svg .logo-ACCENTURE {
  fill: #E63946;
}

.logo-svg .logo-badge {
  fill: #E63946;
}

/* ============================================
   SAP BTP Poster Training Section Styles
   ============================================ */

/* Poster Tagline Banner */
.poster-highlight-box {
  background: var(--gradient-subtle);
  border: 1px solid rgba(0, 112, 242, 0.2);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.poster-highlight-box .rocket-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  flex-shrink: 0;
}

.poster-highlight-box p {
  margin-bottom: 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-primary-dark);
}

.poster-highlight-box strong {
  color: #D92D20;
}

/* Why Learn With BadgeBytes Grid */
.why-learn-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.why-learn-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-learn-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary-light);
}

.why-learn-card .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  box-shadow: 0 4px 10px rgba(0, 112, 242, 0.25);
}

.why-learn-card:nth-child(1) .icon-circle { background: linear-gradient(135deg, #0052CC, #0070F2); }
.why-learn-card:nth-child(2) .icon-circle { background: linear-gradient(135deg, #00875A, #10B981); }
.why-learn-card:nth-child(3) .icon-circle { background: linear-gradient(135deg, #DE350B, #F97316); }
.why-learn-card:nth-child(4) .icon-circle { background: linear-gradient(135deg, #0052CC, #0FAAFF); }
.why-learn-card:nth-child(5) .icon-circle { background: linear-gradient(135deg, #36B37E, #059669); }
.why-learn-card:nth-child(6) .icon-circle { background: linear-gradient(135deg, #0065FF, #3B82F6); }

.why-learn-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.why-learn-card:nth-child(1) h4 { color: #0052CC; }
.why-learn-card:nth-child(2) h4 { color: #00875A; }
.why-learn-card:nth-child(3) h4 { color: #DE350B; }
.why-learn-card:nth-child(4) h4 { color: #0052CC; }
.why-learn-card:nth-child(5) h4 { color: #00875A; }
.why-learn-card:nth-child(6) h4 { color: #0065FF; }

.why-learn-card p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* BTP Training Modules Layout */
.btp-modules-section {
  background: var(--color-bg-light);
  padding: var(--space-16) 0;
}

.btp-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: start;
}

.btp-modules-header-badge {
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.05em;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  text-align: center;
  text-transform: uppercase;
}

.btp-modules-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}

.btp-module-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  transition: all var(--transition-base);
}

.btp-module-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.btp-module-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003366, #0070F2);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btp-module-item:nth-child(2) .btp-module-number {
  background: linear-gradient(135deg, #006644, #10B981);
}

.btp-module-item:nth-child(3) .btp-module-number {
  background: linear-gradient(135deg, #CC4400, #F97316);
}

.btp-module-item:nth-child(4) .btp-module-number {
  background: linear-gradient(135deg, #4A154B, #8B5CF6);
}

.btp-module-details {
  flex-grow: 1;
}

.btp-module-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text-dark);
  margin-bottom: var(--space-1);
  line-height: 1.3;
}

.btp-prerequisite-badge {
  display: inline-block;
  background: #E0F2FE;
  color: #0369A1;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-top: 2px;
}

.btp-module-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--color-primary);
  background: var(--color-bg-light);
  flex-shrink: 0;
}

.btp-star-note {
  background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.btp-star-note .star-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  flex-shrink: 0;
}

.btp-star-note p {
  font-size: var(--text-xs);
  color: var(--color-text-dark);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Skills Today Banner */
.skills-banner {
  background: linear-gradient(135deg, #001d3d 0%, #003366 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-6);
  position: relative;
  overflow: hidden;
}

.skills-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(15, 170, 255, 0.2) 0%, transparent 60%);
}

.skills-banner h3 {
  color: var(--color-accent);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
}

.skills-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* BTP Course Info Card */
.btp-course-info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}

.btp-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border-light);
}

.btp-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.btp-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--color-white);
  flex-shrink: 0;
}

.btp-info-icon.duration { background: linear-gradient(135deg, #0052CC, #0070F2); }
.btp-info-icon.fee { background: linear-gradient(135deg, #00875A, #10B981); }
.btp-info-icon.mode { background: linear-gradient(135deg, #6B21A8, #8B5CF6); }
.btp-info-icon.info { background: linear-gradient(135deg, #C2410C, #F97316); }

.btp-info-content h5 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.btp-info-content .info-highlight {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-primary-dark);
}

.btp-fee-note-box {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  margin-top: var(--space-2);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.btp-fee-note-box i {
  color: #D97706;
  font-size: var(--text-xl);
  flex-shrink: 0;
  margin-top: 2px;
}

.btp-fee-note-box p {
  font-size: var(--text-xs);
  color: #78350F;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Bottom Philosophy Banner */
.btp-philosophy-card {
  background: linear-gradient(135deg, #001d3d 0%, #003366 50%, #0052CC 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: var(--color-white);
  box-shadow: var(--shadow-xl);
  margin-top: var(--space-12);
  overflow: hidden;
  position: relative;
}

.btp-philosophy-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-8);
  align-items: center;
}

.btp-philosophy-left {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.btp-philosophy-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  color: var(--color-accent);
  flex-shrink: 0;
}

.btp-philosophy-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: 0;
}

.btp-philosophy-right {
  text-align: right;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: var(--space-6);
}

.btp-philosophy-right h4 {
  color: var(--color-accent);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.btp-philosophy-right h3 {
  color: var(--color-white);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1.3;
}

.btp-footer-strip {
  background: #D92D20;
  color: var(--color-white);
  text-align: center;
  padding: var(--space-3) var(--space-4);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  margin: var(--space-6) -var(--space-8) -var(--space-8) -var(--space-8);
}

