:root {
  --primary-color: #123d6b;
  --primary-dark: #0d2f52;
  --secondary-blue: #1f5f95;
  --gold-color: #c79a4a;
  --gold-dark: #a9782f;
  --light-gold: #e7c98b;
  --dark-color: #0f172a;
  --light-bg: #f7f8fa;
  --section-bg: #f1f4f8;
  --muted-text: #5f6b7a;
  --white-color: #ffffff;
  --border-color: rgba(18, 61, 107, 0.1);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-medium: 0 18px 45px rgba(15, 23, 42, 0.12);

  /* Section spacing */
  --section-space-lg: 90px;
  --section-space-md: 70px;
  --section-space-sm: 60px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1e293b;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* =========================
   Global Buttons
========================= */
.btn-main {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--white-color);
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(18, 61, 107, 0.18);
}

.btn-main:hover,
.btn-main:focus {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-blue));
  color: var(--white-color);
  transform: translateY(-2px);
}

.btn-outline-main {
  border: 1.5px solid var(--gold-color);
  color: var(--gold-dark);
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  background: rgba(199, 154, 74, 0.04);
  transition: all 0.3s ease;
}

.btn-outline-main:hover,
.btn-outline-main:focus {
  background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
  color: var(--white-color);
  transform: translateY(-2px);
}

/* =========================
   Premium Navbar - Edumarg
========================= */
.custom-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 61, 107, 0.08);
  box-shadow: 0 8px 28px rgba(18, 61, 107, 0.08);
  transition: all 0.35s ease;
  z-index: 999;
}

.custom-navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 12px 34px rgba(18, 61, 107, 0.14);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.main-logo {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.custom-navbar.scrolled .main-logo {
  height: 54px;
}

.custom-nav {
  gap: 10px;
}

.custom-nav .nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 10px 16px !important;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.custom-nav .nav-link:hover,
.custom-nav .nav-link:focus {
  color: var(--primary-color);
  background: rgba(18, 61, 107, 0.06);
}

.custom-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-color), var(--secondary-blue));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.custom-nav .nav-link:hover::before,
.custom-nav .nav-link:focus::before {
  transform: scaleX(1);
}

.nav-right-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(199, 154, 74, 0.1);
  color: var(--gold-dark);
  font-weight: 700;
  border: 1px solid rgba(199, 154, 74, 0.18);
  transition: all 0.3s ease;
}

.nav-call-btn:hover {
  background: rgba(199, 154, 74, 0.16);
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.nav-cta-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white-color);
  border: none;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(18, 61, 107, 0.22);
  transition: all 0.3s ease;
}

.nav-cta-btn:hover,
.nav-cta-btn:focus {
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(18, 61, 107, 0.28);
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-blue));
}

.custom-toggler {
  border: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(18, 61, 107, 0.08), rgba(199, 154, 74, 0.1));
  box-shadow: none !important;
}

.custom-toggler:focus {
  box-shadow: none;
}

.custom-toggler .navbar-toggler-icon {
  width: 1.35em;
  height: 1.35em;
}

/* =========================
   Premium Hero Section
========================= */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-space-lg) 0 var(--section-space-md);
  background:
    radial-gradient(circle at top left, rgba(199, 154, 74, 0.14), transparent 28%),
    radial-gradient(circle at right center, rgba(31, 95, 149, 0.1), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #f4f8fc 45%, #eef3f9 100%);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-bg-shape-1 {
  width: 320px;
  height: 320px;
  background: rgba(199, 154, 74, 0.14);
  top: -80px;
  left: -100px;
}

.hero-bg-shape-2 {
  width: 360px;
  height: 360px;
  background: rgba(18, 61, 107, 0.12);
  right: -120px;
  bottom: -100px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 61, 107, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 107, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 90%);
  z-index: 0;
}

.hero-content,
.hero-form-wrapper {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(199, 154, 74, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(199, 154, 74, 0.18);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(199, 154, 74, 0.1);
}

.hero-title {
  font-size: 3.35rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
  margin-bottom: 24px;
  max-width: 760px;
}

.hero-title span {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 14px;
  background: rgba(199, 154, 74, 0.22);
  z-index: -1;
  border-radius: 50px;
}

.hero-text {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--muted-text);
  max-width: 670px;
  margin-bottom: 32px;
}

.hero-btn-group {
  margin-bottom: 10px;
}

.hero-primary-btn,
.hero-secondary-btn {
  min-height: 54px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
}

.hero-primary-btn {
  box-shadow: 0 14px 30px rgba(18, 61, 107, 0.18);
}

.hero-secondary-btn {
  box-shadow: 0 10px 24px rgba(199, 154, 74, 0.08);
}

.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(18, 61, 107, 0.08);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 24px rgba(18, 61, 107, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.hero-trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(18, 61, 107, 0.1);
}

.hero-trust-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white-color);
  font-size: 1.1rem;
  box-shadow: 0 10px 24px rgba(18, 61, 107, 0.16);
}

.hero-trust-item h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.hero-trust-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted-text);
  line-height: 1.5;
}

.hero-stats {
  margin-top: 8px;
}

.hero-stat-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(18, 61, 107, 0.08);
  border-radius: 18px;
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(18, 61, 107, 0.05);
  transition: all 0.3s ease;
}

.hero-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(18, 61, 107, 0.09);
}

.hero-stat-box h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.hero-stat-box p {
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 500;
}

/* =========================
   Hero Form
========================= */
.hero-form-wrapper {
  position: relative;
}

.hero-form-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 8px;
}

.hero-form-topbar-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
}

.hero-form-topbar-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(199, 154, 74, 0.12);
  border: 1px solid rgba(199, 154, 74, 0.2);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 20px 50px rgba(18, 61, 107, 0.12),
    0 8px 20px rgba(18, 61, 107, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-card-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(199, 154, 74, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(18, 61, 107, 0.1), transparent 32%);
  z-index: 0;
}

.hero-card-inner {
  position: relative;
  z-index: 2;
}

.hero-card-header h4 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.hero-card-header p {
  margin: 0;
  color: var(--muted-text);
  line-height: 1.7;
}

.hero-form .form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.hero-form .form-control,
.hero-form .form-select {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 61, 107, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-color);
  min-height: 54px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.hero-form textarea.form-control {
  min-height: 120px;
  resize: none;
}

.hero-form .form-control::placeholder,
.hero-form .form-select {
  color: #7a8798;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
  border-color: rgba(18, 61, 107, 0.35);
  box-shadow: 0 0 0 0.22rem rgba(18, 61, 107, 0.1);
  background: var(--white-color);
}

.hero-submit-btn {
  min-height: 56px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 6px;
}

.hero-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted-text);
  text-align: center;
}

/* =========================
   Section Header
========================= */
.section-header {
  margin-bottom: 45px;
}

.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(199, 154, 74, 0.12);
  border: 1px solid rgba(199, 154, 74, 0.18);
  margin-bottom: 18px;
}

.section-title {
  position: relative;
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.4px;
  margin-bottom: 18px;
}

.section-title span {
  position: relative;
  color: var(--primary-color);
}

.section-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 12px;
  background: rgba(199, 154, 74, 0.25);
  border-radius: 50px;
  z-index: -1;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--gold-color), var(--primary-color));
  border-radius: 999px;
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted-text);
  max-width: 720px;
  margin: 22px auto 0;
}

/* ===============================
   Services Section
================================ */
.services-section {
  position: relative;
  padding: var(--section-space-lg) 0;
  background:
    radial-gradient(circle at top right, rgba(199, 154, 74, 0.08), transparent 25%),
    radial-gradient(circle at bottom left, rgba(18, 61, 107, 0.08), transparent 30%),
    var(--light-bg);
}

.service-card {
  position: relative;
  height: 100%;
  padding: 38px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(18, 61, 107, 0.08);
  box-shadow: 0 14px 35px rgba(18, 61, 107, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-color), var(--primary-color));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(18, 61, 107, 0.15);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  box-shadow: 0 10px 24px rgba(18, 61, 107, 0.2);
  transition: all 0.35s ease;
}

.service-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--muted-text);
  margin: 0;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
}

/* =================================
   Stats Section
================================= */
.stats-section {
  position: relative;
  padding: var(--section-space-lg) 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  overflow: hidden;
}

.stats-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 90%);
}

.stat-card {
  text-align: center;
  padding: 38px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.35s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.25);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* =========================
   Courses Section
========================= */
.courses-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-space-lg) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fb 50%, #eef3f8 100%);
}

.courses-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.courses-bg-shape-1 {
  width: 280px;
  height: 280px;
  top: 80px;
  left: -80px;
  background: rgba(199, 154, 74, 0.1);
}

.courses-bg-shape-2 {
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: 40px;
  background: rgba(18, 61, 107, 0.1);
}

.premium-course-card {
  position: relative;
  height: 100%;
  padding: 30px 28px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(18, 61, 107, 0.08);
  box-shadow: 0 16px 40px rgba(18, 61, 107, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  z-index: 2;
}

.premium-course-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-color), var(--primary-color));
}

.premium-course-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(199, 154, 74, 0.12), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.premium-course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(18, 61, 107, 0.14);
  border-color: rgba(18, 61, 107, 0.12);
}

.course-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.premium-course-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white-color);
  font-size: 1.55rem;
  box-shadow: 0 14px 28px rgba(18, 61, 107, 0.18);
  transition: all 0.35s ease;
}

.premium-course-card:hover .premium-course-icon {
  transform: scale(1.06) rotate(-3deg);
  background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
}

.course-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(199, 154, 74, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(199, 154, 74, 0.16);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.premium-course-card h5 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.premium-course-card p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--muted-text);
  margin-bottom: 22px;
}

.course-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.course-feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--dark-color);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.course-feature-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold-color);
  font-size: 15px;
  font-weight: 700;
}

.course-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.course-card-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.course-card-btn:hover {
  color: var(--gold-dark);
}

.course-card-btn:hover i {
  transform: translateX(4px);
}

/* =================================
   Process Section
================================= */
.process-section {
  padding: var(--section-space-lg) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(199, 154, 74, 0.12);
  filter: blur(60px);
  border-radius: 50%;
}

.process-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: rgba(18, 61, 107, 0.1);
  filter: blur(60px);
  border-radius: 50%;
}

.premium-process-card {
  position: relative;
  padding: 38px 26px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(18, 61, 107, 0.08);
  box-shadow: 0 14px 40px rgba(18, 61, 107, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.premium-process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(18, 61, 107, 0.15);
}

.process-step {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(199, 154, 74, 0.12);
  border: 1px solid rgba(199, 154, 74, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
}

.process-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  box-shadow: 0 14px 28px rgba(18, 61, 107, 0.18);
  transition: all 0.35s ease;
}

.premium-process-card:hover .process-icon {
  background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
  transform: scale(1.05);
}

.premium-process-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.premium-process-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-text);
  margin: 0;
}

/* =========================
   Testimonials Section
========================= */
.testimonials-section {
  padding: var(--section-space-lg) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.premium-testimonial-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(18, 61, 107, 0.08);
  box-shadow: 0 16px 40px rgba(18, 61, 107, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.premium-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 55px rgba(18, 61, 107, 0.15);
}

.testimonial-quote {
  font-size: 34px;
  color: var(--gold-color);
  margin-bottom: 10px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted-text);
  margin-bottom: 18px;
}

.testimonial-stars {
  color: #f5b400;
  margin-bottom: 18px;
}

.testimonial-stars i {
  margin-right: 2px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(18, 61, 107, 0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h6 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-dark);
}

.testimonial-info span {
  font-size: 13px;
  color: var(--muted-text);
}

/* =================================
   Premium CTA Section
================================= */
.premium-cta-section {
  position: relative;
  padding: var(--section-space-lg) 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: #fff;
  overflow: hidden;
}

.cta-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.cta-bg-shape-1 {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -100px;
  background: var(--gold-color);
}

.cta-bg-shape-2 {
  width: 340px;
  height: 340px;
  bottom: -120px;
  right: -100px;
  background: #ffffff;
  opacity: 0.15;
}

.cta-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 18px;
}

.cta-title {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}

.cta-title span {
  color: var(--light-gold);
}

.cta-text {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 540px;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.cta-benefit i {
  color: var(--light-gold);
}

.premium-cta-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  color: var(--dark-color);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.premium-cta-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.premium-cta-card p {
  font-size: 14px;
  color: var(--muted-text);
  margin-bottom: 22px;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.cta-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  transition: 0.3s;
}

.cta-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 61, 107, 0.3);
  color: #fff;
}

.cta-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: #25d366;
  transition: 0.3s;
}

.cta-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  color: #fff;
}

/* =================================
   Premium FAQ Section
================================= */
.premium-faq-section {
  padding: var(--section-space-lg) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.premium-faq-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -120px;
  right: -120px;
  background: rgba(199, 154, 74, 0.12);
  filter: blur(60px);
  border-radius: 50%;
}

.premium-faq-accordion .accordion-item {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 61, 107, 0.08);
  transition: 0.3s;
}

.premium-faq-accordion .accordion-item:hover {
  box-shadow: 0 18px 40px rgba(18, 61, 107, 0.12);
}

.premium-faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 20px;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: none;
}

.premium-faq-accordion .accordion-button::after {
  background-size: 18px;
}

.premium-faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(18, 61, 107, 0.06), rgba(199, 154, 74, 0.1));
  color: var(--primary-dark);
}

.premium-faq-accordion .accordion-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-text);
  padding: 18px 20px;
  border-top: 1px solid rgba(18, 61, 107, 0.08);
}

.premium-faq-accordion .accordion-button:focus {
  box-shadow: none;
}

/* =================================
   Premium Footer
================================= */
.premium-footer {
  background: linear-gradient(180deg, var(--primary-dark), #0b1f3c);
  color: #cbd5e1;
  margin-top: 60px;
}

.footer-top {
  padding: 70px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 60px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--light-gold);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact i {
  color: var(--gold-color);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold-color);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 20px 0;
}

.copyright {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--light-gold);
}

/* =========================
   Large Screens
========================= */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* =========================
   Tablet
========================= */
@media (max-width: 991.98px) {
  .custom-navbar {
    padding: 12px 0;
  }

  .main-logo {
    height: 54px;
  }

  .custom-navbar.scrolled .main-logo {
    height: 50px;
  }

  .navbar-collapse {
    margin-top: 16px;
    padding: 18px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
  }

  .custom-nav {
    gap: 6px;
    margin-bottom: 18px;
  }

  .custom-nav .nav-link {
    padding: 12px 14px !important;
    border-radius: 12px;
  }

  .custom-nav .nav-link::before {
    display: none;
  }

  .nav-right-box {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-call-btn,
  .nav-cta-btn {
    justify-content: center;
    width: 100%;
  }

  .hero-section,
  .services-section,
  .stats-section,
  .courses-section,
  .process-section,
  .testimonials-section,
  .premium-cta-section,
  .premium-faq-section {
    padding: var(--section-space-md) 0;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .hero-text {
    font-size: 1.04rem;
    line-height: 1.8;
  }

  .hero-form-wrapper {
    margin-top: 10px;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .service-card {
    padding: 30px 22px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .premium-course-card {
    padding: 28px 24px 24px;
  }

  .premium-course-card h5 {
    font-size: 1.25rem;
  }

  .premium-cta-section {
    padding: var(--section-space-md) 0;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .premium-faq-section {
    padding: var(--section-space-md) 0;
  }

  .testimonials-section {
    padding: var(--section-space-md) 0;
  }

  .footer-top {
    padding: 60px 0 40px;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 767.98px) {
  .hero-section,
  .services-section,
  .stats-section,
  .courses-section,
  .process-section,
  .testimonials-section,
  .premium-cta-section,
  .premium-faq-section {
    padding: var(--section-space-sm) 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-title {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.98rem;
  }

  .hero-badge {
    font-size: 12px;
    padding: 9px 14px;
  }

  .hero-title {
    font-size: 2.15rem;
    line-height: 1.2;
  }

  .hero-title span::after {
    height: 10px;
    bottom: 5px;
  }

  .hero-text {
    font-size: 0.98rem;
    margin-bottom: 26px;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    border-radius: 22px;
  }

  .hero-card-header h4 {
    font-size: 1.4rem;
  }

  .hero-form-topbar {
    padding: 0 2px;
  }

  .hero-form-topbar-text {
    font-size: 13px;
  }

  .stat-card {
    padding: 28px 18px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .premium-course-card {
    border-radius: 20px;
  }

  .premium-course-icon {
    width: 60px;
    height: 60px;
    font-size: 1.35rem;
  }

  .course-tag {
    font-size: 11px;
    padding: 7px 12px;
  }

  .premium-process-card {
    padding: 30px 20px;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .premium-testimonial-card {
    padding: 28px 22px;
  }

  .cta-benefits {
    flex-direction: column;
  }

  .premium-cta-card {
    padding: 28px;
  }

  .premium-faq-accordion .accordion-button {
    font-size: 0.95rem;
    padding: 16px;
  }

  .premium-faq-accordion .accordion-body {
    padding: 16px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}