* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-accent: #f3f4f6;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  padding-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.25rem, 3.5vw, 2rem);
}

h3 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: #374151;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header {
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
  margin-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 32px;
  flex-wrap: wrap;
  gap: 0;
}

.nav-brand {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 100%;
  height: 60px;
  border-radius: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 700;
  color: #2196f3;
  font-size: 1.5rem;
  margin-left: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 32px 0 0;
  list-style: none;
  background: 0 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  min-width: 180px;
  z-index: 1001;
  padding: 0.5em 0;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.7em 1.2em;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
  color: #2196f3;
}

.nav-link {
  color: #222;
  font-weight: 500;
  font-size: 1.08rem;
  background: 0 0;
  border: none;
  padding: 0 8px;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-link:hover {
  color: #2196f3;
}

.dropdown-menu a,
.nav-link {
  text-decoration: none !important;
  border: none;
}

.btn-kontak {
  background: #dc2626;
  color: #fff;
  border-radius: 24px;
  padding: 0.6em 1.6em;
  font-weight: 600;
  font-size: 1.08rem;
  margin-left: 16px;
  box-shadow: 0 2px 8px 0 rgba(255, 115, 31, 0.08);
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-kontak:hover {
  background: #b92725;
  box-shadow: 0 4px 16px 0 rgba(255, 115, 31, 0.16);
}

.nav-item-button {
  display: none;
}

.btn-kontak-desktop {
  display: inline-block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #222;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.programs-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.program-cards-group {
  display: flex;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
  gap: 24px;
  width: 90vw;
  max-width: 1300px;
  justify-content: space-between;
}

.program-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
  padding: 20px 16px;
  min-width: 200px;
  max-width: 250px;
  flex: 1 1 0;
  border: 1.5px solid #f0f0f0;
  transition: box-shadow 0.2s, border 0.2s;
  text-align: center;
}

.program-card:hover {
  box-shadow: 0 4px 16px 0 rgba(33, 150, 243, 0.1);
  border: 1.5px solid #2196f3;
}

.card-logos {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-logo-img {
  width: 100%;
  max-width: 120px;
  height: 60px;
  object-fit: contain;
}

.card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title {
  font-weight: 600;
  color: #222;
  font-size: 1rem;
  line-height: 1.3;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  max-width: unset;
  display: block;
  margin-bottom: 8px;
}

.hero {
  position: relative;
  background: #5b227e;
  min-height: 380px;
  overflow: hidden;
}

.hero-cube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  object-fit: cover;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 280px;
  padding-top: 24px;
}

.hero-content {
  color: #fff;
  text-align: left;
}

.hero-title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}

.hero-description {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  font-size: 1rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(33, 99, 235, 0.08);
  opacity: 1;
}

.hero-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-width: 260px;
  z-index: 3;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: 0 0;
}

.hero-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

.hero-shape1 {
  top: 0;
  left: 0;
  width: 420px;
  height: auto;
  transform: rotate(-10deg);
}

.about {
  padding: 4rem 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.7;
}

.learning {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
}

.learning-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.learning-content h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.learning-content p {
  font-size: 1.125rem;
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.partnership {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.partnership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  background-size: 150px 150px, 200px 200px;
  pointer-events: none;
}

.partnership-title {
  color: #601ba1;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.2rem;
}

.partnership-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.partnership-logo {
  flex: 0 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partnership-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.stat-label {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.programs {
  padding: 4rem 0;
}

.programs h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

/* .program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.program-item {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.program-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.program-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.program-icon i {
  font-size: 2rem;
  color: #fff;
}

.program-item h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.program-item p {
  color: var(--text-secondary);
  line-height: 1.6;
} */

.features {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
}

.features h2,
.features h3 {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.features h3 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature-item p {
  margin: 0;
  line-height: 1.6;
}

.branches {
  padding: 4rem 0;
}

.branches h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.branch-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary-color);
}

.branch-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.branch-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: #fff;
  line-height: 1.6;
}

.testimonial-author h4,
.testimonial-author p {
  text-align: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--primary-color);
  font-weight: 500;
  margin: 0;
}

.blog {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
}

.blog h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.footer {
  background-color: #5b227e;
  color: #fff;
  text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.781);
  padding: 3rem 0 1rem;
}

.footer-logo {
  text-align: left;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section li,
.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: #fff;
}

.footer-section p span {
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: #fff;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.close:hover {
  color: var(--text-primary);
}

.contact-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

@media (max-width: 1200px) {
  .program-cards-group {
    flex-wrap: wrap;
    gap: 16px;
  }

  .program-card {
    min-width: 220px;
    max-width: 100%;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    min-height: 340px;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 32px;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-cube {
    width: 220px;
  }
}

@media (max-width: 1024px) {
  .header-flex {
    padding: 0 24px;
  }

  .nav-menu {
    gap: 24px;
    margin: 0 16px 0 0;
  }

  .btn-kontak {
    margin-left: 12px;
    padding: 0.5em 1.2em;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 70px;
  }

  .hamburger {
    display: flex;
    order: 3;
  }

  .btn-kontak-desktop {
    display: none;
  }

  .nav-item-button {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 24px 24px;
    padding: 2rem 0 2.5rem 0;
    gap: 0;
    margin: 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .nav-item-button {
    margin: 1.5rem 0 0.5rem 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0.5rem 1rem 0;
    padding: 0.5rem 0;
  }

  .nav-item.dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-item-button .btn-kontak {
    margin: 0;
    display: inline-block;
    width: auto;
  }

  .header-flex {
    padding: 0 20px;
    min-height: 70px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 65px;
  }

  .header-flex {
    padding: 0 16px;
    min-height: 65px;
  }

  .logo-img {
    height: 40px;
  }

  .nav-menu {
    top: 65px;
    padding: 1.5rem 0;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }

  .btn-kontak {
    font-size: 0.9rem;
    padding: 0.5em 1.2em;
  }

  .programs-wrapper {
    margin-top: -40px;
  }

  .program-cards-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 8px;
  }

  .program-card {
    min-width: 0;
    padding: 16px 12px;
    max-width: none;
  }

  .hero .container {
    flex-direction: column;
    padding-top: 24px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-shape1 {
    width: 120px;
  }

  .hero-cube {
    width: 120px;
  }

  .footer-logo-img {
    height: 8100px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  .header-flex {
    padding: 0 12px;
    min-height: 60px;
  }

  .logo-img {
    height: 36px;
  }

  .nav-menu {
    top: 60px;
    padding: 1rem 0;
    border-radius: 0 0 16px 16px;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .btn-kontak {
    font-size: 0.95rem;
    padding: 0.5em 1.2em;
  }

  .hamburger .bar {
    width: 22px;
    height: 2.5px;
  }

  .programs-wrapper {
    margin-top: -24px;
  }

  .program-cards-group {
    padding: 8px 2px;
  }

  .card-logo-img {
    max-width: 80px;
  }

  .footer-logo-img {
    height: 80px;
    margin-bottom: -40px;
    margin-top: -20px;
  }

  .header {
    border-radius: 0 0 12px 12px;
  }

  .hero {
    border-radius: 0 0 16px 16px;
  }

  .hero-shape1 {
    display: none;
  }

  .hero-cube {
    display: none;
  }
}

@media (max-width: 360px) {
  .header-flex {
    padding: 0 8px;
  }

  .logo-img {
    height: 32px;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .btn-kontak {
    font-size: 0.9rem;
    padding: 0.45em 1em;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading {
  opacity: 0.7;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.about-learning {
  background: #f9fafb;
  padding: 2rem 0 1.5rem 0;
  position: relative;
  overflow: visible;
}

.about-learning-grid {
  display: flex;
  gap: .1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.about-learning-left {
  flex: 1 1 250px;
  display: flex;
  justify-content: center;
  text-align: justify;
  align-items: flex-start;
}

.about-learning-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-right: 20px;
}

.about-learning-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
}

.about-learning-right {
  flex: 1 1 200px;
  min-width: 320px;
}

.about-learning-right h2 {
  color: #601ba1;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  text-align: left;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.about-learning-right p {
  color: #374151;
  text-align: justify;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-learning-stats-row {
  margin: 1.5rem auto 0 auto;
  display: flex;
  justify-content: center;
}

.about-learning-stats {
  display: flex;
  gap: 2.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  padding: 1.5rem 2.5rem;
}

.about-learning-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.about-learning-stat-icon {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.about-learning-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.about-learning-stat-label {
  color: #6b7280;
  font-size: 1rem;
  margin-top: 0.1rem;
}

.about-learning-programs-row {
  margin: 2.5rem auto 0 auto;
  text-align: center;
}

.about-learning-programs-row h3 {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-learning-programs {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-learning-program-card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.about-learning-program-card:hover {
  box-shadow: 0 6px 24px 0 rgba(37, 99, 235, 0.1);
  transform: translateY(-4px) scale(1.03);
}

.about-learning-program-icon {
  font-size: 2.1rem;
  margin-bottom: 0.7rem;
  color: #2563eb;
}

.about-learning-program-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1f2937;
  margin-bottom: 0.3rem;
}

.about-learning-program-desc {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-learning {
    padding: 1rem 0;
  }

  .about-learning-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .about-learning-left,
  .about-learning-right {
    width: 100%;
    min-width: 0;
  }

  .about-learning-right h2 {
    margin-bottom: 1rem;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .about-learning {
    padding: 1rem 0;
  }

  .about-learning-grid {
    gap: 1rem;
  }

  .about-learning-right h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .about-learning-right p {
    font-size: 1rem;
    text-align: justify;
  }

  .about-learning-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    margin-top: 1rem;
  }

  .about-learning-programs {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .about-learning-program-card {
    padding: 1.2rem;
  }
}

.about-learning-v2 {
  background: #fcfdff;
  position: relative;
  padding: 3.5rem 0 2.5rem 0;
  overflow: visible;
  min-height: 420px;
}

.about-learning-v2-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.about-learning-v2-left {
  flex: 1 1 250px;
  min-width: 320px;
  z-index: 2;
}

.about-learning-v2-left h2 {
  color: #601ba1;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.about-learning-v2-left p {
  color: #374151;
  font-size: 1rem;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-learning-v2-stats {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.about-learning-v2-stat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.about-learning-v2-stat-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-right: 0.2rem;
}

.about-learning-v2-stat-value {
  color: #601ba1;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.about-learning-v2-stat-label {
  color: #222;
  font-size: clamp(0.9rem, 1.5vw, 1.02rem);
  font-weight: 500;
}

.about-learning-v2-right {
  flex: 1 1 250px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-learning-v2-image {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: 0 0;
  box-shadow: none;
}

.about-learning-cube {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.about-learning-cube-1 {
  top: 18px;
  left: 60%;
  width: 90px;
  height: 90px;
  background: url(https://bintangbangsa-test.vercel.app/images/hero-shape1.webp) no-repeat center/contain;
}

.about-learning-cube-2 {
  bottom: 0;
  left: 2%;
  width: 110px;
  height: 110px;
  background: url(https://bintangbangsa-test.vercel.app/images/hero-shape2.webp) no-repeat center/contain;
}

@media (max-width: 900px) {
  .about-learning-v2 {
    padding: 2.5rem 0 2rem 0;
  }

  .about-learning-v2-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .about-learning-v2-left,
  .about-learning-v2-right {
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: justify;
  }

  .about-learning-v2-stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .about-learning-v2-stat {
    min-width: 200px;
  }

  .about-learning-cube-1 {
    left: 70%;
    width: 60px;
    height: 60px;
  }

  .about-learning-cube-2 {
    left: 0;
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 600px) {
  .about-learning-v2 {
    padding: 2rem 0 1.5rem 0;
  }

  .about-learning-v2-left h2 {
    margin-bottom: 1rem;
    text-align: center;
  }

  .about-learning-v2-left p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
  }

  .about-learning-v2-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .about-learning-v2-stat {
    min-width: 0;
    width: 100%;
  }

  .about-learning-v2-stat-icon {
    width: 36px;
    height: 36px;
  }

  .about-learning-v2-image {
    max-width: 220px;
  }

  .about-learning-cube-1,
  .about-learning-cube-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-learning-v2 {
    padding: 1.5rem 0 1rem 0;
  }

  .about-learning-v2-left h2 {
    margin-bottom: 0.8rem;
  }

  .about-learning-v2-stats {
    gap: 1rem;
  }

  .about-learning-v2-stat-icon {
    width: 32px;
    height: 32px;
  }

  .about-learning-v2-image {
    max-width: 180px;
  }
}

.about-learning-decor-1 {
  position: absolute;
  top: 30px;
  left: 0;
  width: 180px;
  height: 320px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .about-learning-decor-1 {
    width: 90px;
    height: 160px;
    top: 10px;
  }
}

@media (max-width: 600px) {
  .about-learning-decor-1 {
    display: none;
  }
}

.program-cards-4 {
  background: #f9fafb;
  padding: 2.5rem 0 2.5rem 0;
  position: relative;
  overflow: visible;
}

.program-cards-4-title {
  color: #601ba1;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.2rem;
}

.program-cards-4-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.program-card-4 {
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  padding: 1.7rem 1.3rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  z-index: 2;
}

.program-card-4:hover {
  box-shadow: 0 6px 24px 0 rgba(37, 99, 235, 0.1);
  transform: translateY(-4px) scale(1.03);
}

.program-card-4-icon {
  font-size: 2.1rem;
  margin-bottom: 0.7rem;
  color: #601ba1;
  z-index: 2;
}

.program-card-4-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: #601ba1;
  margin-bottom: 0.3rem;
  z-index: 2;
}

.program-card-4-desc {
  color: #222;
  font-size: 1.01rem;
  line-height: 1.5;
  z-index: 2;
}

.program-card-4-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 50% auto;
}

.program-card-4-bg-online {
  background-image: url(https://bintangbangsa-test.vercel.app/images/online-class.webp);
}

.program-card-4-bg-educamp {
  background-image: url(https://bintangbangsa-test.vercel.app/images/educamp.webp);
}

@media (max-width: 1100px) {
  .program-cards-4-row {
    gap: 1.2rem;
  }

  .program-card-4 {
    min-width: 220px;
    max-width: 100%;
    padding: 1.2rem 0.8rem 1rem 0.8rem;
  }
}

@media (max-width: 700px) {
  .program-cards-4-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }

  .program-card-4 {
    width: 100%;
    min-width: 0;
    max-width: 400px;
  }
}

.features-new {
  background: #8e51b3;
  position: relative;
  padding: 1rem 0 1rem 0;
  overflow: visible;
  color: #fff;
}

.features-new-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.features-new-left {
  flex: 1 1 500px;
  min-width: 320px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-new-main-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  width: 100%;
  height: 300px;
}

.features-new-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.features-new-right {
  flex: 1 1 400px;
  min-width: 300px;
  z-index: 2;
}

.features-new-right h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.features-new-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-new-list li {
  color: #ddaae45b;
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.features-new-list li:before {
  content: "✓";
  color: #ffd966;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

.features-new-gallery {
  margin-top: 0;
}

.features-new-gallery-row {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}

.features-new-gallery-item {
  flex: 1;
  width: calc(20% - 0.48rem);
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.features-new-gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
}

.features-new-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.features-cube {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
}

.features-cube-1 {
  top: 20px;
  right: 10%;
  width: 80px;
  height: 80px;
  background: url(https://bintangbangsa-test.vercel.app/images/hero-shape1.webp) no-repeat center/contain;
}

.features-cube-2 {
  bottom: 20px;
  left: 5%;
  width: 60px;
  height: 60px;
  background: url(https://bintangbangsa-test.vercel.app/images/hero-shape2.webp) no-repeat center/contain;
}

@media (max-width: 1024px) {
  .features-new-grid {
    gap: 1.5rem;
  }

  .features-new-main-image {
    height: 280px;
  }

  .features-new-gallery-row {
    gap: 0.5rem;
  }

  .features-new-gallery-item {
    height: 60px;
  }
}

@media (max-width: 900px) {
  .features-new-grid {
    gap: 1.5rem;
  }

  .features-new-main-image {
    height: 280px;
  }

  .features-new-gallery-row {
    gap: 0.5rem;
  }

  .features-new-gallery-item {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .features-new-grid {
    gap: 1.5rem;
  }

  .features-new-main-image {
    height: 280px;
  }

  .features-new-gallery-row {
    gap: 0.5rem;
  }

  .features-new-gallery-item {
    height: 60px;
  }
}

.branches-new {
  background: #f9fafb;
  padding: 3rem 0 2rem 0;
}

.branches-new-title {
  color: #601ba1;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.2rem;
}

.branches-new-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.07);
  padding: 2rem 2rem 2rem 1.5rem;
}

.branches-new-list {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.branches-new-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.04);
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s, box-shadow 0.2s;
}

.branches-new-card:hover {
  border: 2px solid #2563eb;
  box-shadow: 0 2px 12px 0 rgba(37, 99, 235, 0.08);
  background: #f3f8ff;
}

.branches-new-card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #601ba1;
  margin-bottom: 0.2rem;
}

.branches-new-card-desc {
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
}

.branches-new-map {
  flex: 1 1 500px;
  min-width: 320px;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.07);
  background: #f9fafb;
}

.branches-new-map-iframe {
  width: 100%;
  height: 500px;
  display: block;
}

@media (max-width: 1200px) {
  .branches-new-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
  }

  .branches-new-list {
    flex: 1 1 auto;
    width: 100%;
    max-width: 600px;
  }

  .branches-new-map {
    width: 100%;
    max-width: 100%;
  }

  .branches-new-map-iframe {
    height: 400px;
  }
}

@media (max-width: 900px) {
  .branches-new-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
  }

  .branches-new-list {
    flex: 1 1 auto;
    width: 100%;
    max-width: 600px;
  }

  .branches-new-map {
    width: 100%;
    max-width: 100%;
  }

  .branches-new-map-iframe {
    height: 400px;
  }
}

@media (max-width: 400px) {
  .branches-new-map-iframe {
    height: 250px;
  }

  .branches-new-container {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .branches-new-list {
    flex: 0 0 300px;
  }
}

@media (max-width: 1100px) {
  .branches-new-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem;
  }

  .branches-new-list {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    flex: none;
  }

  .branches-new-card {
    min-width: 200px;
    flex: 1;
    max-width: 280px;
  }

  .branches-new-map {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .branches-new-title {
    font-size: 1.4rem;
  }

  .branches-new-container {
    padding: 1rem;
  }

  .branches-new-list {
    gap: 0.8rem;
  }

  .branches-new-card {
    min-width: 180px;
    padding: 1rem;
  }

  .branches-new-card-title {
    font-size: 1rem;
  }

  .branches-new-card-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .branches-new-list {
    flex-direction: column;
    gap: 1rem;
  }

  .branches-new-card {
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .branches-new-map-iframe {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .branches-new-container {
    padding: 0.8rem;
    border-radius: 16px;
  }

  .branches-new-list {
    gap: 0.8rem;
  }

  .branches-new-card {
    padding: 0.8rem;
  }

  .branches-new-card-title {
    font-size: 0.95rem;
  }

  .branches-new-card-desc {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .branches-new-map-iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .branches-new-title {
    font-size: 1.2rem;
  }

  .branches-new-container {
    padding: 0.5rem;
  }

  .branches-new-card {
    padding: 0.7rem;
  }

  .branches-new-map-iframe {
    height: 300px;
  }
}

.instansi-widget {
  background: #f9fafb;
  padding: 2.5rem 0;
  position: relative;
}

.instansi-widget .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.instansi-widget-title {
  color: #601ba1;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.2rem;
}

.instansi-widget-content {
  background: #ddaae45b;
  border-radius: 20px;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.instansi-cards-container {
  display: flex;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
}

.instansi-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  flex: 0 0 calc(50% - 0.75rem);
  min-width: 0;
  display: none;
}

.instansi-card.active {
  display: block;
}

.instansi-card:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.instansi-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.instansi-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instansi-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  color: #fff;
}

.instansi-card-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.instansi-card-desc {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.instansi-card-btn {
  background: #fb3530;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.instansi-card-btn:hover {
  background: #b92725;
}

.instansi-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.instansi-next-btn,
.instansi-prev-btn {
  background: #fb3530;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1rem;
}

.instansi-next-btn:hover,
.instansi-prev-btn:hover {
  background: #b92725;
}

.instansi-dots {
  display: flex;
  gap: 0.5rem;
}

.instansi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: background 0.2s;
}

.instansi-dot.active {
  background: #fb3530;
}

.instansi-info-panel {
  background: #8e51b3;
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 400px;
  position: relative;
}

.instansi-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.instansi-info-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #fff;
}

.instansi-info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .instansi-widget-content {
    padding: 1.5rem;
  }

  .instansi-cards-container {
    flex-direction: column;
    gap: 1rem;
  }

  .instansi-card {
    flex: 0 0 100%;
  }

  .instansi-card-image {
    height: 180px;
  }

  .instansi-card-title {
    font-size: 1rem;
  }

  .instansi-card-desc {
    font-size: 0.85rem;
  }

  .instansi-card-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .instansi-info-panel {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .program-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

.testimonial-section {
  background: linear-gradient(180deg, #fff 0, #f0f8ff 100%);
  padding: 3rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  background-size: 150px 150px, 200px 200px;
  pointer-events: none;
}

.testimonial-title {
  color: #601ba1;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 2;
}

.testimonial-carousel {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  overflow: hidden;
}

.testimonial-cards {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  transition: transform 0.6s ease-in-out;
  width: calc(200% + 4rem);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.6s ease-in-out;
}

.testimonial-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  background: #601ba1;
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 20px 0 rgba(23, 78, 166, 0.2);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-align: left;
}

.testimonial-quote {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  text-align: left;
}

.testimonial-author {
  text-align: left;
}

.testimonial-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-affiliation {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dot.active {
  background: #601ba1;
}

.testimonial-buttons {
  display: flex;
  gap: 1rem;
}

.testimonial-next-btn,
.testimonial-prev-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fb3530;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px 0 rgba(255, 107, 53, 0.3);
}

.testimonial-next-btn:hover,
.testimonial-prev-btn:hover {
  background: #b92725;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(255, 107, 53, 0.4);
}

.testimonial-next-btn:disabled,
.testimonial-prev-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1024px) {
  .testimonial-cards {
    gap: 1.5rem;
    width: calc(200% + 3rem);
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 2rem 0 1.5rem 0;
  }

  .testimonial-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-carousel {
    padding: 0 1rem;
    overflow: hidden;
  }

  .testimonial-cards {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.6s ease-in-out;
    width: calc(200% + 2rem);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.6s ease-in-out;
  }

  .testimonial-photo {
    width: 120px;
    height: 120px;
  }

  .testimonial-content {
    padding: 1rem;
    margin-top: -20px;
    max-width: 100%;
  }

  .testimonial-quote-icon {
    font-size: 1.8rem;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }

  .testimonial-affiliation {
    font-size: 0.8rem;
  }

  .testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .testimonial-dots {
    display: flex;
    gap: 0.5rem;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
  }

  .testimonial-next-btn,
  .testimonial-prev-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 1.5rem 0 1rem 0;
  }

  .testimonial-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .testimonial-carousel {
    padding: 0 0.5rem;
  }

  .testimonial-cards {
    gap: .2rem;
    width: calc(220% + 1.6rem);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.4rem);
    max-width: calc(50% - 0.4rem);
  }

  .testimonial-photo {
    width: 100px;
    height: 100px;
  }

  .testimonial-content {
    padding: 0.8rem;
    margin-top: -15px;
  }

  .testimonial-quote-icon {
    font-size: 1.6rem;
  }

  .testimonial-quote {
    font-size: 0.85rem;
  }

  .testimonial-name {
    font-size: 0.9rem;
  }

  .testimonial-affiliation {
    font-size: 0.75rem;
  }

  .testimonial-navigation {
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .testimonial-dot {
    width: 8px;
    height: 8px;
  }

  .testimonial-next-btn,
  .testimonial-prev-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .testimonial-title {
    font-size: 1.1rem;
  }

  .testimonial-cards {
    gap: 0.6rem;
    width: calc(200% + 1.2rem);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.3rem);
    max-width: calc(50% - 0.3rem);
  }

  .testimonial-photo {
    width: 80px;
    height: 80px;
  }

  .testimonial-content {
    padding: 0.6rem;
    margin-top: -12px;
  }

  .testimonial-quote-icon {
    font-size: 1.4rem;
  }

  .testimonial-quote {
    font-size: 0.8rem;
  }

  .testimonial-name {
    font-size: 0.85rem;
  }

  .testimonial-affiliation {
    font-size: 0.7rem;
  }

  .testimonial-next-btn,
  .testimonial-prev-btn {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
}

.lead-generation {
  background: #8e51b3;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.lead-generation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  object-fit: cover;
}

.lead-generation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.lead-generation-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.lead-generation-left {
  flex: 1;
  position: relative;
}

.lead-generation-left h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lead-generation-woman {
  position: relative;
  display: inline-block;
  margin-left: 2rem;
}

.lead-woman-img {
  width: 200px;
  height: auto;
  border-radius: 20px;
}

.lead-generation-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.lead-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.lead-generation-right {
  flex: 1;
  max-width: 400px;
}

.lead-generation-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
}

.lead-generation-form::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #fbbf24, #3b82f6, #fbbf24);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
}

.lead-generation-form .form-group {
  margin-bottom: 1.5rem;
}

.lead-generation-form .form-group label {
  display: block !important;
  margin-bottom: 0.5rem;
  font-weight: 600 !important;
  color: #1f2937 !important;
  font-size: 0.95rem;
}

.lead-generation-form .form-group input {
  width: 100% !important;
  padding: 1rem !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 12px !important;
  font-size: 1rem !important;
  transition: all 0.3s ease;
  background: #f9fafb !important;
  color: #1f2937 !important;
}

.lead-generation-form .form-group input:focus {
  outline: 0 !important;
  border-color: #3b82f6 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
  color: #1f2937 !important;
}

.lead-generation-form .form-group input::placeholder {
  color: #9ca3af !important;
}

.btn-lead-submit {
  width: 100%;
  background: linear-gradient(135deg, #fb3530 0, #b92725 100%);
  color: #fff;
  padding: 1.2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-lead-submit:hover {
  background: linear-gradient(135deg, #b92725 0, #fb3530 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@media (max-width: 1024px) {
  .lead-generation-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .lead-generation-left h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .lead-generation-woman {
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .lead-woman-img {
    width: 180px;
  }

  .lead-generation-right {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .lead-generation {
    padding: 3rem 0;
  }

  .lead-generation-left h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .lead-woman-img {
    width: 150px;
  }

  .lead-generation-form {
    padding: 2rem;
  }

  .lead-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .lead-generation {
    padding: 2rem 0;
  }

  .lead-generation-left h2 {
    font-size: 1.3rem;
  }

  .lead-woman-img {
    width: 120px;
  }

  .lead-generation-form {
    padding: 1.5rem;
  }

  .btn-lead-submit {
    padding: 1rem;
    font-size: 1rem;
  }
}

/* TNI Hero Section - Additional Styles */
.hero-tni {
  background-color: #8e51b3;
  color: #ffffff;
  padding: 2rem 0 3rem 0;
  max-height: 2000px;
  position: relative;
  overflow: hidden;
}

.hero-tni::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 100px 100px, 150px 150px;
  pointer-events: none;
  z-index: 1;
}

.hero-tni-content {
  text-align: center;
}

.hero-tni .container {
  position: relative;
  overflow: visible;
  display: block !important;
  flex-direction: unset !important;
  align-items: unset !important;
  justify-content: unset !important;
  min-height: unset !important;
  padding-top: unset !important;
  z-index: 2;
}

.hero-tni .hero-cube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  object-fit: cover;
}

.hero-tni-logo-section {
  margin-bottom: 1.5rem;
}

.hero-tni-logo-img {
  max-width: 200px;
  max-height: 50px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-tni-title-main {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.hero-tni-title-highlight {
  display: block;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fbbf24;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tni-services {
  margin: 1.5rem auto;
  max-width: 600px;
  text-align: left;
}

.hero-tni-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  padding: 0;
  background: none;
  border-radius: 0;
  backdrop-filter: none;
  border: none;
  transition: none;
}

.hero-tni-service-item:hover {
  background: none;
  transform: none;
}

.hero-tni-check {
  color: #fbbf24;
  font-size: 1rem;
  min-width: 16px;
  margin-top: 0.2rem;
}

.hero-tni-service-item span {
  color: #ffffff;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-tni-description {
  margin: 1.5rem 0;
}

.hero-tni-description p {
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-tni-highlight {
  color: #fbbf24;
  font-weight: 700;
}

.hero-tni-services-summary {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-top: 0.8rem;
}

.hero-tni-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-tni-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #601ba1;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

.btn-tni-primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.6);
  color: #601ba1;
}

.btn-tni-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-tni-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* New TNI Hero Layout */
.hero-tni-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 1.5rem;
  position: relative;
  align-items: end;
}

.hero-tni-left {
  text-align: left;
}

.hero-tni-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.hero-tni-person {
  position: relative;
  display: inline-block;
}

.hero-tni-person-img {
  width: 500px;
  height: 400px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

/* Alumni Section in Right Column */
.hero-tni-alumni-right {
  text-align: center;
}

.hero-tni-alumni-right .alumni-count {
  margin-bottom: 1rem;
}

.hero-tni-alumni-right .alumni-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.hero-tni-alumni-right .alumni-label {
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.9;
}

.hero-tni-alumni-right .alumni-profiles {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-tni-alumni-right .alumni-profile {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-tni-alumni-right .alumni-profile:hover {
  border-color: #fbbf24;
  transform: scale(1.1);
}

.hero-tni-alumni-right .alumni-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Statistics Section */
.hero-tni-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  clear: both;
  width: 100%;
  position: relative;
}

.hero-tni-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.metric-item {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Mobile optimization for metric items */
@media (max-width: 768px) {
  .metric-item {
    padding: 1rem 0.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .metric-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .metric-number {
    font-size: 1.75rem;
    margin-bottom: 0.3rem;
  }

  .metric-label {
    font-size: 0.8rem;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .metric-item {
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    min-height: auto;
  }

  .metric-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .metric-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .metric-label {
    font-size: 0.75rem;
    line-height: 1.1;
    padding: 0 0.25rem;
  }

  /* Ensure proper spacing on very small screens */
  .hero-tni-metrics {
    gap: 0.5rem;
    margin: 0 0.25rem;
  }
}

.metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Mobile-friendly hover effects */
@media (max-width: 768px) {
  .metric-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .metric-item:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: #601ba1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #ffffff;
}

.metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: #601ba1;
  margin-bottom: 0.4rem;
}

.metric-label {
  font-size: 0.85rem;
  color: #601ba1;
  font-weight: 500;
  line-height: 1.3;
}

/* Responsive adjustments for TNI hero */
@media (max-width: 1024px) {
  .hero-tni {
    padding: 1.5rem 0 2.5rem 0;
    min-height: 1300px;
  }

  .hero-tni-grid {
    gap: 2.5rem;
  }

  .hero-tni-person-img {
    width: 380px;
    height: 300px;
  }

  .hero-tni-metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-tni {
    padding: 1rem 0 2rem 0;
    min-height: 1300px;
  }

  .hero-tni-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .hero-tni-left {
    text-align: center;
  }

  .hero-tni-services {
    margin: 1rem auto;
  }

  .hero-tni-person-img {
    width: 360px;
    height: 280px;
    margin-bottom: 1rem;
  }

  .hero-tni-alumni-right .alumni-number {
    font-size: 1.8rem;
  }

  .hero-tni-alumni-right .alumni-profile {
    width: 80px;
    height: 80px;
  }

  .hero-tni-stats {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .hero-tni-metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .metric-item {
    padding: 1rem;
  }

  /* Additional mobile optimization for metrics grid */
  .hero-tni-metrics {
    gap: 0.75rem;
  }

  .metric-number {
    font-size: 2rem;
  }

  .alumni-profiles {
    gap: 0.8rem;
  }

  .alumni-profile {
    width: 50px;
    height: 50px;
  }

  .hero-tni-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-tni-primary,
  .btn-tni-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-tni-logo-img {
    max-width: 250px;
  }

  .hero-tni-person-img {
    width: 280px;
    height: 220px;
    margin-top: -20px;
  }



  .hero-tni-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 0 0.5rem;
  }

  .alumni-profiles {
    gap: 0.6rem;
  }

  .alumni-profile {
    width: 60px;
    height: 60px;
  }

  .alumni-number {
    font-size: 2.5rem;
  }
}

/* TNI Academy Challenges Section */
.tni-challenges {
  padding: 4rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.tni-challenges::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  background-size: 150px 150px, 200px 200px;
  pointer-events: none;
}

.tni-challenges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tni-challenges-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tni-challenges-person {
  position: relative;
  display: inline-block;
}

.tni-challenges-person-img {
  width: 200px;
  height: auto;
  border-radius: 20px;
  transform: scaleX(-1);
}

.tni-challenges-thought-bubble {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tni-challenges-thought-bubble-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tni-challenges-right {
  padding-left: 2rem;
}

.tni-challenges-title {
  font-size: 2rem;
  font-weight: 700;
  color: #601ba1;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.tni-challenges-list {
  margin-bottom: 2.5rem;
}

.tni-challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 0;
}

.tni-challenge-icon {
  color: #fbbf24;
  font-size: 1.2rem;
  min-width: 20px;
  margin-top: 0.2rem;
}

.tni-challenge-item span {
  color: #374151;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

.tni-challenges-cta {
  margin-top: 2rem;
}

.btn-tni-challenges {
  background: linear-gradient(135deg, #fb3530 0%, #b92725 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-tni-challenges:hover {
  background: linear-gradient(135deg, #b92725 0%, #fb3530 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

/* Responsive Design for TNI Challenges */
@media (max-width: 1024px) {
  .tni-challenges-grid {
    gap: 3rem;
  }

  .tni-challenges-person-img {
    width: 250px;
  }

  .tni-challenges-thought-bubble {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .tni-challenges {
    padding: 3rem 0;
  }

  .tni-challenges-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .tni-challenges-right {
    padding-left: 0;
  }

  .tni-challenges-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .tni-challenges-person-img {
    width: 220px;
  }

  .tni-challenges-thought-bubble {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    top: -15px;
    right: -20px;
  }

  .tni-challenges-list {
    margin-bottom: 2rem;
  }

  .tni-challenge-item {
    margin-bottom: 1rem;
  }

  .tni-challenge-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tni-challenges {
    padding: 2rem 0;
  }

  .tni-challenges-title {
    font-size: 1.6rem;
  }

  .tni-challenges-person-img {
    width: 200px;
  }

  .tni-challenges-thought-bubble {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    top: -10px;
    right: -15px;
  }

  .btn-tni-challenges {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Bintang Bangsa Services Section */
.bintang-services {
  padding: 4rem 0;
  background: #8e51b3;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.bintang-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px;
  pointer-events: none;
}

.bintang-services .container {
  position: relative;
  z-index: 2;
}

.bintang-services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bintang-services-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.bintang-services-title .highlight {
  color: #fbbf24;
  font-weight: 800;
}

.bintang-services-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.9;
}

.bintang-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.bintang-services-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bintang-services-person {
  position: relative;
  display: inline-block;
}

.bintang-services-person-img {
  width: 300px;
  height: auto;
  border-radius: 20px;
  transform: scaleX(-1);
}

.bintang-services-lightbulb {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 80px;
  height: 80px;
  animation: lightbulb-float 3s ease-in-out infinite;
}

.bintang-services-lightbulb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes lightbulb-float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.bintang-services-right {
  padding-left: 1rem;
}

.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-item.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-header:hover {
  background: rgba(255, 255, 255, 0.1);
}

.service-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.service-header i {
  color: #fbbf24;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.service-item.active .service-header i {
  transform: rotate(180deg);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.service-item.active .service-content {
  max-height: 500px;
}

.service-content ul {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
}

.service-content li {
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.4;
  padding-left: 1rem;
  position: relative;
}

.service-content li::before {
  content: '•';
  color: #fbbf24;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.jasmani-categories {
  padding: 1.5rem;
}

.jasmani-category {
  margin-bottom: 1.5rem;
}

.jasmani-category h4 {
  color: #fbbf24;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.jasmani-category ul {
  padding: 0 0 0 1rem;
}

.mental-ideologi-content h4 {
  color: #fbbf24;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* Responsive Design for Bintang Services */
@media (max-width: 1024px) {
  .bintang-services-grid {
    gap: 3rem;
  }

  .bintang-services-person-img {
    width: 250px;
  }

  .bintang-services-lightbulb {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .bintang-services {
    padding: 3rem 0;
  }

  .bintang-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .bintang-services-right {
    padding-left: 0;
  }

  .bintang-services-title {
    font-size: 1.8rem;
  }

  .bintang-services-person-img {
    width: 220px;
  }

  .bintang-services-lightbulb {
    width: 60px;
    height: 60px;
    top: -20px;
    right: -15px;
  }

  .service-header {
    padding: 1rem 1.2rem;
  }

  .service-header h3 {
    font-size: 1rem;
  }

  .service-content ul {
    padding: 1.2rem;
  }

  .jasmani-categories {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .bintang-services {
    padding: 2rem 0;
  }

  .bintang-services-title {
    font-size: 1.6rem;
  }

  .bintang-services-person-img {
    width: 200px;
  }

  .bintang-services-lightbulb {
    width: 50px;
    height: 50px;
    top: -15px;
    right: -10px;
  }

  .service-header {
    padding: 0.8rem 1rem;
  }

  .service-content ul {
    padding: 1rem;
  }

  .service-content li {
    font-size: 0.9rem;
  }
}

/* Video Testimonials Section */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-testimonial-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.video-testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  background: #f3f4f6;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px 16px 0 0;
}

.video-info {
  padding: 1.5rem;
  text-align: center;
}

.video-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #601ba1;
  margin-bottom: 0.5rem;
}

.video-academy {
  display: inline-block;
  background: #601ba1;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design for Video Testimonials */
@media (max-width: 1024px) {
  .video-testimonials {
    gap: 1.5rem;
  }

  .video-info {
    padding: 1.2rem;
  }
}

@media (max-width: 768px) {
  .video-testimonials {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .video-info {
    padding: 1rem;
  }

  .video-name {
    font-size: 1rem;
  }

  .video-academy {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .video-testimonials {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .video-info {
    padding: 1rem;
  }
}

/* Consultation Widget Section */
.consultation-widget {
  padding: 4rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.consultation-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  background-size: 150px 150px, 200px 200px;
  pointer-events: none;
}

.consultation-banner {
  background: #601ba1;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: visible;
}

.consultation-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.consultation-person {
  flex-shrink: 0;
}

.consultation-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.consultation-content {
  flex: 1;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.consultation-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.consultation-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.consultation-action {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.btn-consultation {
  background: linear-gradient(135deg, #fb3530 0%, #b92725 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

.btn-consultation i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-consultation:hover i {
  transform: translateX(4px);
}

/* Responsive Design for Consultation Widget */
@media (max-width: 1024px) {
  .consultation-banner {
    padding: 2rem;
    gap: 1.5rem;
  }

  .consultation-title {
    font-size: 1.3rem;
  }

  .consultation-subtitle {
    font-size: 1rem;
  }

  .btn-consultation {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .consultation-widget {
    padding: 3rem 0;
  }

  .consultation-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .consultation-person {
    order: 1;
  }

  .consultation-content {
    order: 2;
  }

  .consultation-action {
    order: 3;
  }

  .consultation-title {
    font-size: 1.2rem;
  }

  .consultation-subtitle {
    font-size: 0.95rem;
  }

  .btn-consultation {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .consultation-widget {
    padding: 2rem 0;
  }

  .consultation-banner {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .consultation-img {
    width: 100px;
    height: 100px;
  }

  .consultation-title {
    font-size: 1.1rem;
  }

  .consultation-subtitle {
    font-size: 0.9rem;
  }

  .btn-consultation {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
}

/* Services Grid Section */
.services-grid-section {
  padding: 5rem 0;
  background: #8e51b3;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-grid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px;
  pointer-events: none;
}

.services-grid-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.services-grid-subtitle {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin: 0;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 1);
}

.service-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
  flex-shrink: 0;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #601ba1;
  margin-bottom: 1rem;
  line-height: 1.4;
  min-height: 2.8rem;
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.service-card-description {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  flex: 1;
}

/* Responsive Design for Services Grid */
@media (max-width: 1024px) {
  .services-grid {
    gap: 1.5rem;
  }

  .service-card-content {
    padding: 1.2rem;
  }

  .service-card-title {
    font-size: 1rem;
    min-height: 2.4rem;
  }

  .service-card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .services-grid-section {
    padding: 4rem 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .services-grid-title {
    font-size: 2rem;
  }

  .services-grid-subtitle {
    font-size: 1.1rem;
  }

  .service-card-image {
    height: 180px;
  }

  .service-card-content {
    padding: 1rem;
  }

  .service-card-title {
    font-size: 0.95rem;
    min-height: 2.2rem;
  }

  .service-card-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .services-grid-section {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid-title {
    font-size: 1.8rem;
  }

  .services-grid-subtitle {
    font-size: 1rem;
  }

  .service-card-image {
    height: 160px;
  }

  .service-card-content {
    padding: 1rem;
  }

  .service-card-title {
    font-size: 0.9rem;
    min-height: 2rem;
  }

  .service-card-description {
    font-size: 0.8rem;
  }
}

/* Services Carousel Section */
.services-carousel-section {
  padding: 5rem 0;
  background: #8e51b3;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px;
  pointer-events: none;
}

.services-carousel-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-carousel-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.services-carousel-subtitle {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin: 0;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.services-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 400px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  /* Debug border */
  padding: 0 1rem;
  width: 100%;
}

.services-carousel-track {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  gap: 1rem;
  flex-wrap: nowrap;
  min-height: 400px;
  padding: 0;
  margin: 0 auto;
}

.carousel-slide {
  min-width: calc((100% - 2rem) / 3);
  opacity: 0;
  transition: all 0.5s ease;
  transform: scale(0.9);
  position: relative;
  width: calc((100% - 2rem) / 3);
  display: none !important;
  flex-shrink: 0;
  visibility: hidden;
  max-width: calc((100% - 2rem) / 3);
}

.carousel-slide.active {
  opacity: 1 !important;
  transform: scale(1) !important;
  display: flex !important;
  position: relative !important;
  z-index: 10 !important;
  visibility: visible !important;
  height: auto;
  min-height: 400px;
}

.service-card.carousel-slide {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Ensure active slides are visible */
.services-carousel-track .carousel-slide.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Override any conflicting service-card styles */
.services-carousel-section .service-card.carousel-slide {
  max-width: calc((100% - 2rem) / 3) !important;
  width: calc((100% - 2rem) / 3) !important;
  min-width: calc((100% - 2rem) / 3) !important;
}

/* Ensure proper spacing and containment */
.services-carousel-section {
  overflow: hidden;
}

.services-carousel-container {
  overflow: hidden;
}

.service-card.carousel-slide:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 1);
}

.services-carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 2rem;
  position: relative;
  z-index: 3;
}

.carousel-prev-btn,
.carousel-next-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.carousel-prev-btn:hover,
.carousel-next-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Responsive Design for Services Carousel */
@media (max-width: 1024px) {
  .carousel-slide {
    min-width: calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }

  .services-carousel-track {
    gap: 1rem;
    padding: 0;
  }

  /* Override for tablet view */
  .services-carousel-section .service-card.carousel-slide {
    max-width: calc((100% - 1rem) / 2) !important;
    width: calc((100% - 1rem) / 2) !important;
    min-width: calc((100% - 1rem) / 2) !important;
  }
}

@media (max-width: 900px) {
  .carousel-slide {
    min-width: calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }

  .services-carousel-track {
    gap: 0.75rem;
    padding: 0;
  }

  /* Override for medium tablet view */
  .services-carousel-section .service-card.carousel-slide {
    max-width: calc((100% - 1rem) / 2) !important;
    width: calc((100% - 1rem) / 2) !important;
    min-width: calc((100% - 1rem) / 2) !important;
  }
}

@media (max-width: 768px) {
  .services-carousel-section {
    padding: 4rem 0;
  }

  .carousel-slide {
    min-width: calc(100% - 2rem);
    width: calc(100% - 2rem);
    max-width: calc(100% - 2rem);
  }

  .services-carousel-track {
    gap: 0;
    padding: 0;
  }

  .services-carousel-title {
    font-size: 2rem;
  }

  .services-carousel-subtitle {
    font-size: 1.1rem;
  }

  .services-carousel-navigation {
    gap: 1.5rem;
  }

  .carousel-prev-btn,
  .carousel-next-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  /* Override for mobile view */
  .services-carousel-section .service-card.carousel-slide {
    max-width: calc(100% - 2rem) !important;
    width: calc(100% - 2rem) !important;
    min-width: calc(100% - 2rem) !important;
  }
}

@media (max-width: 480px) {
  .services-carousel-section {
    padding: 3rem 0;
  }

  .carousel-slide {
    min-width: calc(100% - 1rem);
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
  }

  .services-carousel-title {
    font-size: 1.8rem;
  }

  .services-carousel-subtitle {
    font-size: 1rem;
  }

  .services-carousel-navigation {
    gap: 1rem;
  }

  .carousel-prev-btn,
  .carousel-next-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .carousel-dots {
    gap: 0.4rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  /* Override for small mobile view */
  .services-carousel-section .service-card.carousel-slide {
    max-width: calc(100% - 1rem) !important;
    width: calc(100% - 1rem) !important;
    min-width: calc(100% - 1rem) !important;
  }
}

/* CTA Consultation Form Section */
.cta-form-section {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  background-size: 150px 150px, 200px 200px;
  pointer-events: none;
}

.cta-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cta-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #601ba1;
  line-height: 1.3;
  margin: 0;
}

.cta-form-highlight {
  color: #fb3530;
  font-weight: 800;
}

.cta-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.cta-consultation-form {
  background: #601ba1;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(30, 58, 138, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #fb3530;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group select option {
  background: #601ba1;
  color: #ffffff;
  padding: 0.5rem;
}

.cta-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #fb3530 0%, #b92725 100%);
  color: #ffffff;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  margin-top: 1rem;
}

.cta-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff5a1f 0%, #ff7a2e 100%);
}

.cta-form-submit:active {
  transform: translateY(0);
}

/* Responsive Design for CTA Form */
@media (max-width: 768px) {
  .cta-form-section {
    padding: 4rem 0;
  }

  .cta-form-title {
    font-size: 1.6rem;
  }

  .cta-consultation-form {
    padding: 2rem 1.5rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .cta-form-submit {
    padding: 1rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-form-section {
    padding: 3rem 0;
  }

  .cta-form-title {
    font-size: 1.4rem;
  }

  .cta-consultation-form {
    padding: 1.5rem 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .cta-form-submit {
    padding: 0.9rem 1.6rem;
    font-size: 0.95rem;
  }
}

/* Video and Parent Testimonials Section */
.video-testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.video-section {
  text-align: center;
  margin-bottom: 4rem;
}

.video-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #601ba1;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: none;
}

/* Parent Testimonials Section */
.parent-testimonials-section {
  text-align: center;
}

.parent-testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #601ba1;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.parent-testimonials-title .highlight {
  color: #f59e0b;
}

.parent-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments for video and testimonials */
@media (max-width: 768px) {

  .video-title,
  .parent-testimonials-title {
    font-size: 2rem;
  }

  .video-container {
    margin: 0 1rem;
  }

  .parent-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {

  .video-title,
  .parent-testimonials-title {
    font-size: 1.75rem;
  }

  .video-testimonials-section {
    padding: 3rem 0;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: #8e51b3;
  /* Changed to match Bintang Services */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px;
  pointer-events: none;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.gallery-category {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
}

.gallery-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #601ba1;
  margin-bottom: 1.5rem;
  text-align: center;
}

.gallery-category-desc {
  font-size: 1.1rem;
  color: #e2e8f0;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.gallery-slideshow {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Responsive Design for Gallery */
@media (max-width: 1024px) {
  .gallery-categories {
    gap: 1.5rem;
  }

  .gallery-category {
    padding: 1.8rem;
  }

  .gallery-category-title {
    font-size: 1.4rem;
  }

  .gallery-slideshow {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 4rem 0;
  }

  .gallery-categories {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-category {
    padding: 1.5rem;
  }

  .gallery-title {
    font-size: 2rem;
  }

  .gallery-subtitle {
    font-size: 1.1rem;
  }

  .gallery-category-title {
    font-size: 1.3rem;
  }

  .gallery-slideshow {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 3rem 0;
  }

  .gallery-categories {
    gap: 1.5rem;
  }

  .gallery-category {
    padding: 1.2rem;
  }

  .gallery-title {
    font-size: 1.8rem;
  }

  .gallery-subtitle {
    font-size: 1rem;
  }

  .gallery-category-title {
    font-size: 1.2rem;
  }

  .gallery-slideshow {
    height: 180px;
  }
}

/* Gallery Videos Section */
.gallery-videos-section {
  margin-top: 4rem;
  text-align: center;
}

.gallery-videos-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.gallery-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gallery-video-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.gallery-video-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.gallery-video-item iframe {
  width: 100%;
  height: 282px;
  border: none;
  border-radius: 16px 16px 0 0;
}

.video-info {
  padding: 1.5rem;
  text-align: center;
}

.video-title {
  font-size: 1rem;
  font-weight: 600;
  color: #601ba1;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.video-watch-btn {
  background: #dc2626;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.video-watch-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
}

/* Responsive Design for Gallery Videos */
@media (max-width: 768px) {
  .gallery-videos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-videos-title {
    font-size: 1.6rem;
  }

  .video-thumbnail {
    height: 180px;
  }

  .video-play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .overlay-name,
  .overlay-session {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-videos-section {
    margin-top: 3rem;
  }

  .gallery-videos-title {
    font-size: 1.4rem;
  }

  .video-thumbnail {
    height: 160px;
  }

  .video-info {
    padding: 1.2rem;
  }

  .video-title {
    font-size: 0.9rem;
  }

  .video-watch-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.8rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 0;
  background: #8e51b3;
  /* Changed to match Bintang Services */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px;
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #601ba1;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 1rem;
}

.faq-question i {
  color: #64748b;
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #601ba1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8fafc;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem 2rem;
  margin: 0;
  color: #374151;
  line-height: 1.6;
  font-size: 1rem;
}

.faq-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-faq-readmore {
  background: linear-gradient(135deg, #fb3530 0%, #b92725 100%);
  color: #ffffff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-faq-readmore:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff5a1f 0%, #ff7a2e 100%);
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-container {
    margin: 0 1rem 2rem 1rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.2rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-faq-readmore {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-container {
    margin: 0 0.5rem 1.5rem 0.5rem;
  }

  .faq-question {
    padding: 1rem 1.2rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 1.2rem 1rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-faq-readmore {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* TNI Academy CTA Banner Section */
.tni-cta-banner {
  padding: 0;
  background: #8e51b3;
  /* Changed to match Bintang Services */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: relative;
  background: #8e51b3;
  /* Changed to match Bintang Services */
}

.cta-banner-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px;
  pointer-events: none;
}

.cta-banner-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-banner-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-banner-personnel {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-personnel-img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.personnel-left {
  z-index: 2;
  transform: translateX(0);
}

.personnel-right {
  z-index: 1;
  transform: translateX(10px);
}

.cta-personnel-img:hover {
  transform: translateY(-5px) scale(1.05);
}

.cta-banner-center {
  text-align: center;
  padding: 0 1rem;
}

.cta-banner-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-banner-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-cta-consultation {
  background: linear-gradient(135deg, #fb3530 0%, #b92725 100%);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  white-space: nowrap;
}

.btn-cta-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff5a1f 0%, #ff7a2e 100%);
}

.btn-cta-consultation:active {
  transform: translateY(0);
}

/* Responsive Design for TNI CTA Banner */
@media (max-width: 1024px) {
  .cta-banner-content {
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1.5rem;
    padding: 2.5rem 0;
  }

  .cta-banner-title {
    font-size: 1.6rem;
  }

  .cta-personnel-img {
    width: 100px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  .cta-banner-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
    text-align: center;
  }

  .cta-banner-title {
    font-size: 1.4rem;
    order: 1;
  }

  .cta-banner-left {
    order: 2;
  }

  .cta-banner-right {
    order: 3;
  }

  .cta-personnel-img {
    width: 90px;
    height: 120px;
  }

  .btn-cta-consultation {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-banner-content {
    padding: 1.5rem 0;
  }

  .cta-banner-title {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }

  .cta-personnel-img {
    width: 80px;
    height: 110px;
  }

  .btn-cta-consultation {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ALUMNI Bintang Bangsa Section */
.alumni-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}



.alumni-header {
  text-align: center;
  margin-bottom: 3rem;
}

.alumni-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #601ba1;
  margin-bottom: 1rem;
}

.alumni-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 500;
}

.alumni-running-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Pause animation on hover */
.alumni-running-container:hover .alumni-running-track {
  animation-play-state: paused;
}

.alumni-running-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0 1rem;
  will-change: transform;
  /* Debug: ensure track is visible */
  min-width: 100%;
  /* Consolidated animation with all browser prefixes */
  -webkit-animation: alumniScroll 30s linear infinite;
  -moz-animation: alumniScroll 30s linear infinite;
  -o-animation: alumniScroll 30s linear infinite;
  animation: alumniScroll 30s linear infinite;
  /* Hardware acceleration without transform conflicts */
  backface-visibility: hidden;
  perspective: 1000px;
}

.alumni-image {
  position: relative;
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.alumni-image:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.alumni-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.alumni-image:hover .alumni-img {
  transform: scale(1.1);
}

.alumni-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.alumni-image:hover .alumni-overlay {
  transform: translateY(0);
}

.alumni-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.alumni-academy {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

@keyframes alumniScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Force animation to work with higher specificity */
section.alumni-section .alumni-running-container .alumni-running-track {
  -webkit-animation: alumniScroll 30s linear infinite !important;
  -moz-animation: alumniScroll 30s linear infinite !important;
  -o-animation: alumniScroll 30s linear infinite !important;
  animation: alumniScroll 30s linear infinite !important;
}





/* Alternative animation method */
@keyframes alumniScrollAlternative {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Fallback animation */
.alumni-running-track.alternative {
  animation: alumniScrollAlternative 30s linear infinite;
}

/* Responsive Design for Alumni Section */
@media (max-width: 1024px) {
  .alumni-title {
    font-size: 2.2rem;
  }

  .alumni-image {
    width: 180px;
    height: 225px;
  }
}

@media (max-width: 768px) {
  .alumni-section {
    padding: 3rem 0;
  }

  .alumni-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .alumni-subtitle {
    font-size: 1.1rem;
  }

  .alumni-running-container {
    padding: 1.5rem 0;
  }

  .alumni-image {
    width: 160px;
    height: 200px;
  }

  .alumni-running-track {
    gap: 1.5rem;
    -webkit-animation-duration: 25s;
    -moz-animation-duration: 25s;
    -o-animation-duration: 25s;
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .alumni-section {
    padding: 2.5rem 0;
  }

  .alumni-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }

  .alumni-subtitle {
    font-size: 1rem;
  }

  .alumni-running-container {
    padding: 1rem 0;
  }

  .alumni-image {
    width: 140px;
    height: 175px;
  }

  .alumni-running-track {
    gap: 1rem;
    -webkit-animation-duration: 20s;
    -moz-animation-duration: 20s;
    -o-animation-duration: 20s;
    animation-duration: 20s;
  }

  .alumni-name {
    font-size: 1rem;
  }

  .alumni-academy {
    font-size: 0.8rem;
  }
}



/* Section button WA */
.button-wa {
  position: fixed;
  bottom: 10%;
  right: 5%;
  z-index: 99999999;
}

.button-wa a {
  display: inline-flex;
  align-items: center;
  background-color: #5b227e;
  padding: 8px 62px 8px 20px;
  /* ruang kiri lebih lebar */
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}

.button-wa .text-label {
  margin-right: 40px;
  /* ruang kosong agar logo muat di kanan */
  white-space: nowrap;
}

.button-wa img {
  width: 70px;
  position: absolute;
  right: -20px;
  /* biar nempel keluar dari oval */
  top: 50%;
  transform: translateY(-50%);
}

.features-new .features-new-right ul li {
  color: #fff;
}

.program-section .program-section-title {
  text-align: center;
  margin-top: 30px;
  color: #601ba1;
  font-weight: 800;
}

.program-section .program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.program-section .program-grid .program-image img {
  width: 100%;
  border-radius: 20px;
  margin-top: 25px;
}

.program-section .program-grid .program-content {
  text-align: center;
  margin-top: -50px;
}

.program-section .program-grid .program-content .program-btn {
  background-color: #dc2626;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 20px;
}

.hero-image .image-desktop {
  display: block;
}

.hero-image .image-mobile {
  display: none;
}

.hero-title span {
  font-size: 46px;
  text-shadow: 4px 4px #000000;
  display: inline-block;
  margin-top: 10px;
}

.about-learning-v2 .container {
  margin-top: -60px;
}

.about-learning-v2-image-mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .button-wa a {
    font-size: 12px;
    padding: 3px 40px 3px 16px;
  }

  .button-wa img {
    width: 45px;
    right: -12px;
    right: -10px;
  }

  .program-section .program-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    margin-bottom: 50px;
  }

  .hero-image .image-desktop {
    display: none;
  }

  .hero-image .image-mobile {
    display: block;
  }
  .hero-image {
    margin-bottom: 30px;
    margin-top: -20px;
  }
  .hero-title {
    font-size: 16px;
  }
  .hero-title span {
    font-size: 34px;
    text-shadow: 2px 2px #000000;
    margin-top: 25px;
  }
  .about-learning-v2 .container {
    margin-top: -20px;
  }
  .features-new-list li {
    font-size: 14px;
  }
  .about-learning-right {
    margin-top: -40px;
  }
  .hero-description {
    font-size: 14px;
  }
  .about-learning-v2-stats,
  .about-learning-v2-right .about-learning-v2-image {
    display: none;
  }
  .about-learning-v2-right .about-learning-v2-image-mobile {
    display: block;
    width: 100%;
    margin-top: -60px;
  }
  .hero-tni-title .hero-tni-title-highlight {
    display: block;
    margin-top: 0;
  }
}