@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ============================================
   SHARED THEME VARIABLES
============================================ */
:root {
  --navy: #14123B;
  --indigo: #4338CA;
  --blue: #2563EB;
  --purple: #9333EA;
  --lavender-bg: #F3F1FB;
  --card-bg: #FFFFFF;
  --text-dark: #1B1740;
  --text-muted: #5B5779;
  --border-soft: #E4E1F5;
  --star: #FFC72C;
}

body {
  font-family: 'Poppins', sans-serif;
  background: transparent;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-color: #f0f2ff;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(147, 51, 234, 0.12), transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(79, 70, 229, 0.14), transparent 40%),
    linear-gradient(to right, rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #f0f2ff 0%, #f7f2ff 100%);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px, 100% 100%;
  color: #1e1b3a;
  padding: 40px 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at -5% -10%, rgba(79, 70, 229, 0.10), transparent 30%),
    radial-gradient(circle at 105% 110%, rgba(147, 51, 234, 0.10), transparent 30%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: #6366f1;
  top: -80px;
  left: -80px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: #a855f7;
  bottom: -120px;
  right: -100px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.05); }
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.hero-left {
  position: relative;
  flex-shrink: 0;
}

.image-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 60%, rgba(147, 51, 234, 0.18), rgba(79, 70, 229, 0.1) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  border-radius: 50%;
}

.hero-left img {
  position: relative;
  z-index: 2;
  width: 450px;
  max-width: 100%;
  filter: drop-shadow(0 20px 50px rgba(79, 70, 229, 0.25));
}

@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.hero-orbit-ring { display: none; }

.hero-float-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12), 0 2px 8px rgba(0,0,0,0.06);
  white-space: nowrap;
}

.badge-icon {
  font-size: 20px;
  line-height: 1;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e1b3a;
  line-height: 1.2;
}

.badge-sub {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.2;
}

.badge-top-left {
  top: 10%;
  left: -20px;
  animation: floatBadge1 4s ease-in-out infinite;
}

.badge-top-right {
  top: 8%;
  right: -15px;
  animation: floatBadge2 4.5s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: 18%;
  left: -25px;
  animation: floatBadge3 5s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

.hero-sparkle {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  animation: sparklePulse 3s ease-in-out infinite;
}

.sparkle-1 {
  width: 10px; height: 10px;
  background: #818cf8;
  top: 20%; right: 5%;
  animation-delay: 0s;
}

.sparkle-2 {
  width: 7px; height: 7px;
  background: #a78bfa;
  top: 65%; right: 8%;
  animation-delay: 0.6s;
}

.sparkle-3 {
  width: 12px; height: 12px;
  background: #6366f1;
  bottom: 12%; left: 8%;
  animation-delay: 1.1s;
}

.sparkle-4 {
  width: 6px; height: 6px;
  background: #c4b5fd;
  top: 40%; left: 2%;
  animation-delay: 1.8s;
}

@keyframes sparklePulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.4); opacity: 0.9; }
}

.hero-code-chip {
  position: absolute;
  bottom: 8%;
  right: -10px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 12px;
  font-family: 'Consolas', monospace;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: floatBadge2 5.5s ease-in-out infinite;
  border: 1px solid rgba(99,102,241,0.3);
}

.chip-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px #22c55e;
  animation: sparklePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-code-chip code {
  color: #94a3b8;
  font-size: 12px;
}

.hero-code-chip code span {
  color: #a78bfa;
}

.hero-code-chip code em {
  color: #86efac;
  font-style: normal;
}

.hero-right {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.3);
  color: #4f46e5;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-right h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #1e1b3a;
}

.hero-right h1 .highlight {
  background: linear-gradient(90deg, #4f46e5, #9333ea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-right p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #4b5563;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn {
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  color: white;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.45);
}

.btn-secondary {
  background: white;
  color: #4f46e5;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background: #f3f4f6;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat h3 {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat p {
  font-size: 14px;
  color: #6b7280;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-right {
    max-width: 100%;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-left img {
    width: 320px;
    margin-bottom: 10px;
  }
}

/* ============================================
   FEATURED SECTION (Horizontal Grid Layout)
============================================ */
.featured-section {
  position: relative;
  padding: 80px;
  background: #f9f8ff;
}

.featured-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.featured-block {
  width: 100%;
}

.col-header {
  margin-bottom: 30px;
}

.col-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.col-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1e1b3a;
  margin-bottom: 8px;
}

.col-header p {
  font-size: 15px;
  color: #6b7280;
}

.card-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 24px;
  margin-bottom: 26px;
  padding: 6px 4px 16px 4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c4b8ff transparent;
}
.card-grid > .feature-card-v2 {
  flex: 1 0 280px;
  min-width: 280px;
}

/* --------------------------------------------
   ⭐ ADVANCED COURSE CARD (V2) STYLE
-------------------------------------------- */
.feature-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #ffffff, #fcfbfe);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 35px -12px rgba(79, 70, 229, 0.08), 
              0 1px 3px rgba(79, 70, 229, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
  min-height: 440px;
}

.feature-card-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 3;
}

.feature-card-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 100%, rgba(67, 56, 202, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.feature-card-v2:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 25px 45px -15px rgba(67, 56, 202, 0.22), 
              0 0 0 1px rgba(67, 56, 202, 0.05);
  border-color: transparent;
}

.feature-card-v2:hover::after,
.feature-card-v2:hover::before {
  opacity: 1;
}

.card-img-placeholder {
  position: relative;
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #e0e7ff, #ede9fe);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.6s ease;
}

.feature-card-v2:hover .card-img-placeholder img {
  transform: scale(1.08) rotate(0.5deg);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 18, 59, 0.4) 100%);
  opacity: 0.8;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.feature-card-v2:hover .img-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(67, 56, 202, 0.25) 75%, rgba(147, 51, 234, 0.4) 100%);
  opacity: 1;
}

.card-img-placeholder::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  z-index: 2;
}

.card-img-placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}

.feature-card-v2:hover .card-img-placeholder::after {
  animation: shine-sweep 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shine-sweep {
  0% { left: -75%; }
  100% { left: 125%; }
}

.card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.feature-card-v2:hover .card-body h3 {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(-1px);
}

.card-body p {
  font-size: 13.8px;
  color: var(--text-muted);
  margin: 0 0 22px 0;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 46px;
  transition: color 0.3s ease;
}

.feature-card-v2:hover .card-body p {
  color: var(--text-dark);
}

.explore-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: #EDEBFB;
  color: var(--indigo);
  border: 1px solid var(--border-soft);
  margin-top: auto;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  stroke: var(--indigo);
}

.feature-card-v2:hover .explore-link {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(67, 56, 202, 0.35);
}

.feature-card-v2:hover .explore-link svg {
  transform: translateX(5px);
  stroke: #ffffff;
}

/* View All Button */
.view-all-btn {
  display: inline-block;
  color: #4f46e5;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 0;
  margin-top: 8px;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}

.view-all-btn:hover {
  border-bottom: 2px solid #4f46e5;
}

/* Responsive grid rules */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .featured-section { padding: 50px 24px; }
  .card-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOME PAGE – LIVE BATCHES SECTION
============================================ */
.live-batches-block { margin-top: -20px; }

.live-cards-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 24px;
  margin-bottom: 22px;
  padding: 6px 4px 16px 4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c4b8ff transparent;
}
.live-cards-grid > .home-live-card {
  flex: 1 0 280px;
  min-width: 280px;
}

.home-live-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e4f8;
  box-shadow: 0 6px 24px -8px rgba(79,70,229,0.10);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
}
.home-live-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -10px rgba(67,56,202,0.20); }

.home-live-img-wrap { position: relative; width: 100%; height: 150px; overflow: hidden; }
.home-live-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.home-live-card:hover .home-live-img-wrap img { transform: scale(1.06); }

.home-live-badge { position: absolute; top: 10px; left: 10px; background: #ef4444; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; display: flex; align-items: center; gap: 5px; letter-spacing: 0.3px; box-shadow: 0 2px 8px rgba(239,68,68,0.35); }
.home-live-duration-badge { position: absolute; bottom: 10px; right: 10px; background: rgba(15,10,40,0.78); backdrop-filter: blur(6px); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; display: flex; align-items: center; gap: 5px; letter-spacing: 0.3px; border: 1px solid rgba(255,255,255,0.18); }
.home-live-dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: home-pulse 1.2s infinite; flex-shrink: 0; }
@keyframes home-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

.home-live-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex-grow: 1; }
.home-live-body h4 { font-size: 15px; font-weight: 700; color: #1e1b3a; margin: 0 0 10px 0; }
.home-live-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.home-live-meta span { font-size: 12px; color: #555; display: flex; align-items: center; gap: 6px; }
.home-live-meta span i { color: #6366f1; font-size: 12px; }
.home-live-seats { color: #ef4444 !important; font-weight: 600; }
.home-live-progress-wrap { margin-bottom: 12px; }
.home-live-progress-info { display: flex; justify-content: space-between; font-size: 11px; color: #888; margin-bottom: 4px; }
.home-live-progress-bg { height: 6px; background: #ede9fe; border-radius: 10px; overflow: hidden; }
.home-live-progress-fill { height: 100%; background: linear-gradient(90deg, #f59e0b, #ef4444); border-radius: 10px; transition: width 0.8s ease; }
.home-live-pricing { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.home-live-price { font-size: 18px; font-weight: 800; color: #1e1b3a; }
.home-live-original { font-size: 12px; color: #aaa; text-decoration: line-through; }
.home-live-off { font-size: 11px; font-weight: 700; color: #16a34a; background: #dcfce7; padding: 2px 8px; border-radius: 50px; }
.home-live-btns { display: flex; gap: 8px; margin-top: auto; }
.home-live-btn-outline, .home-live-btn-fill { flex: 1; text-align: center; padding: 8px 6px; border-radius: 10px; font-size: 12px; font-weight: 600; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 5px; transition: all 0.3s ease; }
.home-live-btn-outline { border: 1.5px solid #6366f1; color: #6366f1; background: transparent; }
.home-live-btn-outline:hover { background: #6366f1; color: #fff; }
.home-live-btn-fill { background: linear-gradient(135deg, #4f46e5, #9333ea); color: #fff; border: none; }
.home-live-btn-fill:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(79,70,229,0.35); }
@media (max-width: 1100px) { .live-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .live-cards-grid { grid-template-columns: 1fr; } }

/* ============================================
   WHY CHOOSE US SECTION
============================================ */
.why-section { position: relative; padding: 80px 5% 40px; background: radial-gradient(circle at 8% 12%, rgba(147,51,234,0.10), transparent 40%), radial-gradient(circle at 95% 85%, rgba(37,99,235,0.12), transparent 45%), var(--lavender-bg); overflow: hidden; }
.why-section::before { content: ""; position: absolute; top: -120px; right: -120px; width: 340px; height: 340px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--purple)); opacity: 0.10; filter: blur(10px); }
.why-container { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.why-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Sora', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase; color: var(--indigo); background: #EDEBFB; border: 1px solid var(--border-soft); padding: 7px 16px; border-radius: 30px; margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--purple)); }
.why-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 40px); line-height: 1.2; color: var(--text-dark); letter-spacing: -0.5px; }
.why-title span { background: linear-gradient(90deg, var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.why-subtitle { margin-top: 14px; font-size: 15.5px; color: var(--text-muted); line-height: 1.65; }
.why-layout { display: flex; justify-content: center; }
.why-layout .card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1180px; width: 100%; }
.why-card { background: var(--card-bg); border: 1px solid var(--border-soft); border-radius: 18px; padding: 28px 24px; position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; box-shadow: 0 2px 10px rgba(30,20,90,0.04); }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(67,56,202,0.15); border-color: transparent; }
.icon-badge { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; background: linear-gradient(135deg, var(--blue), var(--purple)); box-shadow: 0 8px 18px rgba(67,56,202,0.28); }
.icon-badge svg { width: 24px; height: 24px; }
.why-card h3 { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 9px; letter-spacing: -0.2px; }
.why-card p { font-size: 13.8px; line-height: 1.6; color: var(--text-muted); }
.card-number { position: absolute; top: 22px; right: 24px; font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: #C9C5E8; }
@media (max-width: 900px) { .why-layout .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .why-layout .card-grid { grid-template-columns: 1fr; } }

/* ============================================
   STUDENT SUCCESS & TESTIMONIALS SECTION
============================================ */
.success-section { position: relative; padding: 40px 5% 90px; background: radial-gradient(circle at 92% 10%, rgba(147,51,234,0.10), transparent 45%), radial-gradient(circle at 4% 90%, rgba(37,99,235,0.12), transparent 45%), var(--lavender-bg); overflow: hidden; }
.success-container { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.success-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.success-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 40px); line-height: 1.2; color: var(--text-dark); letter-spacing: -0.5px; }
.success-title span { background: linear-gradient(90deg, var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.success-subtitle { margin-top: 14px; font-size: 15.5px; color: var(--text-muted); line-height: 1.65; }
.success-layout { display: flex; flex-direction: column; gap: 32px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--card-bg); border: 1px solid var(--border-soft); border-radius: 20px; padding: 30px 10px; box-shadow: 0 2px 10px rgba(30,20,90,0.04); transition: box-shadow 0.25s ease; }
.stat-grid:hover { box-shadow: 0 16px 34px rgba(67,56,202,0.15); }
.stat-card { background: transparent; border: none; border-right: 1px solid var(--border-soft); border-radius: 0; padding: 0 20px; text-align: center; box-shadow: none; transition: transform 0.25s ease; }
.stat-card:last-child { border-right: none; }
.stat-card:hover { transform: translateY(-4px); }
.stat-icon { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 21px; color: #ffffff; background: linear-gradient(135deg, #4c49ff, #6366f1); box-shadow: 0 8px 18px rgba(76,73,255,0.35); }
.stat-number { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 28px; color: var(--text-dark); line-height: 1.15; }
.stat-number .plus { background: linear-gradient(90deg, var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { margin-top: 6px; font-size: 12.5px; font-weight: 700; color: var(--indigo); letter-spacing: 0.3px; opacity: 0.85; }
.testimonial-panel { width: 100%; max-width: 720px; margin: 0 auto; background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.5); border-radius: 28px; padding: 36px 40px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 20px 50px -15px rgba(67,56,202,0.1); position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s cubic-bezier(0.16,1,0.3,1); isolation: isolate; }
.testimonial-panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--blue), var(--purple)); z-index: 1; }
.testimonial-panel::after { content: ""; position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(147,51,234,0.12), transparent 70%); pointer-events: none; z-index: -1; }
.testimonial-panel:hover { box-shadow: 0 30px 60px -20px rgba(67,56,202,0.18); transform: translateY(-5px); }
.quote-mark { font-size: 90px; font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.15; position: absolute; top: 20px; right: 35px; pointer-events: none; z-index: 0; }
.stars { color: var(--star); font-size: 17px; letter-spacing: 3px; margin-bottom: 18px; display: inline-block; filter: drop-shadow(0 2px 8px rgba(255,199,44,0.35)); position: relative; z-index: 2; }
.testimonial-text { font-size: 16.5px; line-height: 1.8; color: var(--text-dark); font-weight: 500; margin-bottom: 26px; position: relative; z-index: 2; }
.testimonial-author { display: flex; align-items: center; gap: 16px; margin-top: 18px; padding-top: 20px; border-top: 1px solid var(--border-soft); position: relative; z-index: 2; }
.author-avatar { width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--purple)); box-shadow: 0 6px 15px rgba(67,56,202,0.2); flex-shrink: 0; padding: 3px; overflow: hidden; transition: transform 0.3s ease; }
.testimonial-panel:hover .author-avatar { transform: scale(1.05); }
.author-avatar img { border-radius: 50%; border: 2px solid #ffffff; object-fit: cover; width: 100% !important; height: 100% !important; }
.author-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15.5px; color: var(--text-dark); }
.author-role { font-size: 13px; font-weight: 600; color: var(--blue); margin-top: 3px; }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 30px; position: relative; z-index: 2; }
.dots { display: flex; gap: 8px; align-items: center; }
.dot { width: 8px; height: 8px; border-radius: 4px; background: var(--border-soft); cursor: pointer; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); border: none; padding: 0; }
.dot.active { width: 24px; background: linear-gradient(135deg, var(--blue), var(--purple)); }
.arrow-group { display: flex; gap: 12px; }
.arrow-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-soft); background: #ffffff; color: var(--indigo); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 10px rgba(67,56,202,0.05); transition: all 0.3s cubic-bezier(0.16,1,0.3,1); }
.arrow-btn:hover { background: linear-gradient(135deg, var(--blue), var(--purple)); color: #ffffff; border-color: transparent; transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 20px rgba(67,56,202,0.25); }
.arrow-btn svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .stat-grid { grid-template-columns: 1fr 1fr; } .stat-card { border-right: none; border-bottom: 1px solid var(--border-soft); padding: 20px 10px; } }
@media (max-width: 768px) { .testimonial-panel { max-width: 100%; padding: 24px 20px; } .quote-mark { font-size: 70px; top: 15px; right: 20px; } }
@media (max-width: 480px) { .stat-grid { grid-template-columns: 1fr 1fr; gap: 0; padding: 20px 6px; } .stat-number { font-size: 23px; } }

/* ============================================
   PRICING SECTION (INTERNSHIPS)
============================================ */
.pricing-section { padding: 20px 5% 80px; background: #f9f8ff; }
.pricing-container { max-width: 1180px; margin: 0 auto; }
.pricing-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.pricing-header h2 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(26px, 4vw, 36px); color: var(--text-dark); margin: 14px 0 10px; }
.pricing-header p { font-size: 15px; color: var(--text-muted); }
.pricing-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 24px;
  margin-bottom: 26px;
  padding: 6px 4px 16px 4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c4b8ff transparent;
}
.pricing-card {
  background: #ffffff;
  border: 1px solid #e0dbff;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing-grid > .pricing-card {
  flex: 1 0 280px;
  min-width: 280px;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(67,56,202,0.15); border-color: var(--indigo); }
.pricing-card.featured { border: 1px solid var(--border-soft); box-shadow: 0 18px 40px rgba(67,56,202,0.22); transform: translateY(-6px); }
.pricing-brand { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; color: var(--text-dark); margin-bottom: 18px; }
.pricing-header-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.pricing-amount { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 32px; color: var(--text-dark); }
.pricing-amount small { font-size: 15px; font-weight: 500; color: var(--text-muted); }
.pricing-duration { background: linear-gradient(135deg, #4f46e5, #9333ea); color: white; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; white-space: nowrap; box-shadow: 0 4px 12px rgba(67,56,202,0.3); }
.pricing-role { font-weight: 600; font-size: 15px; color: var(--text-dark); margin-bottom: 14px; }
.pricing-details p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 6px; line-height: 1.5; }
.pricing-btn { display: block; text-align: center; margin-top: 26px; padding: 14px; border-radius: 12px; font-weight: 600; font-size: 15px; color: #fff; text-decoration: none; background:linear-gradient(135deg, var(--blue), var(--purple)); box-shadow:0 8px 20px rgba(67,56,202,0.3); transition:all 0.3s ease; }
.pricing-btn:hover{ transform:translateY(-3px); box-shadow:0 14px 28px rgba(67,56,202,0.4); }

/* ============================================
   PREMIUM INTERNSHIP CARDS
============================================ */
.intern-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e8e4f8;
  box-shadow: 0 6px 24px -6px rgba(79,70,229,0.10);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1 0 260px;
  min-width: 260px;
}
.intern-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px -10px rgba(79,70,229,0.20);
}

/* Gradient top strip */
.intern-card-header {
  background: linear-gradient(135deg, #4338ca 0%, #7c3aed 60%, #9333ea 100%);
  padding: 20px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.intern-card-header::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.intern-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 30px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.intern-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.intern-duration-pill {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.2px;
}

/* Card body */
.intern-company {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 16px 18px 6px;
}

.intern-fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px 12px;
}
.intern-fee-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}
.intern-fee-amt {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--indigo);
}

.intern-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0dbff, transparent);
  margin: 0 18px;
}

.intern-features {
  list-style: none;
  padding: 14px 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-grow: 1;
}
.intern-features li {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
}
.intern-features li i {
  color: #7c3aed;
  font-size: 14px;
  flex-shrink: 0;
}

.intern-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 18px 18px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #4338ca, #9333ea);
  box-shadow: 0 6px 18px rgba(67,56,202,0.28);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  letter-spacing: 0.2px;
}
.intern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(67,56,202,0.40);
  color: #fff;
}


@media (max-width:1100px){
  .pricing-grid{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width:600px){
  .pricing-grid{ grid-template-columns:1fr; }
}

/* View All Card (placed at the right end of the row) */
.view-all-circle-card {
  flex: 0 0 140px;
  min-width: 130px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8f7ff, #ede9ff);
  text-decoration: none;
  padding: 20px 14px;
  border-radius: 20px;
  border: 2px dashed #a594ff;
  transition: all 0.3s ease;
  align-self: stretch;
  cursor: pointer;
}
.view-all-circle-card:hover {
  background: #4c49ff;
  border-color: #4c49ff;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(76,73,255,0.3);
}
.view-all-circle-card .circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #4c49ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(76,73,255,0.15);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.view-all-circle-card:hover .circle-icon {
  background-color: rgba(255,255,255,0.25);
  color: #ffffff;
  transform: scale(1.1);
}
.view-all-circle-card span {
  color: #4c49ff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.view-all-circle-card:hover span {
  color: #ffffff;
}