:root {
  --green: #0A7C6E;
  --blue: #170C79;
  --green-light: #0d9e8d;
  --blue-light: #2318a8;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --gradient: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  --gradient-rev: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  --shadow-sm: 0 2px 12px rgba(23, 12, 121, 0.08);
  --shadow-md: 0 8px 32px rgba(23, 12, 121, 0.13);
  --shadow-lg: 0 20px 60px rgba(23, 12, 121, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 12, 121, 0.07);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-box svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.nav-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .active-link {
  color: var(--green);
  font-weight: 800;
}

.nav-cta {
  background: var(--gradient);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 124, 110, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #f0f4ff 0%, #e8faf8 50%, #f8f9fa 100%);
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.06;
  animation: float 8s ease-in-out infinite;
}

.hero-bg-circle.c1 { width: 500px; height: 500px; top: -120px; right: -80px; }
.hero-bg-circle.c2 { width: 300px; height: 300px; bottom: -60px; left: -60px; animation-delay: -4s; }
.hero-bg-circle.c3 { width: 180px; height: 180px; top: 30%; left: 40%; opacity: 0.04; animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 124, 110, 0.1);
  border: 1px solid rgba(10, 124, 110, 0.25);
  color: var(--green);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--blue);
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.btn-primary {
  background: var(--gradient);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10, 124, 110, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(10, 124, 110, 0.4);
}

.btn-secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-main-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(23, 12, 121, 0.06);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.hero-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
}

.hero-card-sub {
  font-size: 0.78rem;
  color: var(--gray-600);
}

.progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  margin: 8px 0 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 1.5s ease;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.73rem;
  color: var(--gray-600);
}

.floating-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
}

.floating-badge.fb1 { top: -24px; right: -30px; font-size: 0.82rem; color: var(--green); animation-delay: -1s; }
.floating-badge.fb2 { bottom: -20px; left: -28px; font-size: 0.78rem; color: var(--blue); animation-delay: -3s; }

.fb-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ── SECTION COMMON ── */
section {
  padding: 60px 5%;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(10, 124, 110, 0.06);
  padding: 6px 10px;
  border-radius: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  max-width: 1300px;
  margin: 0 auto 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ── ABOUT ── */
.about {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 3px;
  display: inline-block;
  width: 100%;
}

.about-img-inner {
  background: var(--gray-100);
  border-radius: calc(var(--radius-lg) - 3px);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(23, 12, 121, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

.about-center-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: white;
  z-index: 1;
  box-shadow: 0 16px 48px rgba(23, 12, 121, 0.25);
}

.about-float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  font-family: 'Poppins', sans-serif;
}

.about-float-card.afc1 { bottom: 20px; left: -30px; }
.about-float-card.afc2 { top: 20px; right: -30px; }

.afc-num { font-size: 1.4rem; font-weight: 800; color: var(--blue); }
.afc-lbl { font-size: 0.72rem; color: var(--gray-600); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s, transform 0.2s;
}

.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(10, 124, 110, 0.12), rgba(23, 12, 121, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

.why-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 3px;
}

.why-text p {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── COURSES ── */
.courses {
  background: white;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1300px;
  margin: 0 auto;
}

.course-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}

.course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

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

.course-card:hover::before { opacity: 1; }
.course-card:hover * { color: white !important; }

.course-card:hover .course-tag {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.course-card:hover .course-btn {
  background: white;
  color: var(--blue) !important;
}

.course-card>* {
  position: relative;
  z-index: 1;
}

.course-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 124, 110, 0.12), rgba(23, 12, 121, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: background 0.3s;
}

.course-card:hover .course-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
}

.course-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}

.course-desc {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 18px;
}

.course-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.course-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(10, 124, 110, 0.1);
  border: 1px solid rgba(10, 124, 110, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
}

.course-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(23, 12, 121, 0.08);
  padding: 9px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

/* ── FEATURES ── */
.features {
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 18px;
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── STATS ── */
.stats-band {
  background: var(--gradient);
  padding: 60px 5%;
}

.stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stats-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stats-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
  font-weight: 600;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: white;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.testi-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--gray-200);
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.testi-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 1rem;
}

.testi-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
}

.testi-course {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
}

/* ── PORTFOLIO ── */
.portfolio {
  background: var(--gray-50);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gradient);
  cursor: pointer;
  transition: transform 0.3s;
}

.portfolio-card:hover { transform: scale(1.03); }
.portfolio-card:nth-child(2n) { background: linear-gradient(135deg, var(--green) 0%, #0d9e8d 100%); }
.portfolio-card:nth-child(3n) { background: linear-gradient(135deg, #1a0fa0 0%, var(--blue) 100%); }
.portfolio-card:nth-child(4n) { background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%); }

.portfolio-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.15);
}

.portfolio-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.portfolio-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.portfolio-cat {
  font-size: 0.72rem;
  opacity: 0.8;
  margin-top: 4px;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 12, 121, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-view {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid white;
  padding: 8px 20px;
  border-radius: 50px;
}

/* ── ENROLLMENT FORM ── */
.enroll {
  background: white;
}

.enroll-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--gray-800);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 124, 110, 0.1);
}

/* Native Form Arrow Dropdown Override Fix */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.form-group:has(select)::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--green);
  pointer-events: none;
  font-size: 0.78rem;
}

.form-submit {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 124, 110, 0.35);
}

/* ── FAQ ── */
.faq {
  background: var(--gray-50);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: white;
  border-radius: 14px;
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--gradient);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); /* Safe Dynamic Auto-Height Expansion Fix */
}

.faq-item.open .faq-a {
  max-height: 1000px; /* High boundary allowance prevents calculation breaks */
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: var(--blue);
  color: white;
  padding: 70px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto 50px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-logo-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-logo-box svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  letter-spacing: 1px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--green-light);
  margin-top: 3px;
  font-size: 0.9rem;
}

.footer-contact-item span {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 1300px;
  margin: 0 auto;
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(36px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10050 !important;
  background: white;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding: 86px 7% 40px !important;
  gap: 20px !important;
  text-align: left !important;
}

.mobile-menu.open {
  display: flex !important;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  width: 100% !important;
  text-align: left !important;
}

.mobile-menu-close,
.mmclose {
  position: fixed !important;
  left: 18px !important;
  right: auto !important;
  top: 18px !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, var(--blue, #170C79), var(--green, #0A7C6E)) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  box-shadow: 0 12px 28px rgba(23, 12, 121, 0.22) !important;
  z-index: 10060 !important;
}

/* ── CONTACT PAGE ── */
.contact-page {
  background: var(--white);
}

.contact-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 70px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(10, 124, 110, 0.13), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(23, 12, 121, 0.12), transparent 30%),
    linear-gradient(160deg, rgba(23, 12, 121, 0.06) 0%, rgba(10, 124, 110, 0.07) 48%, #fff 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-hero-title {
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--blue);
  letter-spacing: -1.7px;
  margin-bottom: 22px;
}

.contact-hero-title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 34px;
}

.contact-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.shape-one { width: 470px; height: 470px; right: -140px; top: -130px; background: rgba(23, 12, 121, 0.1); filter: blur(2px); }
.shape-two { width: 290px; height: 290px; left: -100px; bottom: -90px; background: rgba(10, 124, 110, 0.12); }
.shape-three { width: 130px; height: 130px; left: 47%; top: 24%; border: 24px solid rgba(10, 124, 110, 0.1); }

.contact-hero-panel {
  min-height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-glass-card {
  width: min(100%, 440px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 28px 80px rgba(23, 12, 121, 0.16);
  position: relative;
  overflow: hidden;
}

.contact-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 124, 110, 0.12), rgba(23, 12, 121, 0.08));
  pointer-events: none;
}

.contact-glass-card>* {
  position: relative;
  z-index: 1;
}

.glass-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 18px 44px rgba(10, 124, 110, 0.27);
  margin-bottom: 22px;
}

.contact-glass-card h2 { color: var(--blue); font-size: 1.55rem; line-height: 1.28; margin-bottom: 10px; }
.contact-glass-card p { color: var(--gray-600); line-height: 1.75; font-size: 0.92rem; margin-bottom: 26px; }

.glass-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.glass-metrics div {
  background: white;
  border: 1px solid rgba(23, 12, 121, 0.08);
  border-radius: 18px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.glass-metrics strong { display: block; font-family: 'Poppins', sans-serif; color: var(--blue); font-size: 1rem; }
.glass-metrics span { color: var(--green); font-size: 0.68rem; font-weight: 700; }

.mini-orbit {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: var(--shadow-md);
  color: var(--green);
  font-size: 1.45rem;
  z-index: 3;
}

.orbit-one { top: 52px; right: 36px; }
.orbit-two { bottom: 64px; left: 34px; color: var(--blue); }

.contact-main {
  background: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-info-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 124, 110, 0.28);
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: white;
  font-size: 1.12rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-card:hover .contact-card-icon {
  transform: rotate(-6deg) scale(1.08);
}

.contact-card h3 { font-size: 1.05rem; color: var(--blue); margin-bottom: 8px; }
.contact-card a, .contact-card span { color: var(--gray-800); font-weight: 700; font-size: 0.95rem; }
.contact-card p { color: var(--gray-600); font-size: 0.88rem; line-height: 1.75; margin-top: 8px; }

.contact-form-shell {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form-shell::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(10, 124, 110, 0.08);
  right: -90px;
  top: -90px;
}

.form-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.form-topline h2 { color: var(--blue); font-size: 2rem; }

.form-top-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--green);
  box-shadow: var(--shadow-sm);
}

.premium-contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.floating-field {
  position: relative;
}

.floating-field input,
.floating-field select,
.floating-field textarea {
  width: 100%;
  min-height: 58px;
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  background: white;
  color: var(--gray-800);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 22px 18px 9px;
  outline: none;
  box-shadow: 0 1px 0 rgba(23, 12, 121, 0.02);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.floating-field textarea {
  min-height: 140px;
  resize: vertical;
  padding-top: 26px;
}

.floating-field label {
  position: absolute;
  left: 18px;
  top: 18px;
  pointer-events: none;
  color: var(--gray-600);
  font-size: 0.86rem;
  font-weight: 700;
  transition: all 0.22s ease;
}

.floating-field input:focus,
.floating-field select:focus,
.floating-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(10, 124, 110, 0.12);
  transform: translateY(-2px);
}

.floating-field input:focus+label,
.floating-field input:not(:placeholder-shown)+label,
.floating-field textarea:focus+label,
.floating-field textarea:not(:placeholder-shown)+label,
.floating-field select:focus+label,
.floating-field select:valid+label {
  top: 8px;
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.2px;
}

.select-field select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.select-field::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 21px;
  color: var(--green);
  pointer-events: none;
  font-size: 0.78rem;
}

.contact-submit {
  margin-top: 4px;
  min-height: 58px;
}

.map-section {
  background: var(--gray-50);
}

.map-wrap {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
}

.map-copy {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.map-copy .section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.map-frame {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid white;
  background: var(--gradient);
}

.map-frame iframe {
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(0.82) contrast(1.05);
  display: block;
}

.contact-faq {
  background: white;
}

.mini-faq-list {
  max-width: 860px;
}

.social-section {
  background: var(--gray-50);
  padding: 80px 5%;
}

.social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.social-inner h2 { color: var(--blue); font-size: 1.8rem; margin-bottom: 8px; }
.social-inner p { color: var(--gray-600); line-height: 1.75; max-width: 620px; font-size: 0.92rem; }

.contact-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-social-icons a {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: white;
  box-shadow: 0 12px 26px rgba(23, 12, 121, 0.13);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-social-icons a:hover {
  transform: translateY(-6px) rotate(-3deg);
  box-shadow: 0 18px 34px rgba(10, 124, 110, 0.28);
}

.contact-map-section {
  background: #ffffff;
  padding: 90px 5%;
}

.contact-map-wrap {
  position: relative;
  max-width: 1300px;
  margin: 48px auto 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(23, 12, 121, 0.08);
  box-shadow: 0 22px 60px rgba(23, 12, 121, 0.14);
  min-height: 430px;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
  filter: saturate(.95) contrast(.98);
}

.map-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-info-card { display: none !important; }

/* ── COMPLETED INNER PAGES ── */
.page-hero {
  min-height: 66vh;
  padding: 130px 5% 80px;
  background: linear-gradient(160deg, #f0f4ff 0%, #e8faf8 55%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.055;
  animation: float 9s ease-in-out infinite;
}

.page-hero::before { width: 460px; height: 460px; right: -120px; top: -150px; }
.page-hero::after { width: 280px; height: 280px; left: -80px; bottom: -90px; animation-delay: -4s; }

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px;
  border-radius: 50px;
  color: var(--green);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(10, 124, 110, 0.1);
  border: 1px solid rgba(10, 124, 110, 0.22);
  margin-bottom: 22px;
}

.page-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--blue);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-sub {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-main {
  background: white;
}

.about-detail-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.founder-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gradient);
  padding: 3px;
}

.founder-card img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-lg) - 3px);
  aspect-ratio: 1/1;
  object-fit: cover;
}

.founder-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 15px 18px;
  box-shadow: var(--shadow-md);
}

.founder-badge strong { display: block; font-family: 'Poppins', sans-serif; color: var(--blue); font-size: 1rem; }
.founder-badge span { color: var(--green); font-size: 0.78rem; font-weight: 700; }

.about-copy p {
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.96rem;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-point {
  padding: 20px;
  border-radius: 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-point:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-point i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: white;
  margin-bottom: 12px;
}

.about-point h4 { color: var(--blue); font-size: 0.96rem; margin-bottom: 6px; }
.about-point p { margin: 0; font-size: 0.82rem; line-height: 1.65; }

.features-page-section {
  background: var(--gray-50);
}

.full-feature-grid {
  max-width: 1300px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.full-feature-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.full-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 124, 110, 0.25);
}

.full-feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.full-feature-card h3 { color: var(--blue); font-size: 1.08rem; margin-bottom: 10px; }
.full-feature-card p { color: var(--gray-600); font-size: 0.86rem; line-height: 1.75; }

.process-section {
  background: white;
}

.process-grid {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
}

.process-step .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

.process-step h4 { color: var(--blue); margin-bottom: 8px; }
.process-step p { color: var(--gray-600); font-size: 0.82rem; line-height: 1.65; }

.faq-page {
  background: white;
}

.faq-category {
  max-width: 900px;
  margin: 0 auto 30px;
}

.faq-category-title {
  font-size: 1.25rem;
  color: var(--blue);
  margin: 40px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-category-title i {
  color: var(--green);
}

.faq-cta-card {
  max-width: 900px;
  margin: 50px auto 0;
  background: var(--gradient);
  color: white;
  border-radius: var(--radius-lg);
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}

.faq-cta-card h3 { font-size: 1.45rem; margin-bottom: 8px; }
.faq-cta-card p { color: rgba(255, 255, 255, 0.78); line-height: 1.7; }
.faq-cta-card .btn-white { flex-shrink: 0; }

.btn-white {
  background: white;
  color: var(--blue);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.94rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.btn-white-outline {
  border: 2px solid rgba(255, 255, 255, 0.72);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.94rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-3px);
}

.cta {
  background: var(--gradient);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 18px;
  line-height: 1.15;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 34px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── PREMIUM ANIMATED FOOTER ── */
.premium-footer {
  position: relative;
  overflow: hidden;
  padding: 88px 5% 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(10, 124, 110, 0.32), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(35, 24, 168, 0.38), transparent 34%),
    linear-gradient(135deg, #07051f 0%, #170C79 46%, #063c3a 100%);
  isolation: isolate;
}

.premium-footer-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: -2;
}

.premium-footer-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(62px);
  opacity: 0.55;
  pointer-events: none;
  animation: footerFloat 8s ease-in-out infinite;
  z-index: -1;
}

.premium-footer-orb.orb-left { width: 300px; height: 300px; left: -90px; top: -90px; background: #0A7C6E; }
.premium-footer-orb.orb-right { width: 350px; height: 350px; right: -120px; bottom: 20px; background: #2318a8; animation-delay: -3s; }
.premium-footer-line { position: absolute; top: 0; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent); }

@keyframes footerFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -24px, 0) scale(1.08); }
}

.premium-footer-grid {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.35fr;
  gap: 42px;
  padding-bottom: 64px;
}

.premium-footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.premium-footer-logo-box {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue-light) 100%);
  box-shadow: 0 16px 36px rgba(10, 124, 110, 0.35);
  animation: footerLogoPulse 3.8s ease-in-out infinite;
}

@keyframes footerLogoPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 16px 36px rgba(10, 124, 110, 0.35); }
  50% { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(10, 124, 110, 0.48); }
}

.premium-footer-logo-box svg { width: 30px; height: 30px; }

.premium-footer-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.1;
}

.premium-footer-logo small {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
}

.premium-footer-desc {
  max-width: 420px;
  margin: 0 0 24px;
  font-size: 0.86rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
}

.premium-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.premium-footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 700;
}

.premium-footer-badges i { color: var(--green-light); }

.premium-social-links {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.premium-social-links a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.premium-social-links a:hover {
  transform: translateY(-5px) rotate(-4deg);
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(10, 124, 110, 0.42);
}

.premium-footer-col h4 {
  position: relative;
  margin: 0 0 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.premium-footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-light), rgba(255, 255, 255, 0.85));
}

.premium-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.premium-footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green-light);
  transition: width 0.25s ease;
}

.premium-footer-links a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.premium-footer-links a:hover::before {
  width: 10px;
  margin-right: 8px;
}

.premium-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.premium-footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
  transition: transform 0.25s ease, color 0.25s ease;
}

.premium-footer-contact:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.premium-footer-contact i {
  width: 35px;
  height: 35px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 35px;
  background: rgba(10, 124, 110, 0.18);
  color: var(--green-light);
}

.premium-footer-cta {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.premium-footer-cta strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.premium-footer-cta p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.6;
}

.premium-footer-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(10, 124, 110, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-footer-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(10, 124, 110, 0.44);
}

.premium-footer-bottom {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  line-height: 1.6;
}

.premium-footer-bottom p { margin: 0; }

/* ── MOUSE EFFECTS & WHATSAPP FLOATING ── */
.site-mouse-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(10, 124, 110, 0.16) 0%, rgba(23, 12, 121, 0.08) 38%, transparent 70%);
  filter: blur(6px);
  transition: opacity 0.25s ease;
  mix-blend-mode: multiply;
}

body.whatsapp-mouse-active .site-mouse-glow {
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 26px;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 18px 42px rgba(10, 124, 110, 0.38), 0 6px 18px rgba(23, 12, 121, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.36);
  isolation: isolate;
  overflow: visible;
  transform: translateZ(0);
  animation: whatsappFloatIn 0.85s ease both, whatsappBob 3.8s ease-in-out infinite 1s;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03));
  z-index: -1;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(10, 124, 110, 0.32), rgba(23, 12, 121, 0.18));
  z-index: -2;
  opacity: 0;
  transform: scale(0.85);
  filter: blur(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float i {
  font-size: 2rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.whatsapp-ring {
  position: absolute;
  inset: -8px;
  border-radius: 26px;
  border: 1.5px solid rgba(10, 124, 110, 0.45);
  animation: whatsappPulse 2.4s ease-out infinite;
  z-index: -3;
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translate(12px, -50%);
  background: #ffffff;
  color: var(--blue);
  padding: 10px 15px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(23, 12, 121, 0.14);
  border: 1px solid rgba(10, 124, 110, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-right: 1px solid rgba(10, 124, 110, 0.16);
  border-bottom: 1px solid rgba(10, 124, 110, 0.16);
  transform: translateY(-50%) rotate(-45deg);
}

.whatsapp-float:hover { border-radius: 50%; box-shadow: 0 24px 54px rgba(10, 124, 110, 0.48), 0 10px 24px rgba(23, 12, 121, 0.22); }
.whatsapp-float:hover::after { opacity: 1; transform: scale(1); }
.whatsapp-float:hover i { transform: rotate(-8deg) scale(1.12); }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; transform: translate(0, -50%); }

@keyframes whatsappFloatIn { from { opacity: 0; transform: translateY(26px) scale(0.82); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes whatsappBob { 0%, 100% { margin-bottom: 0; } 50% { margin-bottom: 8px; } }
@keyframes whatsappPulse { 0% { transform: scale(0.82); opacity: 0.72; } 70% { transform: scale(1.35); opacity: 0; } 100% { transform: scale(1.35); opacity: 0; } }

/* ── PREMIUM HOME HERO ── */
.premium-home-hero {
  min-height: 100vh;
  padding: 118px 5% 72px;
  background:
    radial-gradient(circle at 10% 18%, rgba(10, 124, 110, 0.14), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(23, 12, 121, 0.13), transparent 34%),
    linear-gradient(160deg, #f3f6ff 0%, #e9fbf8 48%, #ffffff 100%);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 12, 121, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 12, 121, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 90%);
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  background: var(--gradient);
  opacity: 0.08;
  filter: blur(2px);
  animation: heroDrift 9s ease-in-out infinite;
}

.hero-shape-1 { width: 120px; height: 120px; right: 43%; top: 21%; }
.hero-shape-2 { width: 68px; height: 68px; right: 8%; bottom: 18%; animation-delay: -3s; }

@keyframes heroDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(18px, -22px, 0) rotate(8deg); }
}

.premium-hero-content {
  position: relative;
  z-index: 2;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 72px;
}

.premium-hero-badge {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 124, 110, 0.2);
  box-shadow: 0 12px 30px rgba(23, 12, 121, 0.08);
  backdrop-filter: blur(14px);
}

.premium-hero-title {
  font-size: clamp(2.45rem, 5.4vw, 4.9rem);
  letter-spacing: -2.2px;
  line-height: 1.03;
  max-width: 720px;
}

.premium-hero-sub {
  font-size: 1.08rem;
  max-width: 610px;
}

.premium-hero-buttons .btn-primary,
.premium-hero-buttons .btn-secondary {
  min-height: 52px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 12, 121, 0.07);
  box-shadow: 0 8px 22px rgba(23, 12, 121, 0.06);
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-trust-item i { color: var(--green); }
.premium-hero-stats { gap: 16px; margin-top: 34px; }

.hero-stat-card {
  min-width: 138px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 12, 121, 0.07);
  box-shadow: 0 12px 32px rgba(23, 12, 121, 0.08);
  backdrop-filter: blur(16px);
  text-align: left;
}

.hero-stat-card .stat-num { font-size: 1.65rem; }
.hero-stat-card .stat-label { line-height: 1.35; }
.premium-hero-visual { min-height: 560px; perspective: 1200px; }

.premium-learning-card {
  position: relative;
  width: min(100%, 560px);
  min-height: 520px;
  border-radius: 34px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(23, 12, 121, 0.16);
  backdrop-filter: blur(18px);
  animation: premiumHeroFloat 7s ease-in-out infinite;
}

@keyframes premiumHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-image-card {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(23, 12, 121, 0.14);
  background: var(--gradient);
  margin-bottom: 22px;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.premium-learning-card:hover .hero-image-card img {
  transform: scale(1.09);
}

.image-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(23, 12, 121, 0.58) 100%);
}

.live-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d9e8d;
  box-shadow: 0 0 0 6px rgba(13, 158, 141, 0.18);
  animation: pulse 2s infinite;
}

.learning-dashboard {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 12, 121, 0.07);
  box-shadow: 0 24px 60px rgba(23, 12, 121, 0.16);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-head p {
  margin: 0 0 3px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.dashboard-head h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.12rem;
  line-height: 1.2;
}

.dashboard-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(10, 124, 110, 0.25);
}

.skill-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.skill-pill-row span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 124, 110, 0.09);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
}

.premium-progress-block {
  margin-top: 13px;
}

.premium-progress-block .progress-bar {
  height: 7px;
  background: rgba(23, 12, 121, 0.08);
}

.premium-float-card {
  border: 1px solid rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.premium-float-card strong,
.premium-float-card span {
  display: block;
  line-height: 1.15;
}

.premium-float-card span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-top: 3px;
}

.floating-badge.fb1.premium-float-card { top: 38px; right: -16px; }
.floating-badge.fb2.premium-float-card { bottom: 72px; left: -22px; }

/* ── UPDATED HUB LAYOUTS ── */
.hero-right-updated {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-success-hub {
  position: relative;
  width: min(100%, 560px);
  min-height: 535px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.mission-vision-section {
    padding: 20px 0;
    background-color: #f0f4f8;
    text-align: center;
}

.mission-vision-section h2,
.mission-vision-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1d4a96;
    margin-bottom: 15px;
}

.mission-vision-section p {
    font-size: 1.1rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.mission-vision-section .mv-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333333;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.mission-vision-section .mv-card-highlight h3,
.mission-vision-section .mv-card-highlight p {
    color: #ffffff;
}

.cta-image-card {
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(250,250,255,1), rgba(240,248,255,1));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(8,30,60,0.06);
}

.cta-image-card img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: translateX(8%);
  transition: transform .6s cubic-bezier(.2,.9,.3,1);
}

.cta-section:hover .cta-image-card img {
  transform: translateX(0) scale(1.02);
}

.hero-cta-section {
  padding: 64px 18px;
  background: #f8fafc;
  margin-top: 40px;
}

.hero-cta-inner { max-width: 1180px; margin: 0 auto; }

.hero-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero-cta-image .image-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8,30,60,0.08);
}

.hero-cta-image img,
.hero-cta-image video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-cta-image .taha-azmi-video {
  max-width: 100%;
  object-fit: cover;
}

.hero-cta-image:hover .image-frame { transform: translateY(-6px); transition: transform .36s ease; }
.hero-cta-content h2 { font-size: 2rem; margin-top: 6px; margin-bottom: 10px; color: var(--blue); }
.hero-cta-content p { color: var(--gray-700); line-height: 1.7; }
.hero-cta-content .nav-cta { padding: 12px 28px; margin-top: 20px; }

.mv-cards { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; justify-content: flex-start; }
.mv-card { background: #f6fbff; padding: 30px; border-radius: 15px; box-shadow: 0 12px 30px rgba(8,30,60,0.04); color: #22313f; }
.mv-card h3 { margin: 0 0 8px; font-size: 1rem; color: #0b3a66; }
.mv-card p { margin: 0; color: #30414a; font-size: 0.94rem; }
.mv-card-highlight { background: linear-gradient(135deg, var(--blue), var(--green)); color: #fff; }

.cta-section {
  padding: 80px 18px;
  background: linear-gradient(135deg, rgba(10,124,110,0.06), rgba(58,41,123,0.04));
  position: relative;
  overflow: visible;
}

.cta-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 30% 30%, rgba(10,124,110,0.12), transparent 40%), radial-gradient(circle at 70% 70%, rgba(58,41,123,0.08), transparent 40%);
  filter: blur(44px);
  transform: rotate(15deg);
  border-radius: 50%;
  pointer-events: none;
}

.cta-text {
  padding: 40px 36px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,255,0.95));
  box-shadow: 0 30px 60px rgba(23,12,121,0.10);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta-text h2 { font-size: 2.1rem; margin: 0 0 12px; color: var(--blue); line-height: 1.15; }
.cta-text p { margin-bottom: 20px; color: var(--gray-700); line-height: 1.7; }

/* ── REVIEWS CAROUSEL ── */
.certification-carousel {
  padding: 56px 18px 46px;
  background: #f8fbff;
}

.certification-carousel .section-header {
  margin-bottom: 28px;
}

.cert-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.cert-gallery-item {
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(10,124,110,0.14);
  box-shadow: 0 22px 58px rgba(10,124,110,0.08);
  text-align: center;
}

.cert-gallery-item .cert-image {
  min-height: 220px;
  background: linear-gradient(135deg, rgba(10,124,110,0.08), rgba(42,147,152,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.94rem;
}

.cert-gallery-item .cert-caption {
  padding: 22px 20px 24px;
}

.cert-gallery-item .cert-caption span {
  display: block;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cert-gallery-item .cert-caption strong {
  display: block;
  color: var(--blue);
  font-size: 1.03rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.cert-gallery-item .cert-caption small {
  color: var(--gray-600);
  font-size: 0.84rem;
}

.hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10, 124, 110, 0.18);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18));
  box-shadow: inset 0 0 35px rgba(23, 12, 121, 0.05), 0 20px 60px rgba(23, 12, 121, 0.08);
  animation: hubOrbit 10s linear infinite;
}

.hub-ring-one { width: 470px; height: 470px; }
.hub-ring-two { width: 340px; height: 340px; animation-direction: reverse; animation-duration: 14s; border-color: rgba(23, 12, 121, 0.14); }

@keyframes hubOrbit {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.035); }
  100% { transform: rotate(360deg) scale(1); }
}

.hub-main-card {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.93));
  border: 1px solid rgba(10, 124, 110, 0.16);
  box-shadow: 0 42px 110px rgba(23, 12, 121, 0.18);
  backdrop-filter: blur(22px);
  animation: hubFloat 6.5s ease-in-out infinite;
}

@keyframes hubFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-12px) rotateX(2deg); }
}

.hub-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.hub-card-top h3 { margin: 0; color: var(--blue); font-size: 1.55rem; line-height: 1.15; }
.hub-main-copy { margin: 12px 0 0; color: var(--gray-700); font-size: 0.95rem; line-height: 1.6; max-width: 88%; }

.hub-main-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 16px 35px rgba(10, 124, 110, 0.28);
  flex-shrink: 0;
}

.hub-course-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.hub-course-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px 14px;
  border-radius: 18px;
  background: rgba(248, 249, 250, 0.92);
  border: 1px solid rgba(23, 12, 121, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hub-course-item:hover,
.hub-course-item.active {
  transform: translateX(5px);
  background: rgba(10, 124, 110, 0.07);
  box-shadow: 0 12px 28px rgba(23, 12, 121, 0.08);
}

.hub-course-item i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10, 124, 110, 0.12), rgba(23, 12, 121, 0.10));
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-course-item strong { display: block; color: var(--blue); font-family: 'Poppins', sans-serif; font-size: 0.88rem; line-height: 1.2; }
.hub-course-item span { display: block; margin-top: 3px; color: var(--gray-600); font-size: 0.72rem; font-weight: 600; }
.hub-course-item em { font-style: normal; color: var(--green); font-weight: 900; font-size: 0.82rem; }

.hub-mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.hub-card-highlights, .hub-card-highlights-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.hub-card-highlights div, .hub-card-highlights-secondary div { padding: 14px 12px; border-radius: 16px; background: rgba(10, 124, 110, 0.08); border: 1px solid rgba(10, 124, 110, 0.12); }
.hub-card-highlights strong, .hub-card-highlights-secondary strong { display: block; color: var(--blue); font-size: 0.92rem; margin-bottom: 4px; }
.hub-card-highlights span, .hub-card-highlights-secondary span { font-size: 0.78rem; color: var(--gray-600); line-height: 1.45; }
.hub-mini-stats div { padding: 13px 10px; border-radius: 16px; background: linear-gradient(135deg, rgba(23, 12, 121, 0.07), rgba(10, 124, 110, 0.08)); text-align: center; }
.hub-mini-stats strong { display: block; color: var(--blue); font-family: 'Poppins', sans-serif; font-size: 1.05rem; }
.hub-mini-stats span { color: var(--gray-600); font-size: 0.68rem; font-weight: 700; }

.hub-floating-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(23, 12, 121, 0.13);
  backdrop-filter: blur(16px);
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  animation: hubBadgeFloat 4.8s ease-in-out infinite;
}

.hub-floating-card i { color: var(--green); }
.hub-float-one { top: 34px; right: 10px; }
.hub-float-two { left: 0; bottom: 106px; animation-delay: -1.3s; }
.hub-float-three { right: 34px; bottom: 38px; animation-delay: -2.2s; }

@keyframes hubBadgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.about-premium-visual { display: flex; align-items: center; justify-content: center; min-height: 540px; }
.about-learning-card { width: min(100%, 540px); min-height: 500px; }

.form-success-message {
  display: none;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(10, 124, 110, .09);
  border: 1.5px solid rgba(10, 124, 110, .22);
  color: var(--blue);
}

.form-success-message.show { display: flex; }
.form-success-message i { color: var(--green); font-size: 1.35rem; margin-top: 2px; }
.form-success-message strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1rem; margin-bottom: 3px; }
.form-success-message span { display: block; color: var(--gray-600); font-size: .86rem; line-height: 1.55; }

/* ── REVENUE DEPLOYMENT BLOG MATRIX ── */
.blog-preview {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.blog-preview::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10, 124, 110, .08), rgba(23, 12, 121, .08));
  pointer-events: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 1;
}

.blog-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.blog-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 124, 110, .24);
}

.blog-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.blog-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 124, 110, .11), rgba(23, 12, 121, .11));
  color: var(--green);
  font-size: 1.2rem;
  transition: all .3s;
}

.blog-card:hover .blog-icon {
  background: var(--gradient);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.blog-category {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--green);
  background: rgba(10, 124, 110, .09);
  padding: 6px 12px;
  border-radius: 50px;
}

.blog-card h3 { color: var(--blue); font-size: 1.08rem; line-height: 1.35; margin-bottom: 12px; font-weight: 800; }
.blog-card p { color: var(--gray-600); font-size: .85rem; line-height: 1.75; margin-bottom: 20px; }

.blog-card .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: .84rem;
  transition: all .25s;
}

.blog-card .blog-read-more:hover { color: var(--green); gap: 12px; }
.blog-preview-action { text-align: center; margin-top: 38px; }

.blog-hero {
  min-height: 56vh;
  padding: 135px 5% 80px;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(155deg, #f0f4ff 0%, #e8faf8 55%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.blog-hero::before,
.blog-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: .06;
}

.blog-hero::before { width: 460px; height: 460px; right: -130px; top: -140px; }
.blog-hero::after { width: 260px; height: 260px; left: -80px; bottom: -80px; }

.blog-hero-inner { max-width: 850px; margin: 0 auto; position: relative; z-index: 2; }
.blog-list-section { background: #fff; }
.blog-list { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 980px; margin: 0 auto; }

.blog-article-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}

.blog-article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 124, 110, .24);
}

.blog-article-card h2 { color: var(--blue); font-size: 1.45rem; margin-bottom: 12px; }

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.blog-article-meta span {
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(10, 124, 110, .09);
  padding: 6px 12px;
  border-radius: 50px;
}

.blog-article-card p { color: var(--gray-600); line-height: 1.85; font-size: .92rem; margin-bottom: 14px; }
.blog-preview-updated { padding-top: 95px; padding-bottom: 95px; }

.blog-grid.blog-home-grid,
.blog-grid.blog-page-grid {
  width: min(1180px, 90%);
  margin-left: auto;
  margin-right: auto;
}

.blog-card.blog-image-card {
  min-width: 0;
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  display: block;
  height: 215px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 124, 110, .08), rgba(23, 12, 121, .08));
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease, filter .45s ease;
}

.blog-image-card:hover .blog-card-image img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.02);
}

.blog-card-content {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-content .blog-card-top {
  margin-bottom: 16px;
}

.blog-read-time {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read-time i { color: var(--green); font-size: .68rem; }
.blog-image-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.08rem; line-height: 1.35; color: var(--blue); margin-bottom: 12px; }
.blog-image-card p { font-size: .84rem; line-height: 1.75; color: var(--gray-600); margin-bottom: 22px; overflow-wrap: anywhere; }

.blog-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: 'Poppins', sans-serif;
  font-size: .84rem;
  font-weight: 800;
  color: var(--blue);
  transition: all .25s ease;
}

.blog-read-more:hover { color: var(--green); gap: 12px; }
.blog-grid-page-section { background: #ffffff; padding-top: 90px; padding-bottom: 95px; }

.single-blog-hero {
  padding: 135px 5% 80px;
  background: linear-gradient(160deg, #f0f4ff 0%, #e8faf8 58%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.single-blog-hero::before,
.single-blog-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: .06;
  pointer-events: none;
}

.single-blog-hero::before { width: 440px; height: 440px; top: -170px; right: -120px; }
.single-blog-hero::after { width: 260px; height: 260px; bottom: -90px; left: -70px; }
.single-blog-hero-inner { max-width: 920px; text-align: center; position: relative; z-index: 2; }

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
  font-size: .86rem;
  margin-bottom: 24px;
}

.single-blog-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.single-blog-meta span {
  font-size: .72rem;
  font-weight: 800;
  color: var(--green);
  background: rgba(10, 124, 110, .1);
  border: 1px solid rgba(10, 124, 110, .18);
  border-radius: 999px;
  padding: 7px 13px;
}

.single-blog-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  line-height: 1.12;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 18px;
}

.single-blog-hero p {
  max-width: 740px;
  margin: 0 auto;
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1.02rem;
}

.single-blog-section {
  background: #fff;
  padding: 90px 5%;
}

.single-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}

.single-blog-content {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.single-blog-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 30px;
  border: 1px solid var(--gray-200);
}

.single-blog-content p {
  color: var(--gray-600);
  line-height: 1.9;
  font-size: .96rem;
  margin-bottom: 18px;
}

.single-blog-cta {
  margin-top: 34px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(10, 124, 110, .1), rgba(23, 12, 121, .1));
  border: 1px solid rgba(10, 124, 110, .16);
}

.single-blog-cta h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 8px;
}

.single-blog-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.single-blog-sidebar h3,
.single-blog-advisor h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 14px;
}

.single-blog-related,
.single-blog-advisor {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 22px;
  padding: 22px;
}

.single-blog-related a {
  display: block;
  color: var(--gray-600);
  font-size: .86rem;
  line-height: 1.55;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color .25s, padding-left .25s;
}

.single-blog-related a:last-child { border-bottom: none; }
.single-blog-related a:hover { color: var(--green); padding-left: 6px; }

.single-blog-advisor p {
  color: var(--gray-600);
  font-size: .84rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.single-blog-advisor a {
  display: inline-flex;
  color: #fff;
  background: var(--gradient);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .8rem;
}

/* ─────────────────────────────────────────────
    RESPONSIVE MEDIA QUERIES
 ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .premium-footer-grid,
  .blog-grid.blog-page-grid,
  .blog-grid.blog-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-blog-layout {
    grid-template-columns: 1fr;
  }
  .single-blog-sidebar {
    position: static;
  }
}

@media (max-width: 1024px) {
  .courses-grid,
  .features-grid,
  .portfolio-grid,
  .stats-inner,
  .about-detail-grid,
  .full-feature-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .contact-hero-grid,
  .contact-layout,
  .map-wrap {
    grid-template-columns: 1fr;
  }
  .contact-hero-panel {
    min-height: 420px;
  }
  .social-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-social-icons {
    justify-content: flex-start;
  }
  .premium-hero-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .premium-hero-visual {
    min-height: 540px;
  }
  .hero-success-hub {
    min-height: 500px;
  }
  .about-premium-visual {
    min-height: 520px;
  }
}

@media (max-width: 980px) {
  .cta-grid,
  .hero-cta-grid {
    grid-template-columns: 1fr;
  }
  .cta-image-card {
    order: -1;
    min-height: 300px;
  }
  .cta-text {
    padding: 28px 22px;
  }
  .cta-text h2 {
    font-size: 1.6rem;
  }
  .mv-cards {
    justify-content: center;
  }
  .hero-cta-content {
    text-align: center;
  }

  .hero-cta-image .image-frame,
  .hero-cta-image .taha-azmi-video {
    width: 100%;
  }
}

@media (max-width: 768px) {
  nav .nav-links,
  nav .nav-cta,
  .hero-visual,
  .about-visual,
  .form-top-icon {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-grid,
  .courses-grid,
  .features-grid,
  .testi-grid,
  .why-grid,
  .about-points,
  .full-feature-grid,
  .process-grid,
  .blog-list,
  .blog-grid.blog-page-grid,
  .blog-grid.blog-home-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row,
  .footer-grid,
  .premium-footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero {
    min-height: auto;
    padding-top: 110px;
  }
  .contact-hero-grid {
    gap: 38px;
  }
  .contact-hero-panel {
    display: none;
  }
  .contact-layout {
    gap: 22px;
  }
  .contact-form-shell {
    padding: 24px;
    border-radius: 22px;
  }
  .form-topline {
    align-items: flex-start;
  }
  .map-frame,
  .map-frame iframe,
  .contact-map-wrap,
  .contact-map-wrap iframe {
    min-height: 340px;
    height: 340px;
  }
  .social-section,
  .contact-map-section,
  .premium-footer {
    padding: 60px 5%;
  }
  .premium-footer {
    padding-top: 66px;
  }
  .premium-footer-desc,
  .premium-footer-bottom {
    max-width: 100%;
    flex-direction: column;
    text-align: center;
  }
  .page-hero {
    padding-top: 110px;
    min-height: auto;
  }
  .faq-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-cta-card .btn-white {
    width: 100%;
    justify-content: center;
  }
  .founder-badge {
    left: 16px;
    bottom: 16px;
    right: 16px;
  }
  .contact-social-icons {
    padding-bottom: 20px;
  }
  .premium-home-hero {
    padding-top: 112px;
    min-height: auto;
  }
  .hero-visual.premium-hero-visual,
  .about-visual.about-premium-visual {
    display: flex;
  }
  .premium-hero-title {
    letter-spacing: -1px;
  }
  .premium-hero-buttons .btn-primary,
  .premium-hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stat-card {
    flex: 1 1 120px;
  }
  .premium-learning-card {
    min-height: 470px;
  }
  .hero-image-card {
    width: 72%;
    height: 350px;
  }
  .learning-dashboard {
    width: 82%;
    padding: 20px;
  }
  .floating-badge.fb1.premium-float-card { right: 4px; top: 24px; }
  .floating-badge.fb2.premium-float-card { left: 4px; bottom: 42px; }
  .hero-success-hub {
    min-height: 470px;
    width: 100%;
  }
  .hub-ring-one { width: 390px; height: 390px; }
  .hub-ring-two { width: 280px; height: 280px; }
  .hub-main-card { width: min(100%, 390px); padding: 22px; }
  .hub-floating-card { font-size: 0.72rem; padding: 10px 13px; }
  .hub-float-one { top: 16px; right: 0; }
  .hub-float-two { left: 0; bottom: 70px; }
  .hub-float-three { right: 10px; bottom: 18px; }
  .blog-card-image { height: 200px; }
  .single-blog-hero { padding: 115px 5% 65px; }
  .single-blog-section { padding: 65px 5%; }
  .single-blog-content { padding: 22px; }
}

@media (max-width: 680px) {
  .cta-text h2 { font-size: 1.4rem; }
  .cta-image-card { min-height: 220px; }
  .blog-card, .blog-article-card { padding: 24px; }
  .blog-hero { min-height: 48vh; padding-top: 120px; }
}

@media (max-width: 480px) {
  .stats-inner,
  .cert-gallery {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  section,
  .blog-preview-updated,
  .blog-grid-page-section {
    padding: 60px 5%;
  }
  .blog-preview-updated,
  .blog-grid-page-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .enroll-wrap {
    padding: 30px 20px;
  }
  .contact-card {
    padding: 20px;
    border-radius: 18px;
  }
  .contact-card-icon {
    width: 48px;
    height: 48px;
  }
  .contact-form-shell,
  .social-inner,
  .blog-card-content {
    padding: 20px;
  }
  .contact-hero-actions .btn-primary,
  .contact-hero-actions .btn-secondary,
  .cta-buttons .btn-white,
  .cta-buttons .btn-white-outline {
    width: 100%;
    justify-content: center;
  }
  .glass-metrics {
    grid-template-columns: 1fr;
  }
  .premium-home-hero {
    padding-bottom: 50px;
  }
  .hero-trust-item {
    width: 100%;
    justify-content: center;
  }
  .premium-hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-stat-card {
    text-align: center;
  }
  .hero-visual.premium-hero-visual {
    min-height: 430px;
  }
  .premium-learning-card {
    min-height: 410px;
    border-radius: 26px;
    padding: 12px;
  }
  .hero-image-card {
    left: 12px;
    top: 12px;
    width: calc(100% - 24px);
    height: 230px;
    border-radius: 22px;
  }
  .learning-dashboard {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
    border-radius: 22px;
  }
  .premium-float-card,
  .hub-floating-card {
    display: none !important;
  }
  .hero-success-hub {
    min-height: 440px;
    overflow: hidden;
  }
  .hub-ring-one { width: 320px; height: 320px; }
  .hub-ring-two { width: 230px; height: 230px; }
  .hub-main-card { padding: 18px; border-radius: 26px; }
  .hub-card-top h3 { font-size: 1.28rem; }
  .hub-course-item { grid-template-columns: 38px 1fr auto; gap: 9px; padding: 10px; }
  .hub-course-item i { width: 38px; height: 38px; }
  .hub-mini-stats { grid-template-columns: 1fr; }
  .about-premium-visual { min-height: 430px; }
  .about-learning-card { min-height: 410px; }
  .form-success-message { align-items: flex-start; }
  .blog-card-content .blog-card-top { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .premium-footer-orb,
  .premium-footer-logo-box,
  .whatsapp-float,
  .whatsapp-ring,
  .floating-social-bar {
    animation: none !important;
  }
  .site-mouse-glow {
    display: none !important;
  }
}

/* ── Updated Taha Azmi AI Learning Institute Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
.site-logo-img {
  height: 54px;
  width: auto;
  max-width: 238px;
  object-fit: contain;
  display: block;
}
.premium-footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(10, 124, 110, 0.22);
  margin-bottom: 22px;
}
.footer-logo-img {
  height: 62px;
  width: auto;
  max-width: 270px;
  object-fit: contain;
  display: block;
}
@media (max-width: 980px) {
  .site-logo-img { height: 48px; max-width: 205px; }
  .footer-logo-img { height: 56px; max-width: 230px; }
}
@media (max-width: 560px) {
  .site-logo-img { height: 42px; max-width: 175px; }
  .footer-logo-img { height: 48px; max-width: 205px; }
}

/* ── Header / Footer Logo + Favicon Update ── */
.site-logo-img {
  height: 56px !important;
  width: auto !important;
  max-width: 280px !important;
  object-fit: contain !important;
  display: block !important;
}
.premium-footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  margin-bottom: 22px !important;
  text-decoration: none !important;
}
.footer-logo-img {
  height: 60px !important;
  width: auto !important;
  max-width: 320px !important;
  object-fit: contain !important;
  display: block !important;
}
.admin-auth-brand.site-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  margin-bottom: 22px !important;
  text-decoration: none !important;
}
.auth-logo-img {
  height: 70px !important;
  width: auto !important;
  max-width: 300px !important;
  object-fit: contain !important;
  display: block !important;
}
@media (max-width: 980px) {
  .site-logo-img { height: 50px !important; max-width: 235px !important; }
  .footer-logo-img { height: 54px !important; max-width: 280px !important; }
  .auth-logo-img { height: 62px !important; max-width: 260px !important; }
}
@media (max-width: 560px) {
  .site-logo-img { height: 44px !important; max-width: 190px !important; }
  .footer-logo-img { height: 48px !important; max-width: 230px !important; }
  .auth-logo-img { height: 54px !important; max-width: 220px !important; }
}



/* ─────────────────────────────────────────────
   RESPONSIVE FIXES: full home hero image + safe button text
   Added for mobile/tablet upload build
───────────────────────────────────────────── */
.nav-cta,
.btn-primary,
.btn-secondary,
.btn-white,
.btn-white-outline,
.course-btn,
.form-submit,
.home-btn,
.contact-submit,
a.btn-primary,
a.btn-secondary,
a.btn-white,
a.btn-white-outline {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  line-height: 1.25;
  justify-content: center;
}

.nav-cta,
.btn-primary,
.btn-secondary,
.btn-white,
.btn-white-outline,
.course-btn,
.home-btn,
a.btn-primary,
a.btn-secondary,
a.btn-white,
a.btn-white-outline {
  display: inline-flex;
  align-items: center;
}

.course-meta {
  align-items: center;
}

.course-mode-tag {
  color: var(--blue);
  background: rgba(23, 12, 121, 0.08);
  border-color: rgba(23, 12, 121, 0.16);
}

@media (max-width: 1024px) {
  .premium-home-hero .about-visual.about-premium-visual {
    display: flex !important;
    width: 100%;
    min-height: auto;
    margin-top: 4px;
  }

  .premium-home-hero .premium-learning-card.about-learning-card {
    width: min(100%, 560px);
    min-height: auto;
    margin: 0 auto;
  }

  .premium-home-hero .about-learning-card .hero-image-card {
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 0 20px 0;
    border-radius: 26px;
  }

  .premium-home-hero .about-learning-card .hero-image-card img,
  .premium-home-hero .about-learning-card:hover .hero-image-card img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .premium-home-hero .about-learning-card .learning-dashboard {
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    position: relative;
  }
}

@media (max-width: 768px) {
  .premium-home-hero .about-visual.about-premium-visual {
    display: flex !important;
  }

  .hero-buttons,
  .premium-hero-buttons,
  .contact-hero-actions,
  .cta-buttons,
  .course-modal-actions {
    width: 100%;
  }

  .hero-buttons .nav-cta,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary,
  .premium-hero-buttons .nav-cta,
  .premium-hero-buttons .btn-primary,
  .premium-hero-buttons .btn-secondary,
  .contact-hero-actions .btn-primary,
  .contact-hero-actions .btn-secondary,
  .cta-buttons .btn-white,
  .cta-buttons .btn-white-outline,
  .faq-cta-card .btn-white,
  .course-btn,
  .form-submit,
  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .nav-cta,
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-white-outline,
  .course-btn,
  .form-submit,
  .home-btn,
  .contact-submit,
  a.btn-primary,
  a.btn-secondary,
  a.btn-white,
  a.btn-white-outline {
    font-size: clamp(0.78rem, 3.35vw, 0.92rem);
    padding-left: 18px;
    padding-right: 18px;
  }

  .premium-home-hero .premium-learning-card.about-learning-card {
    padding: 12px;
    border-radius: 24px;
  }

  .premium-home-hero .about-learning-card .hero-image-card {
    border-radius: 20px;
    margin-bottom: 14px;
  }

  .premium-home-hero .about-learning-card .learning-dashboard {
    padding: 18px;
    border-radius: 20px;
  }
}


/* ─────────────────────────────────────────────
   FOLLOW-UP RESPONSIVE FIXES
   - Show about-page visual on mobile/tablet
   - Keep two-button groups in one row / two columns
   - Keep stats-band as 2 rows / 2 columns
   - Reduce mobile/tablet button padding
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about .hero-visual.premium-hero-visual,
  .about-grid > .hero-visual.premium-hero-visual,
  .about .about-visual.about-premium-visual,
  .premium-home-hero .about-visual.about-premium-visual {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
  }

  .about .hero-success-hub,
  .about-grid > .hero-visual.premium-hero-visual .hero-success-hub {
    width: 100% !important;
    min-height: 430px !important;
    margin: 0 auto 22px !important;
  }

  .premium-learning-card.about-learning-card {
    width: min(100%, 560px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .premium-learning-card.about-learning-card .hero-image-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 0 18px !important;
    overflow: hidden !important;
  }

  .premium-learning-card.about-learning-card .hero-image-card img,
  .premium-learning-card.about-learning-card:hover .hero-image-card img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .premium-learning-card.about-learning-card .learning-dashboard {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
  }

  .stats-band {
    padding: 42px 5% !important;
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .nav-cta,
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-white-outline,
  .course-btn,
  .form-submit,
  .home-btn,
  .contact-submit,
  a.btn-primary,
  a.btn-secondary,
  a.btn-white,
  a.btn-white-outline {
    padding-left: 14px !important;
    padding-right: 14px !important;
    min-height: 42px !important;
    line-height: 1.15 !important;
    gap: 6px !important;
  }

  .hero-buttons:has(> :nth-child(2)),
  .premium-hero-buttons:has(> :nth-child(2)),
  .contact-hero-actions:has(> :nth-child(2)),
  .cta-buttons:has(> :nth-child(2)) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: stretch !important;
    justify-content: stretch !important;
  }

  .premium-hero-buttons:has(> :nth-child(2)) {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-buttons:has(> :nth-child(2)) > *,
  .premium-hero-buttons:has(> :nth-child(2)) > *,
  .contact-hero-actions:has(> :nth-child(2)) > *,
  .cta-buttons:has(> :nth-child(2)) > * {
    width: 100% !important;
    min-width: 0 !important;
    padding: 10px 10px !important;
    font-size: clamp(0.72rem, 2.2vw, 0.9rem) !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .about .hero-visual.premium-hero-visual,
  .about-grid > .hero-visual.premium-hero-visual,
  .about .about-visual.about-premium-visual,
  .premium-home-hero .about-visual.about-premium-visual {
    display: flex !important;
  }

  .about .hero-success-hub,
  .about-grid > .hero-visual.premium-hero-visual .hero-success-hub {
    min-height: 410px !important;
  }

  .hub-main-card {
    width: min(100%, 390px) !important;
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .premium-hero-buttons .nav-cta,
  .premium-hero-buttons .btn-primary,
  .premium-hero-buttons .btn-secondary,
  .contact-hero-actions .btn-primary,
  .contact-hero-actions .btn-secondary,
  .cta-buttons .btn-white,
  .cta-buttons .btn-white-outline {
    width: 100% !important;
  }
}

@media (max-width: 560px) {
  .hero-buttons:has(> :nth-child(2)),
  .premium-hero-buttons:has(> :nth-child(2)),
  .contact-hero-actions:has(> :nth-child(2)),
  .cta-buttons:has(> :nth-child(2)) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .hero-buttons:has(> :nth-child(2)) > *,
  .premium-hero-buttons:has(> :nth-child(2)) > *,
  .contact-hero-actions:has(> :nth-child(2)) > *,
  .cta-buttons:has(> :nth-child(2)) > * {
    padding: 9px 8px !important;
    min-height: 40px !important;
    font-size: clamp(0.68rem, 3vw, 0.82rem) !important;
  }

  .stats-band {
    padding: 34px 5% !important;
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .stats-num {
    font-size: clamp(1.55rem, 8vw, 2.35rem) !important;
  }

  .stats-label {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
  }

  .about .hero-success-hub,
  .about-grid > .hero-visual.premium-hero-visual .hero-success-hub {
    min-height: 390px !important;
  }
}
