/* ============================================
   LOGIC TECHNOLOGIES — SAP TRAINING & CONSULTING
   Design tokens
   ============================================ */

:root {
  --navy: #071d46;
  --navy-deep: #04122d;
  --blue: #0a66c2;
  --blue-bright: #0ea5e9;
  --amber: #f59e0b;
  --amber-deep: #d97706;
  --slate: #475569;
  --slate-light: #64748b;
  --bg-soft: #f8fafc;
  --bg-blue-soft: #eff6ff;
  --border: #e2e8f0;
  --white: #ffffff;

  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #1e293b;
  background: var(--white);
  line-height: 1.65;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
  background: var(--navy-deep);
  color: #cbd8ee;
  font-size: 12.5px;
  padding: 4px 0;
}

.top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-inner .top-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-inner .top-right {
  display: flex;
  gap: 22px;
}

.top-inner a {
  color: #cbd8ee;
  transition: 0.25s;
}

.top-inner a:hover {
  color: var(--amber);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 16px rgba(7, 29, 70, 0.08);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo img {
  height: 155px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: var(--navy);
  position: relative;
  padding: 4px 0;
  transition: 0.25s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  padding: 8px;
  min-width: 170px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-blue-soft, #eaf2ff);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.nav-phone .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.nav-btn {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: white;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.28);
  white-space: nowrap;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 56px 0 70px;
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.12), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  align-items: start;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-blue-soft);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
  border: 1px solid #dbeafe;
}

.hero-content h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-content h1 span {
  color: var(--blue);
}

.hero-content > p {
  color: var(--slate);
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary,
.btn-secondary {
  padding: 15px 26px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: white;
  box-shadow: 0 14px 30px rgba(10, 102, 194, 0.25);
}

.btn-secondary {
  border: 1.5px solid #cbd5e1;
  color: var(--navy);
  background: white;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-stats div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(7, 29, 70, 0.05);
}

.hero-stats h3 {
  font-size: 26px;
  color: var(--blue);
}

.hero-stats p {
  margin: 2px 0 0;
  font-size: 12.5px;
  color: var(--slate);
  font-weight: 600;
}

/* Hero enquiry card */

.hero-card,
.contact-card {
  background: white;
  color: #1e293b;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(7, 29, 70, 0.16);
  border: 1px solid var(--border);
}

.hero-card-top {
  background: linear-gradient(135deg, var(--navy), #0f2a5c);
  color: white;
  padding: 18px 24px;
  border-radius: 14px;
  margin-bottom: 22px;
}

.hero-card-top h3 {
  color: white;
  font-size: 19px;
  margin-bottom: 4px;
}

.hero-card-top p {
  color: #b8c9ec;
  font-size: 13px;
  margin: 0;
}

.hero-card h3,
.contact-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.hero-card > p {
  color: var(--slate);
  margin-bottom: 18px;
  font-size: 14px;
}

form {
  display: grid;
  gap: 13px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #d8e1ef;
  border-radius: 9px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  color: #1e293b;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

button[type="submit"] {
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: white;
  padding: 14px 20px;
  border-radius: 9px;
  font-weight: 700;
  font-family: inherit;
  font-size: 14.5px;
}

.hero-card-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--slate-light);
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: var(--navy-deep);
  padding: 26px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}

.trust-label {
  color: #8fa3c9;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e6edf9;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.trust-badge .dot-icon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

/* ============================================
   COMMON SECTION STYLES
   ============================================ */

.section {
  padding: 86px 0;
}

.grey {
  background: var(--bg-soft);
}

.blue-soft {
  background: linear-gradient(180deg, var(--bg-blue-soft), #ffffff);
}

.section-heading {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px;
}

.section-heading h2,
.two-col h2,
.contact-grid h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.section-heading p,
.two-col p,
.contact-grid p {
  color: var(--slate);
  font-size: 16px;
}

/* ============================================
   ABOUT
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.two-col ul {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.two-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  font-size: 15px;
}

.two-col ul li::before {
  content: "✓";
  color: var(--blue);
  background: var(--bg-blue-soft);
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  margin-top: 1px;
}

.feature-box {
  background: white;
  border-radius: 22px;
  padding: 10px 26px;
  box-shadow: 0 18px 50px rgba(7, 29, 70, 0.1);
  border: 1px solid var(--border);
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item .num {
  min-width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
}

.feature-item h4 {
  margin-bottom: 4px;
  font-size: 16px;
}

.feature-item p {
  color: var(--slate);
  font-size: 14px;
}

/* ============================================
   SERVICES / CONSULTING
   ============================================ */

.service-card {
  position: relative;
  background: white;
  padding: 30px 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(7, 29, 70, 0.06);
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,102,194,0.18), rgba(10,102,194,0) 70%);
  transform: scale(0.6); opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(10, 102, 194, 0.16);
  border-color: #c7e0fb;
}
.service-card:hover::before { transform: scale(1.4); opacity: 1; }
.icon {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bg-blue-soft), #dceefe);
  display: grid; place-items: center;
  color: #2563eb;
  margin-bottom: 20px;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover .icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
  box-shadow: 0 14px 26px rgba(10, 102, 194, 0.34);
}
.icon svg { width: 32px; height: 32px; transition: transform 0.35s ease; }
.service-card:hover .icon svg { transform: rotate(8deg); }
.service-card h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 17px;
  color: var(--navy);
}
.service-card h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  height: 3px; width: 28px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transition: width 0.35s ease;
}
.service-card:hover h3::after { width: 100%; }
.service-card p {
  position: relative;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   PRICING / SERVER ACCESS
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.price-card {
  position: relative;
  padding: 34px 30px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 16px 42px rgba(7, 29, 70, 0.07);
}

.price-card.popular {
  border: 2px solid var(--blue-bright);
  transform: scale(1.03);
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--amber);
  color: white;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.price-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.price {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--blue);
  margin-bottom: 22px;
}

.price span {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--slate);
}

.price-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.price-card a {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--navy);
  color: white;
  padding: 13px 20px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14px;
}

.price-card.popular a {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
}

/* ============================================
   SAP TRAINING PROGRAM — COURSE CATALOGUE
   ============================================ */

.catalogue-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.module-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.module-filter span {
  background: white;
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.module-filter span.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.course-list {
  display: grid;
  gap: 16px;
}

.course-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  background: white;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(7, 29, 70, 0.05);
  transition: 0.25s;
}

.course-item:hover {
  border-color: #c7e0fb;
  box-shadow: 0 16px 36px rgba(10, 102, 194, 0.1);
}

.course-tag {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: white;
  text-align: center;
  line-height: 1.15;
}

.tag-fico { background: linear-gradient(135deg, #0a66c2, #0ea5e9); }
.tag-mm { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.tag-sd { background: linear-gradient(135deg, #059669, #34d399); }
.tag-abap { background: linear-gradient(135deg, #d97706, #f59e0b); }
.tag-hana { background: linear-gradient(135deg, #dc2626, #f87171); }
.tag-basis { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.tag-hr { background: linear-gradient(135deg, #be185d, #f472b6); }
.tag-ewm { background: linear-gradient(135deg, #4338ca, #818cf8); }
.tag-ariba { background: linear-gradient(135deg, #15803d, #4ade80); }
.tag-pp { background: linear-gradient(135deg, #b45309, #fbbf24); }

.course-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.course-info p {
  color: var(--slate);
  font-size: 13.5px;
}

.course-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.course-duration {
  font-size: 12px;
  color: var(--slate-light);
  font-weight: 600;
}

.course-item a.enquire-btn {
  background: var(--bg-blue-soft);
  color: var(--blue);
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.course-item a.enquire-btn:hover {
  background: var(--blue);
  color: white;
}

/* Catalogue sidebar */

.catalogue-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(7, 29, 70, 0.06);
}

.sidebar-card h4 {
  font-size: 16px;
  margin-bottom: 14px;
}

.sidebar-card form {
  gap: 11px;
}

.sidebar-batch {
  background: linear-gradient(135deg, var(--navy), #0f2a5c);
  border-radius: 18px;
  padding: 26px;
  color: white;
}

.sidebar-batch h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 6px;
}

.sidebar-batch p {
  color: #b8c9ec;
  font-size: 13px;
  margin-bottom: 16px;
}

.batch-date {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-size: 13px;
}

.batch-date b {
  color: var(--amber);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-blue-soft) 100%);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

/* photo */
.why-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 24px 60px rgba(7, 29, 70, 0.18);
}
.why-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,29,70,0) 45%, rgba(7,29,70,0.82) 100%);
}
.why-photo-tag {
  position: absolute;
  left: 26px;
  bottom: 26px;
  right: 26px;
  z-index: 1;
  color: #fff;
}
.why-photo-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: #fff;
}
.why-photo-tag span {
  font-size: 14px;
  color: #dbe6f7;
}

/* feature list */
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
/* vertical connecting line through the icons */
.why-list::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--blue-bright));
  opacity: 0.25;
}

.why-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
}

.why-item-ico {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 10px 22px rgba(10, 102, 194, 0.30);
  border: 4px solid #fff;
  transition: transform 0.3s ease;
}
.why-item:hover .why-item-ico { transform: scale(1.08) rotate(-6deg); }
.why-item-ico svg { width: 26px; height: 26px; }

.why-item-text h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 5px;
}
.why-item-text p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .why-layout { grid-template-columns: 1fr; gap: 30px; }
  .why-photo { min-height: 300px; }
}

/* ============================================
   CERTIFICATE SHOWCASE
   ============================================ */

.cert-section {
  background: linear-gradient(135deg, var(--navy), #0c2454);
  color: white;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.cert-grid h2 {
  color: white;
}

.cert-grid .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--amber);
  border-color: rgba(255, 255, 255, 0.14);
}

.cert-grid > div > p {
  color: #c3d2ec;
  font-size: 16px;
  margin-bottom: 24px;
}

.cert-points {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.cert-points div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #dbe7fb;
}

.cert-points div::before {
  content: "★";
  color: var(--amber);
  font-size: 15px;
}

.cert-visual {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  position: relative;
}

.cert-visual::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px dashed rgba(245, 158, 11, 0.5);
  border-radius: 20px;
  z-index: -1;
}

.cert-card-inner {
  border: 3px solid var(--navy);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.cert-card-inner .cert-seal {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 22px;
}

.cert-card-inner h4 {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 8px;
}

.cert-card-inner h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.cert-card-inner p {
  font-size: 13px;
  color: var(--slate);
}

.cert-card-inner .cert-line {
  margin-top: 18px;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
  font-size: 12px;
  color: var(--slate-light);
  display: flex;
  justify-content: space-between;
}

/* ============================================
   PROCESS
   ============================================ */

/* ===== How We Work: creative process flow ===== */
.process-flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-line { position: absolute; top: 92px; left: 12%; right: 12%; height: 3px; background: repeating-linear-gradient(90deg, var(--blue) 0 14px, transparent 14px 26px); opacity: 0.35; z-index: 0; }
.process-card { position: relative; z-index: 1; background: #fff; padding: 30px 26px 28px; border-radius: 20px; border: 1px solid var(--border); overflow: hidden; transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease; }
.process-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.process-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(7, 29, 70, 0.12); border-color: #cfe0f7; }
.process-card:hover::before { transform: scaleX(1); }
.process-ghost { position: absolute; top: -14px; right: 6px; font-family: var(--font-display); font-size: 86px; font-weight: 800; line-height: 1; color: var(--bg-blue-soft); z-index: 0; pointer-events: none; }
.process-node { position: relative; display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.process-icon { width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--navy), #1b3f7a); box-shadow: 0 10px 22px rgba(7, 29, 70, 0.25); transition: transform 0.3s ease, background 0.3s ease; }
.process-card:hover .process-icon { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); transform: rotate(-6deg) scale(1.05); }
.process-icon svg { width: 26px; height: 26px; }
.process-step { position: relative; font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--blue); background: var(--bg-blue-soft); padding: 5px 12px; border-radius: 999px; }
.process-card h3 { position: relative; margin-bottom: 10px; font-size: 16px; color: var(--navy); }
.process-card p { position: relative; color: var(--slate); font-size: 13.5px; line-height: 1.6; }
@media (max-width: 980px) { .process-flow { grid-template-columns: repeat(2, 1fr); } .process-line { display: none; } }
@media (max-width: 560px) { .process-flow { grid-template-columns: 1fr; } }


/* ============================================
   TESTIMONIALS / REVIEWS
   ============================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: white;
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(7, 29, 70, 0.06);
  border: 1px solid var(--border);
}

.review-stars {
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 14px;
}

.review-card p.review-text {
  color: #334155;
  margin-bottom: 20px;
  font-size: 14.5px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
}

.review-person h4 {
  font-size: 14.5px;
  margin-bottom: 1px;
}

.review-person span {
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 700;
}

/* ============================================
   CONTACT / FAQ
   ============================================ */

.contact-section {
  background: linear-gradient(135deg, var(--navy-deep), #0c2454);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.contact-grid h2,
.contact-grid > div > p {
  color: white;
}

.faq {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

details {
  background: rgba(255, 255, 255, 0.06);
  padding: 17px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14.5px;
}

details p {
  margin-top: 12px;
  color: #c3d2ec !important;
  font-size: 13.5px;
}

.contact-card {
  box-shadow: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-deep);
  color: white;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 38px;
}

.footer img {
  width: 180px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer p,
.footer a {
  color: #94a8cd;
  font-size: 13.5px;
}

.footer a {
  display: block;
  margin-bottom: 11px;
  transition: 0.25s;
}

.footer a:hover {
  color: var(--amber);
}

.footer h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  margin: 0;
  font-size: 13px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  color: #8198c2;
  font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .catalogue-layout {
    grid-template-columns: 1fr;
  }

  .catalogue-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
}

@media (max-width: 992px) {
  .top-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .top-inner .top-right {
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    min-height: 64px;
    padding: 10px 0;
  }

  .nav-links {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    font-size: 13px;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid var(--border);
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .process-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .price-card.popular {
    transform: none;
  }

  .catalogue-sidebar {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .top-bar {
    font-size: 11px;
    padding: 6px 0;
  }

  .nav {
    min-height: 58px;
    gap: 10px;
  }

  .logo img {
    width: 125px;
  }

  .nav-links {
    gap: 10px;
    font-size: 12px;
  }

  .nav-phone {
    display: none;
  }

  .hero {
    padding: 44px 0 50px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .process-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .course-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .course-tag {
    margin: 0 auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .module-filter {
    justify-content: center;
  }
}



/* ===== SAP Servers page ===== */
.server-wrap { display: flex; flex-direction: column; gap: 28px; margin-top: 14px; }
.server-block { background: #fff; border: 1px solid #e6edf7; border-radius: 20px; padding: 28px; box-shadow: 0 10px 30px rgba(7, 29, 70, 0.06); }
.server-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px; }
.server-icon { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); box-shadow: 0 8px 18px rgba(10, 102, 194, 0.28); }
.server-icon.hana { background: linear-gradient(135deg, #6d28d9, #a855f7); box-shadow: 0 8px 18px rgba(109, 40, 217, 0.28); }
.server-icon svg { width: 30px; height: 30px; }
.server-head h3 { font-family: var(--font-display); font-size: 21px; color: var(--navy); margin-bottom: 6px; }
.server-head p { color: var(--slate); font-size: 14px; line-height: 1.6; max-width: 760px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card { position: relative; border: 1.5px solid #e6edf7; border-radius: 16px; padding: 24px 20px; text-align: center; background: #fbfcff; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(7, 29, 70, 0.10); border-color: #cfe0f7; }
.plan-card.featured { border-color: var(--blue); background: linear-gradient(180deg, #f4f9ff, #fff); box-shadow: 0 16px 36px rgba(10, 102, 194, 0.14); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; box-shadow: 0 6px 14px rgba(10, 102, 194, 0.3); }
.plan-duration { display: inline-block; font-size: 13px; font-weight: 600; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px; }
.plan-price { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1; }
.plan-price .cur { font-size: 22px; font-weight: 700; vertical-align: super; margin-right: 2px; }
.plan-price .per { font-size: 16px; font-weight: 600; color: var(--slate-light); }
.plan-note { font-size: 13px; color: var(--slate-light); margin: 12px 0 18px; }
.plan-btn { display: inline-block; width: 100%; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; font-weight: 700; font-size: 14px; padding: 11px 0; border-radius: 11px; transition: transform 0.2s, box-shadow 0.2s; }
.plan-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(10, 102, 194, 0.3); }
.server-note { display: flex; align-items: flex-start; gap: 18px; background: linear-gradient(135deg, var(--navy), #0f2a5c); border-radius: 20px; padding: 26px 28px; color: #eaf2ff; }
.server-note-icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: rgba(255, 255, 255, 0.12); }
.server-note-icon svg { width: 28px; height: 28px; }
.server-note h4 { font-family: var(--font-display); font-size: 18px; color: #fff; margin-bottom: 8px; }
.server-note p { font-size: 14px; line-height: 1.65; color: #c9d8f2; }
.server-note p strong { color: #fff; }
@media (max-width: 820px) { .plan-grid { grid-template-columns: 1fr; } .server-block { padding: 22px; } .server-head { flex-direction: column; gap: 12px; } }

/* ===== IT & SAP Courses: square tile grid ===== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 14px;
  align-items: start;
}

.course-acc {
  background: #fff;
  border: 1px solid #e6edf7;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.course-acc:hover {
  box-shadow: 0 14px 34px rgba(7, 29, 70, 0.10);
  border-color: #cfe0f7;
  transform: translateY(-3px);
}

.course-acc.open {
  border-color: var(--blue);
  box-shadow: 0 16px 38px rgba(10, 102, 194, 0.14);
}

/* banner image on top */
.course-acc-banner {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
  background: var(--bg-blue-soft);
}

.course-acc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.course-acc:hover .course-acc-banner img {
  transform: scale(1.06);
}

.course-acc-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,29,70,0) 55%, rgba(7,29,70,0.22) 100%);
  pointer-events: none;
}

/* head becomes a vertical block under the image */
.course-acc-head {
  width: 100%;
  display: block;
  position: relative;
  padding: 34px 18px 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

/* icon overlaps the bottom edge of the banner */
.course-acc-icon {
  position: absolute;
  top: -26px;
  left: 18px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 8px 18px rgba(10, 102, 194, 0.30);
  border: 3px solid #fff;
}

.course-acc-icon svg { width: 26px; height: 26px; }

.course-acc-titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.course-acc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}

.course-acc-tag {
  font-size: 13px;
  color: var(--slate-light);
  line-height: 1.45;
}

/* chevron pinned to top-right of the text block */
.course-acc-chev {
  position: absolute;
  top: 30px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--bg-blue-soft);
  transition: transform 0.3s, background 0.25s, color 0.25s;
}

.course-acc-chev svg { width: 16px; height: 16px; }

.course-acc.open .course-acc-chev {
  transform: rotate(180deg);
  background: var(--blue);
  color: #fff;
}

/* dropdown body */
.course-acc-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}

.course-acc.open .course-acc-body {
  max-height: 600px;
  opacity: 1;
  padding: 0 18px 20px;
}

.course-acc-body p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.course-acc-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.course-acc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(10, 102, 194, 0.3);
}

@media (max-width: 980px) {
  .course-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .course-grid { grid-template-columns: 1fr; }
}

/* ===== Service card: moving element on the right ===== */
.service-card .card-orbit { position: absolute; top: 50%; right: 18px; width: 46px; height: 46px; transform: translateY(-50%); pointer-events: none; opacity: 0.55; transition: opacity 0.35s ease; }
.service-card:hover .card-orbit { opacity: 1; }
.service-card .card-orbit::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 35% 35%, var(--blue-bright), var(--blue)); box-shadow: 0 6px 16px rgba(10, 102, 194, 0.35); animation: orbPulse 2.6s ease-in-out infinite; }
.service-card .card-orbit::after { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; margin: -4px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(10,102,194,0.15); transform-origin: 4px 4px; animation: orbSpin 3.4s linear infinite; }
@keyframes orbPulse { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.18); opacity: 1; } }
@keyframes orbSpin { from { transform: rotate(0deg) translateX(30px) rotate(0deg); } to { transform: rotate(360deg) translateX(30px) rotate(-360deg); } }
@media (max-width: 980px) { .service-card .card-orbit { display: none; } }

/* ===== Service card: tech motif on the right (unique per card) ===== */
.card-motif { position: absolute; top: 22px; right: 20px; width: 40px; height: 40px; color: var(--blue); opacity: 0.18; pointer-events: none; transition: opacity 0.35s ease, color 0.35s ease; }
.service-card:hover .card-motif { opacity: 0.85; color: var(--blue-bright); }
.card-motif svg { width: 100%; height: 100%; display: block; }
.motif-gear svg { animation: spin 9s linear infinite; transform-origin: 50% 50%; }
.motif-sync svg { animation: spin 5s linear infinite; transform-origin: 50% 50%; }
.service-card:hover .motif-sync svg { animation-duration: 1.6s; }
.motif-bars .bar { animation: barGrow 1.4s ease-in-out infinite; transform-origin: bottom; }
.motif-bars .b2 { animation-delay: 0.25s; }
.motif-bars .b3 { animation-delay: 0.5s; }
.motif-pulse .ecg { stroke-dasharray: 90; stroke-dashoffset: 90; animation: dash 2.2s ease-in-out infinite; }
.motif-stack svg { animation: bob 3s ease-in-out infinite; }
.motif-shield .check { stroke-dasharray: 26; stroke-dashoffset: 26; animation: dash 2.4s ease-in-out infinite; }
.motif-nodes svg { animation: nodePulse 2.4s ease-in-out infinite; transform-origin: 50% 50%; }
.motif-people svg { animation: sway 3.2s ease-in-out infinite; transform-origin: 50% 80%; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes barGrow { 0%,100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }
@keyframes dash { 0% { stroke-dashoffset: 90; } 55% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -90; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes nodePulse { 0%,100% { transform: scale(0.92); opacity: 0.7; } 50% { transform: scale(1.05); opacity: 1; } }
@keyframes sway { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
@media (max-width: 980px) { .card-motif { width: 32px; height: 32px; top: 18px; right: 16px; } }


/* ===================== Book a Demo Class section ===================== */
.demo-section { background: var(--bg-blue-soft); }

.demo-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7, 29, 70, 0.12);
}

/* LEFT */
.demo-left { position: relative; min-height: 520px; }
.demo-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 36px 34px;
  color: #fff;
  background: linear-gradient(180deg, rgba(4,18,45,0.15) 0%, rgba(4,18,45,0.55) 55%, rgba(4,18,45,0.88) 100%);
}
.demo-overlay h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
}
.demo-overlay p {
  font-size: 14px;
  line-height: 1.6;
  color: #dbe6f7;
  max-width: 440px;
}
.demo-stats {
  display: flex;
  gap: 26px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.demo-stats div { display: flex; flex-direction: column; }
.demo-stats strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--amber);
}
.demo-stats span { font-size: 12.5px; color: #cbd8ee; }

/* RIGHT */
.demo-right { padding: 40px 42px; }
.demo-title {
  font-family: var(--font-display);
  font-size: 27px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px;
}
.demo-title span { color: var(--amber); }
.demo-sub {
  color: var(--slate-light);
  font-size: 14px;
  margin-bottom: 22px;
}
.demo-label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  margin: 16px 0 7px;
}
.demo-label span { color: #ef4444; }
.demo-input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy);
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.demo-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10,102,194,0.12);
  background: #fff;
}
.demo-phone {
  position: relative;
  width: 100%;
  overflow: visible;
}

.demo-phone .iti {
  position: relative;
  width: 100%;
}

.demo-phone-input {
  width: 100% !important;
  height: 50px;
  padding: 13px 15px 13px 112px !important;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  background: #f8fafc;
  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
}

.demo-phone-input:focus {
  outline: none;
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.12);
}

.demo-phone .iti__selected-country {
  padding: 0 14px !important;
  background: transparent !important;
  border: 0 !important;
}

.demo-phone .iti__selected-dial-code {
  margin-left: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.iti--container {
  z-index: 120000 !important;
}

.iti--container .iti__dropdown-content {
  min-width: 330px;
  max-width: min(390px, calc(100vw - 24px));
  max-height: 320px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #cfdbea;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(7, 29, 70, 0.18);
}

.iti--container .iti__search-input {
  width: calc(100% - 20px);
  height: 42px;
  margin: 10px;
  padding: 9px 12px;
  border: 1px solid #cfdbea;
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}

.iti--container .iti__country-list {
  max-height: 245px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
}

.iti--container .iti__country {
  min-height: 42px;
  padding: 9px 12px;
  font-size: 14px;
}

.iti--container .iti__country.iti__highlight {
  background: #eaf3ff;
}

@media (max-width: 600px) {
  .iti--container .iti__dropdown-content {
    min-width: 0;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }
}

.demo-captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 4px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f9fafb;
  max-width: 300px;
}
.demo-captcha-box {
  width: 24px; height: 24px;
  border: 2px solid #b6bcc7;
  border-radius: 4px;
  background: #fff;
}
.demo-captcha-label { font-size: 14px; color: var(--slate); flex: 1; }
.demo-captcha-logo { font-size: 10px; color: #9aa3b2; letter-spacing: 0.3px; }

.demo-submit {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.demo-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.4);
}

@media (max-width: 880px) {
  .demo-card { grid-template-columns: 1fr; }
  .demo-left { min-height: 360px; }
  .demo-right { padding: 30px 24px; }
}

/* ===== About section: visible background photo ===== */

#about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background image */
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background-image: url("https://images.unsplash.com/photo-1551434678-e076c223a692?w=1600&q=85");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.32;
  filter: saturate(0.9) contrast(1.05);
}

/* Light overlay */
#about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    180deg,
    rgba(239, 246, 255, 0.48) 0%,
    rgba(255, 255, 255, 0.60) 50%,
    rgba(239, 246, 255, 0.52) 100%
  );
}

/* ===== Floating vertical "Enquire Now" tab ===== */
.enquire-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 900;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding: 16px 10px;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 6px 18px rgba(22, 163, 74, 0.35);
  cursor: pointer;
  transition: padding-right 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.enquire-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  display: block;
}
.enquire-tab:hover {
  padding-right: 16px;
  background: linear-gradient(135deg, #15803d, #16a34a);
  box-shadow: -6px 8px 22px rgba(22, 163, 74, 0.45);
}
@media (max-width: 560px) {
  .enquire-tab { font-size: 12px; padding: 12px 8px; }
}


/* ===================== AUTH: button, name, modal ===================== */
#authArea { display: flex; align-items: center; gap: 12px; }
.nav-login-btn {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff; font-weight: 700; font-size: 14px; padding: 10px 22px;
  border: none; border-radius: 10px; cursor: pointer; font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-login-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(10,102,194,0.3); }
.nav-user { display: flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 600; font-size: 14px; }
.nav-user-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.nav-logout { background: transparent; border: 1.5px solid var(--border); color: var(--slate); font-weight: 600; font-size: 13px; padding: 7px 14px; border-radius: 9px; cursor: pointer; font-family: inherit; transition: 0.2s; }
.nav-logout:hover { border-color: var(--blue); color: var(--blue); }

.auth-overlay { position: fixed; inset: 0; background: rgba(7,29,70,0.55); backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.auth-overlay.open { display: flex; }
.auth-modal { background: #fff; width: 100%; max-width: 620px; border-radius: 22px; padding: 38px 40px 34px; position: relative; box-shadow: 0 30px 80px rgba(7,29,70,0.3); max-height: 92vh; overflow-y: auto; animation: authPop 0.3s ease; }
@keyframes authPop { from { transform: translateY(16px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
.auth-close { position: absolute; top: 16px; right: 18px; width: 34px; height: 34px; border: none; background: var(--bg-blue-soft); color: var(--slate); font-size: 22px; line-height: 1; border-radius: 50%; cursor: pointer; transition: 0.2s; }
.auth-close:hover { background: #e0ecff; color: var(--navy); }
.auth-title { font-family: var(--font-display); font-size: 26px; color: var(--blue); text-align: center; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--slate-light); font-size: 14px; margin-bottom: 22px; }
.auth-label { display: block; font-weight: 600; font-size: 13.5px; color: var(--navy); margin: 14px 0 7px; }
.auth-label span { color: #ef4444; }
.auth-input { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 11px; font-size: 14px; font-family: inherit; color: var(--navy); background: #fbfcff; transition: border-color 0.2s, box-shadow 0.2s; }
.auth-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,102,194,0.12); }
.auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-pass-wrap { position: relative; }
.auth-eye { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 16px; opacity: 0.45; }
.auth-eye.on { opacity: 0.9; }
.auth-phone { display: flex; gap: 8px; }
.auth-code { flex: 0 0 auto; width: 100px; padding: 13px 8px; border: 1.5px solid var(--border); border-radius: 11px; background: #f1f5fb; font-size: 13px; font-family: inherit; color: var(--navy); cursor: pointer; }
.auth-phone .auth-input { flex: 1 1 auto; }
.auth-submit { width: 100%; margin-top: 18px; padding: 14px; border: none; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; font-weight: 700; font-size: 15px; font-family: inherit; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.auth-submit:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(10,102,194,0.32); }
.auth-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.auth-switch { text-align: center; margin-top: 18px; font-size: 14px; color: var(--slate); }
.auth-switch button { background: none; border: none; color: var(--blue); font-weight: 700; cursor: pointer; font-family: inherit; font-size: 14px; }
.auth-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; border-radius: 10px; padding: 10px 14px; font-size: 13.5px; margin-bottom: 6px; }
.auth-error:empty { display: none; }
@media (max-width: 560px) { .auth-row { grid-template-columns: 1fr; } .auth-modal { padding: 30px 22px 26px; } }


/* ===================== Enquiry + Google Login updates ===================== */
.contact-card select,
.hero-card select,
.sidebar-card select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy);
  background: #fbfcff;
  outline: none;
}

.contact-card select:focus,
.hero-card select:focus,
.sidebar-card select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10,102,194,0.12);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--slate-light);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.google-login-btn {
  width: 100%;
  border: 1.5px solid var(--border);
  background: #ffffff;
  color: var(--navy);
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.google-login-btn:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(7,29,70,0.12);
}

.google-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f3f6fb;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/* ===================== Dashboard ===================== */
.dash-empty {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 48px 30px;
  text-align: center;
  color: var(--slate);
}
.dash-empty h3 { font-family: var(--font-display); color: var(--navy); font-size: 20px; margin-bottom: 8px; }
.dash-empty a { color: var(--blue); font-weight: 600; }
.dash-cta {
  display: inline-block;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 11px;
  font-weight: 700;
}

.dash-group { margin-bottom: 34px; }
.dash-group-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-blue-soft);
}
.dash-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.dash-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.dash-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(7,29,70,0.10); }
.dash-card.expired { opacity: 0.7; }
.dash-card-top { display: flex; justify-content: flex-end; margin-bottom: 8px; }
.dash-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
}
.dash-badge.ok { background: #dcfce7; color: #15803d; }
.dash-badge.off { background: #fee2e2; color: #b91c1c; }
.dash-card h4 { font-family: var(--font-display); font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.dash-card p { color: var(--slate); font-size: 13.5px; line-height: 1.55; margin-bottom: 14px; }
.dash-meta { display: flex; flex-direction: column; gap: 4px; font-size: 12.5px; color: var(--slate-light); border-top: 1px solid var(--border); padding-top: 12px; }


.auth-nav-area {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.nav-login-btn {
  border: none;
  background: #0d2b5f;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.nav-login-btn:hover {
  background: #006bd6;
  transform: translateY(-1px);
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0d2b5f;
  text-decoration: none;
  font-weight: 700;
}

.nav-user-avatar {
  width: 34px;
  height: 34px;
  background: #0d2b5f;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-logout {
  border: none;
  background: transparent;
  color: #0d2b5f;
  font-weight: 700;
  cursor: pointer;
  margin-left: 8px;
}

.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 28, 0.65);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.auth-modal-overlay.active {
  display: flex;
}

.auth-modal-box {
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 26px;
  padding: 34px;
  position: relative;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.auth-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  border: none;
  background: #f1f4f9;
  color: #0d2b5f;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.auth-view h2 {
  color: #0d2b5f;
  font-size: 30px;
  margin-bottom: 8px;
}

.auth-view p {
  color: #64748b;
  margin-bottom: 22px;
}

.auth-view input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  margin-bottom: 13px;
  outline: none;
  font-size: 15px;
}

.auth-view input:focus {
  border-color: #006bd6;
  box-shadow: 0 0 0 4px rgba(0, 107, 214, 0.1);
}

.auth-submit {
  width: 100%;
  border: none;
  background: #0d2b5f;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 5px;
}

.auth-submit:hover {
  background: #006bd6;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: #8a8f98;
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.google-login-btn {
  width: 100%;
  border: 1px solid #dbe4f0;
  background: #fff;
  color: #0d2b5f;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.25s ease;
}

.google-login-btn:hover {
  background: #f8fbff;
  transform: translateY(-1px);
}

.google-login-btn span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0d2b5f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.auth-switch {
  margin-top: 20px;
  text-align: center;
  color: #64748b;
}

.auth-switch button {
  border: none;
  background: transparent;
  color: #006bd6;
  font-weight: 800;
  cursor: pointer;
}

/* ===============================
   SELF LEARNING PAGE
================================= */
.sl-hero {
  padding: 95px 20px 70px;
  background:
    radial-gradient(circle at top left, rgba(0, 107, 214, 0.14), transparent 30%),
    linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

.sl-container {
  max-width: 1250px;
  margin: 0 auto;
}

.sl-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.sl-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(13, 43, 95, 0.08);
  color: #0d2b5f;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}

.sl-hero-content h1 {
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.05;
  color: #0d2b5f;
  font-weight: 900;
  margin-bottom: 22px;
}

.sl-hero-content p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
  max-width: 780px;
}

.sl-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.sl-btn-main,
.sl-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.sl-btn-main {
  background: #0d2b5f;
  color: #fff;
}

.sl-btn-main:hover {
  background: #006bd6;
  transform: translateY(-2px);
}

.sl-btn-secondary {
  background: #fff;
  color: #0d2b5f;
  border: 1px solid #dbe4f0;
}

.sl-btn-secondary:hover {
  background: #f3f8ff;
  transform: translateY(-2px);
}

.sl-hero-card {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 25px 70px rgba(13, 43, 95, 0.12);
  border: 1px solid rgba(13, 43, 95, 0.08);
}

.sl-hero-card h3 {
  color: #0d2b5f;
  font-size: 26px;
  margin-bottom: 20px;
}

.sl-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sl-hero-card li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 16px;
  color: #1e293b;
  font-weight: 600;
}

.sl-hero-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00a86b;
  font-weight: 900;
}

/* Plans */
.sl-plans-section {
  padding: 90px 20px;
  background: #ffffff;
}

.sl-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 55px;
}

.sl-heading h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  color: #0d2b5f;
  margin-bottom: 16px;
  font-weight: 900;
}

.sl-heading p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.8;
}

.sl-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.sl-plan-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(13, 43, 95, 0.08);
  border-radius: 28px;
  padding: 34px 28px 28px;
  box-shadow: 0 20px 50px rgba(13, 43, 95, 0.08);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
}

.sl-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(13, 43, 95, 0.14);
}

.featured-plan {
  border: 2px solid #006bd6;
  transform: scale(1.02);
  box-shadow: 0 24px 70px rgba(0, 107, 214, 0.15);
}

.featured-plan:hover {
  transform: scale(1.02) translateY(-8px);
}

.sl-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, #006bd6, #0d2b5f);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(0, 107, 214, 0.2);
}

.sl-plan-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #006bd6;
  background: rgba(0, 107, 214, 0.08);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 18px;
}

.sl-plan-top h3 {
  font-size: 32px;
  color: #0d2b5f;
  margin-bottom: 12px;
  font-weight: 900;
}

.sl-price {
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 16px;
}

.sl-plan-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

.sl-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.sl-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #1e293b;
}

.sl-features.yes li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00a86b;
  font-weight: 900;
}

.sl-features.no li {
  color: #7b8794;
}

.sl-features.no li::before {
  content: "✖";
  position: absolute;
  left: 0;
  top: 0;
  color: #ef4444;
  font-weight: 900;
}

.sl-btn {
  margin-top: auto;
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 15px 20px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.sl-btn-outline {
  background: #fff;
  color: #0d2b5f;
  border: 1.5px solid #dbe4f0;
}

.sl-btn-outline:hover {
  background: #f3f8ff;
}

.sl-btn-solid {
  background: linear-gradient(135deg, #006bd6, #0d2b5f);
  color: #fff;
}

.sl-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 107, 214, 0.18);
}

.sl-btn-dark {
  background: #0d2b5f;
  color: #fff;
}

.sl-btn-dark:hover {
  background: #006bd6;
  transform: translateY(-2px);
}

/* Comparison */
.sl-comparison-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.sl-compare-box {
  background: #fff;
  border: 1px solid rgba(13, 43, 95, 0.08);
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: 0 20px 50px rgba(13, 43, 95, 0.08);
}

.sl-compare-head {
  text-align: center;
  margin-bottom: 28px;
}

.sl-compare-head h2 {
  font-size: 42px;
  color: #0d2b5f;
  margin-bottom: 10px;
  font-weight: 900;
}

.sl-compare-head p {
  color: #64748b;
  font-size: 15px;
}

.sl-table-wrap {
  overflow-x: auto;
}

.sl-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.sl-compare-table thead th {
  background: #f5f9ff;
  color: #0d2b5f;
  font-size: 16px;
  font-weight: 900;
  padding: 16px;
  text-align: center;
}

.sl-compare-table thead th:first-child {
  text-align: left;
  border-top-left-radius: 14px;
}

.sl-compare-table thead th:last-child {
  border-top-right-radius: 14px;
}

.sl-compare-table tbody td {
  padding: 16px;
  border-bottom: 1px solid #edf2f7;
  text-align: center;
  font-size: 15px;
  color: #1e293b;
}

.sl-compare-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: #0f172a;
}

.sl-compare-table tbody tr:hover {
  background: #fafcff;
}

.yes-mark {
  color: #00a86b !important;
  font-weight: 900;
}

.no-mark {
  color: #ef4444 !important;
  font-weight: 900;
}

/* CTA */
.sl-final-cta {
  padding: 60px 20px 90px;
  background: #ffffff;
}

.sl-cta-card {
  background: linear-gradient(135deg, #0d2b5f, #006bd6);
  color: #fff;
  border-radius: 32px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 26px 70px rgba(0, 107, 214, 0.2);
}

.sl-cta-card h2 {
  font-size: 38px;
  margin-bottom: 12px;
  font-weight: 900;
}

.sl-cta-card p {
  max-width: 680px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.sl-cta-card .sl-btn-main {
  background: #fff;
  color: #0d2b5f;
}

/* Responsive */
@media (max-width: 1100px) {
  .sl-hero-grid,
  .sl-plan-grid {
    grid-template-columns: 1fr;
  }

  .featured-plan,
  .featured-plan:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .sl-hero,
  .sl-plans-section,
  .sl-comparison-section {
    padding: 70px 16px;
  }

  .sl-hero-content h1 {
    font-size: 38px;
  }

  .sl-plan-card {
    padding: 26px 20px 22px;
  }

  .sl-heading h2,
  .sl-compare-head h2 {
    font-size: 32px;
  }

  .sl-price {
    font-size: 24px;
  }

  .sl-compare-box {
    padding: 24px 18px;
  }

  .sl-cta-card h2 {
    font-size: 30px;
  }
}

/* ===============================
   USER DASHBOARD — MINIMAL PREMIUM
================================= */

.dash-page {
  min-height: 100vh;
  padding: 56px 20px 80px;
  background:
    radial-gradient(circle at top right, rgba(10, 102, 194, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(7, 29, 70, 0.05), transparent 20%),
    linear-gradient(180deg, #f7fbff 0%, #f3f7fc 100%);
}

.dash-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* HERO */
.dash-hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #eef5ff 100%);
  border: 1px solid rgba(7, 29, 70, 0.08);
  border-radius: 32px;
  padding: 42px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 310px;
  align-items: center;
  gap: 36px;
  box-shadow:
    0 24px 60px rgba(7, 29, 70, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.dash-hero-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,102,194,0.12), transparent 70%);
  pointer-events: none;
}

.dash-hero-card::after {
  content: "";
  position: absolute;
  right: 110px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7,29,70,0.06), transparent 70%);
  pointer-events: none;
}

.dash-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eaf3ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}

.dash-hero-card h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 4.2vw, 66px);
  line-height: 1.04;
  letter-spacing: -1.4px;
  color: var(--navy);
  font-weight: 800;
}

.dash-hero-card p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
  color: #64748b;
}

.dash-profile-mini {
  position: relative;
  z-index: 2;
  min-width: 0;
  background: rgba(255,255,255,0.92);
  border: 1px solid #dbe7f5;
  border-radius: 26px;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(7, 29, 70, 0.08);
  backdrop-filter: blur(10px);
}

.dash-avatar {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0b2b63 0%, #0a66c2 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(10, 102, 194, 0.22);
}

.dash-profile-mini h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
}

.dash-profile-mini p {
  margin: 0;
  font-size: 14px;
  color: #6b7a90;
  line-height: 1.5;
  word-break: break-word;
}

/* SUMMARY CARDS */
.dash-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 28px 0 30px;
}

.dash-summary-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(7, 29, 70, 0.08);
  border-radius: 24px;
  padding: 24px 24px 22px;
  min-height: 164px;
  box-shadow: 0 14px 34px rgba(7, 29, 70, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dash-summary-card::before {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(10, 102, 194, 0.06);
}

.dash-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(7, 29, 70, 0.10);
}

.dash-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.dash-summary-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
}

.dash-summary-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.dash-active {
  color: #16a34a;
  font-weight: 700;
}

.dash-locked {
  color: #dc2626;
  font-weight: 700;
}

/* PANELS */
.dash-grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  gap: 26px;
  margin-bottom: 26px;
}

.dash-panel {
  background: #ffffff;
  border: 1px solid rgba(7, 29, 70, 0.08);
  border-radius: 28px;
  padding: 30px 30px;
  box-shadow: 0 16px 38px rgba(7, 29, 70, 0.05);
}

.dash-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.dash-panel-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.dash-panel-head a {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

/* EMPTY STATE */
.dash-empty {
  background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
  border: 1px dashed #c7d8ec;
  border-radius: 22px;
  padding: 36px 24px;
  text-align: center;
}

.dash-empty h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.dash-empty p,
.dash-muted {
  color: #6b7a90;
  font-size: 14px;
  line-height: 1.7;
}

.dash-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b2b63 0%, #0a66c2 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(10, 102, 194, 0.22);
}

/* LIST CARDS */
.dash-list {
  display: grid;
  gap: 14px;
}

.dash-plan-item,
.dash-history-item {
  background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
  border: 1px solid #d9e5f4;
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dash-plan-item:hover,
.dash-history-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 29, 70, 0.06);
}

.dash-plan-item h3,
.dash-history-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
}

.dash-plan-item p,
.dash-history-item p {
  margin: 0;
  color: #6b7a90;
  font-size: 14px;
  line-height: 1.6;
}

.dash-plan-item span {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.dash-history-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 16px;
}

.dash-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf3ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

/* QUICK ACTIONS */
.dash-actions {
  display: grid;
  gap: 14px;
}

.dash-actions a,
.dash-actions button {
  position: relative;
  width: 100%;
  padding: 18px 52px 18px 20px;
  border-radius: 18px;
  border: 1px solid #cfdced;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.24s ease;
}

.dash-actions a::after,
.dash-actions button::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #7b8aa0;
  transition: transform 0.24s ease, color 0.24s ease;
}

.dash-actions a:hover,
.dash-actions button:hover {
  background: linear-gradient(135deg, #0b2b63 0%, #0a66c2 100%);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(10, 102, 194, 0.20);
}

.dash-actions a:hover::after,
.dash-actions button:hover::after {
  color: #ffffff;
  transform: translateY(-50%) translateX(3px);
}

/* PURCHASE HISTORY */
.dash-history {
  display: grid;
  gap: 16px;
}

.dash-history-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.dash-receipt-no {
  font-size: 12px;
  color: #6b7a90;
  font-weight: 600;
}

.dash-receipt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b2b63 0%, #0a66c2 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(10, 102, 194, 0.18);
}

.dash-receipt-btn:hover {
  transform: translateY(-1px);
}

/* LOGOUT */
.dashboard-bottom-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.dashboard-logout-btn {
  border: none;
  border-radius: 999px;
  padding: 15px 34px;
  min-width: 190px;
  background: linear-gradient(135deg, #0b2b63 0%, #0a66c2 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(10, 102, 194, 0.20);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dashboard-logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(10, 102, 194, 0.24);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .dash-hero-card {
    grid-template-columns: 1fr;
    padding: 34px 30px;
  }

  .dash-profile-mini {
    width: 100%;
    max-width: 420px;
  }

  .dash-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dash-grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dash-page {
    padding: 38px 14px 64px;
  }

  .dash-hero-card {
    border-radius: 24px;
    padding: 26px 20px;
    gap: 24px;
  }

  .dash-hero-card h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.8px;
  }

  .dash-hero-card p {
    font-size: 15px;
  }

  .dash-profile-mini {
    padding: 18px;
    border-radius: 20px;
  }

  .dash-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 22px;
    border-radius: 18px;
  }

  .dash-profile-mini h3 {
    font-size: 20px;
  }

  .dash-summary-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dash-summary-card,
  .dash-panel {
    border-radius: 20px;
    padding: 20px;
  }

  .dash-panel-head h2 {
    font-size: 22px;
  }

  .dash-plan-item,
  .dash-history-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .dash-plan-item span,
  .dash-history-right {
    align-items: flex-start;
  }
}
/* ============================================
   HIRING PARTNERS SECTION
   ============================================ */

.hiring-partners-section {
  padding: 60px 0 80px;
  background: var(--bg-soft);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
}

.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  padding: 10px 0;
}

/* Linear gradients to fade out the edges for a premium look */
.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-soft), transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-soft), transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* Animations */
.scroll-ltr .marquee-track {
  animation: scroll-ltr 45s linear infinite;
}

.scroll-rtl .marquee-track {
  animation: scroll-rtl 45s linear infinite;
}

/* Pause animation on hover */
.partners-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes scroll-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes scroll-rtl {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Partner Card Styling (Glassmorphism + Premium Navy Accents) */
.partner-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 215px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(10, 102, 194, 0.12); /* Subtle blue theme border */
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(7, 29, 70, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
}

.partner-logo {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.12);
}

.partner-card span {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1px;
  white-space: nowrap;
}

/* Hover Lift Effect with Theme Accent Glow */
.partner-card:hover {
  transform: translateY(-5px) scale(1.03);
  background: var(--white);
  border-color: var(--blue-bright);
  box-shadow: 0 10px 25px rgba(10, 102, 194, 0.12);
}

@media (max-width: 768px) {
  .hiring-partners-section {
    padding: 50px 0 60px;
  }
  .partners-marquee::before,
  .partners-marquee::after {
    width: 60px;
  }
  .partner-card {
    min-width: 170px;
    padding: 12px 18px;
    gap: 8px;
  }
  .partner-card span {
    font-size: 13px;
  }
  .partner-logo {
    width: 16px;
    height: 16px;
  }
}

/* ============================================
   courses details section
   ============================================ */

   .course-acc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.course-acc-btn.secondary {
  background: #ffffff;
  color: #0d2b5f;
  border: 1px solid rgba(13, 43, 95, 0.18);
  text-decoration: none;
}

.course-acc-btn.secondary:hover {
  background: #f4f8ff;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .course-acc-actions {
    flex-direction: column;
  }

  .course-acc-actions .course-acc-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   Mobile Responsive Fixes — Logic Technologies
   ============================================================ */

@media (max-width: 1024px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .hero,
  .section,
  .course-detail-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .dash-grid-two,
  .course-detail-grid {
    grid-template-columns: 1fr !important;
  }

  .course-sidebar {
    position: static !important;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .header {
    padding: 10px 0;
  }

  .nav {
    min-height: 64px;
    gap: 12px;
  }

  .logo img {
    max-height: 46px;
    width: auto;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    border-radius: 22px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    z-index: 9999;
    backdrop-filter: blur(18px);
  }

  .nav-links.active,
  .nav-links.show,
  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .mobile-menu-btn,
  .hamburger,
  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    cursor: pointer;
    font-size: 22px;
    color: #0f172a;
  }

  .hero {
    padding: 110px 0 56px;
    min-height: auto;
  }

  .hero h1,
  .course-detail-hero h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.08 !important;
  }

  .hero p,
  .course-detail-hero p {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .hero-actions,
  .course-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions a,
  .hero-actions button,
  .course-primary-btn,
  .course-secondary-btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .course-acc,
  .feature-card,
  .dash-summary-card,
  .dash-panel,
  .course-info-card,
  .sidebar-card {
    border-radius: 20px;
  }

  .course-list-grid,
  .module-grid,
  .project-grid,
  .outcome-grid,
  .dash-summary-grid {
    grid-template-columns: 1fr !important;
  }

  .dash-page {
    padding-top: 90px;
  }

  .dash-hero-card {
    grid-template-columns: 1fr !important;
    text-align: left;
  }

  .dash-profile-mini {
    width: 100%;
  }

  img,
  video {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1,
  .course-detail-hero h1 {
    font-size: 34px !important;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .course-info-card,
  .sidebar-card,
  .dash-panel {
    padding: 20px !important;
  }

  .course-acc-head {
    padding: 18px;
  }

  .course-acc-title {
    font-size: 18px;
  }

  .course-acc-tag {
    font-size: 13px;
  }

  .course-detail-hero {
    padding: 92px 0 45px !important;
  }
}

/* ============================================================
   Course Detail Module Bullet Alignment Fix
   Applies to all course detail pages
   ============================================================ */

.module-card ul {
  margin-top: 8px !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  list-style-position: inside !important;
}

.module-card li {
  margin: 6px 0 !important;
  padding-left: 0 !important;
  color: #334155;
  line-height: 1.55;
}

.module-card h3 {
  margin-bottom: 8px !important;
}

.module-card span + h3 {
  margin-top: 8px !important;
}

/* ============================================================
Navbar name increase
   ============================================================ */

   .nav-links a {
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .nav-links a {
    font-size: 16px !important;
  }
}

/* ============================================================
   Mobile Logo Size Fix
   ============================================================ */

/* ============================================================
   FINAL Mobile Navbar + Logo Fix
   ============================================================ */

@media (max-width: 768px) {
  .header {
    padding: 12px 0 !important;
  }

  .header .nav {
    min-height: 86px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .header .logo {
    width: 130px !important;
    min-width: 130px !important;
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: visible !important;
  }

  .header .logo img {
    width: 130px !important;
    min-width: 130px !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: scale(2.2) !important;
    transform-origin: left center !important;
  }

  .nav-actions {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
  }

  .nav-user {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .nav-user-avatar {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    font-size: 18px !important;
  }

  .nav-user-name {
    display: none !important;
  }

  .nav-logout {
    font-size: 14px !important;
    padding: 9px 10px !important;
    white-space: nowrap !important;
  }

  .nav-login-btn {
    font-size: 16px !important;
    padding: 12px 24px !important;
    border-radius: 999px !important;
  }
}


/* ============================================================
   Hero Offer Strip — Full Width Below Stats, Form Safe
   ============================================================ */

.hero-offer-strip {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  padding: 18px 26px;
  border-radius: 24px;

  background: linear-gradient(135deg, #ffffff 0%, #f3f8ff 55%, #fff7ed 100%);
  border: 1px solid rgba(13, 75, 145, 0.14);
  box-shadow: 0 18px 44px rgba(8, 35, 83, 0.10);

  position: relative;
  overflow: hidden;
}

.hero-offer-strip::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -58px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(11, 99, 206, 0.13);
}

.hero-offer-strip::after {
  content: "";
  position: absolute;
  left: -52px;
  bottom: -62px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(255, 184, 77, 0.23);
}

.hero-offer-main {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 18px;

  flex: 1;
  min-width: 0;
}

.hero-offer-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  background: linear-gradient(135deg, #0b63ce, #1497e8);
  color: #ffffff;
  font-size: 23px;
  box-shadow: 0 12px 26px rgba(11, 99, 206, 0.22);
}

.hero-offer-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-offer-label {
  display: inline-flex;
  width: fit-content;

  margin-bottom: 6px;
  padding: 6px 13px;

  border-radius: 999px;
  background: rgba(11, 99, 206, 0.08);
  color: #0b63ce;

  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(11, 99, 206, 0.15);
}

.hero-offer-copy h4 {
  margin: 0 0 5px;

  color: #071b4d;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.35px;
}

.hero-offer-copy p {
  margin: 0;

  max-width: 720px;
  color: #526174;
  font-size: 15px;
  line-height: 1.45;
}

.hero-offer-action {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 18px;

  flex-shrink: 0;
  white-space: nowrap;
}

.hero-offer-action span {
  color: #0b63ce;
  font-size: 15px;
  font-weight: 900;
}

.hero-offer-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 28px;
  border-radius: 999px;

  background: #071b4d;
  color: #ffffff;

  font-size: 16px;
  font-weight: 900;
  text-decoration: none;

  box-shadow: 0 14px 28px rgba(7, 27, 77, 0.22);
  transition: 0.25s ease;
}

.hero-offer-action a:hover {
  transform: translateY(-2px);
  background: #0b63ce;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-offer-strip {
    padding: 16px;
    border-radius: 20px;

    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-offer-main {
    align-items: flex-start;
    gap: 12px;
  }

  .hero-offer-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 20px;
  }

  .hero-offer-label {
    font-size: 12px;
    padding: 5px 10px;
  }

  .hero-offer-copy h4 {
    font-size: 17px;
  }

  .hero-offer-copy p {
    font-size: 13.5px;
    max-width: none;
  }

  .hero-offer-action {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    white-space: normal;
  }

  .hero-offer-action span {
    font-size: 12px;
  }

  .hero-offer-action a {
    padding: 10px 16px;
    font-size: 13px;
  }
}



/* ============================================================
   COOKIE CONSENT — BOTTOM FULL-WIDTH BAR
============================================================ */

.cookie-overlay {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(7, 27, 55, 0.45);
  z-index: 99997;
}

.cookie-overlay.show {
  display: block;
}

/* Main bottom cookie banner */
.cookie-modal {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: auto !important;

  width: 100% !important;
  max-width: none !important;
  min-height: auto !important;

  margin: 0 !important;
  padding: 18px 30px !important;

  display: none;
  transform: none !important;
  opacity: 1 !important;

  background: rgba(24, 55, 84, 0.96) !important;
  border: 0 !important;
  border-radius: 0 !important;

  box-shadow: 0 -8px 28px rgba(4, 18, 45, 0.25) !important;

  color: #ffffff !important;
  text-align: center !important;

  overflow: visible !important;
  z-index: 99998 !important;
}

.cookie-modal.show {
  display: block !important;
}

/* Purane decorative circles remove */
.cookie-modal::before,
.cookie-modal::after {
  display: none !important;
}

/* Header wrapper ko normal rakho */
.cookie-modal-header {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Icon, heading aur close button main banner mein hide */
.cookie-modal .cookie-modal-icon,
.cookie-modal > .cookie-close,
.cookie-modal h2 {
  display: none !important;
}

/* Cookie message */
.cookie-modal p {
  display: block !important;

  max-width: 1250px !important;
  margin: 0 auto 12px !important;
  padding: 0 !important;

  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

/* Learn more button ko plain text link jaisa banao */
.cookie-modal .cookie-learn-more {
  display: inline !important;

  width: auto !important;
  min-width: 0 !important;
  height: auto !important;

  margin: 0 0 0 4px !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
  color: #ffffff !important;

  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 700 !important;
  line-height: inherit !important;

  text-decoration: underline !important;
  text-underline-offset: 3px !important;

  box-shadow: none !important;
  cursor: pointer !important;
}

/* Buttons row */
.cookie-modal .cookie-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  grid-template-columns: none !important;

  gap: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Common buttons */
.cookie-modal .cookie-btn {
  width: auto !important;
  min-width: 135px !important;
  height: 44px !important;

  margin: 0 !important;
  padding: 8px 22px !important;

  border-radius: 6px !important;

  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  box-shadow: none !important;
  transform: none !important;
  cursor: pointer !important;
}

/* Accept All */
.cookie-modal .cookie-primary {
  border: 2px solid #ffffff !important;
  background: #ffffff !important;
  color: #334155 !important;
}

/* Preferences */
.cookie-modal .cookie-light,
.cookie-modal .cookie-outline {
  border: 2px solid #ffffff !important;
  background: transparent !important;
  color: #ffffff !important;
}

.cookie-modal .cookie-primary:hover {
  background: #eef4fa !important;
}

.cookie-modal .cookie-light:hover,
.cookie-modal .cookie-outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}


/* ============================================================
   COOKIE PREFERENCES POPUP
============================================================ */

.cookie-settings-modal {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  bottom: auto !important;

  display: none;
  width: min(620px, calc(100% - 32px)) !important;
  max-height: calc(100vh - 40px) !important;

  padding: 30px !important;

  transform: translate(-50%, -50%) !important;
  overflow-y: auto !important;

  background: #ffffff !important;
  border: 1px solid #dce6f2 !important;
  border-radius: 18px !important;

  box-shadow: 0 28px 80px rgba(7, 27, 77, 0.32) !important;

  opacity: 1 !important;
  z-index: 99999 !important;
}

.cookie-settings-modal.show {
  display: block !important;
}

.cookie-settings-modal::before,
.cookie-settings-modal::after {
  display: none !important;
}

.cookie-settings-modal .cookie-close {
  position: absolute !important;
  top: 14px !important;
  right: 16px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 50% !important;

  background: #eef4fa !important;
  color: #071b4d !important;

  font-size: 25px !important;
  cursor: pointer !important;
}

.cookie-settings-modal h2 {
  display: block !important;
  margin: 0 42px 10px 0 !important;

  color: #071b4d !important;
  font-size: 26px !important;
}

.cookie-settings-modal > p {
  margin: 0 0 18px !important;

  color: #526174 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.cookie-setting-row {
  margin-top: 12px !important;
  padding: 16px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;

  background: #f8fbff !important;
  border: 1px solid #dce6f2 !important;
  border-radius: 13px !important;
}

.cookie-setting-row h4 {
  margin: 0 0 4px !important;
  color: #071b4d !important;
  font-size: 15px !important;
}

.cookie-setting-row span {
  color: #64748b !important;
  font-size: 13px !important;
}

.cookie-switch {
  position: relative !important;
  flex: 0 0 54px !important;

  width: 54px !important;
  height: 30px !important;
}

.cookie-switch input {
  display: none !important;
}

.cookie-switch span {
  position: absolute !important;
  inset: 0 !important;

  background: #cbd5e1 !important;
  border-radius: 999px !important;
  cursor: pointer !important;
}

.cookie-switch span::before {
  content: "" !important;
  position: absolute !important;
  top: 4px !important;
  left: 4px !important;

  width: 22px !important;
  height: 22px !important;

  background: #ffffff !important;
  border-radius: 50% !important;
  transition: 0.2s ease !important;
}

.cookie-switch input:checked + span {
  background: #0b63ce !important;
}

.cookie-switch input:checked + span::before {
  transform: translateX(24px) !important;
}

.cookie-settings-actions {
  display: flex !important;
  justify-content: flex-end !important;
  grid-template-columns: none !important;

  gap: 12px !important;
  margin-top: 22px !important;
}

.cookie-settings-actions .cookie-btn {
  min-width: 150px !important;
  padding: 11px 18px !important;
  border-radius: 8px !important;
}

.cookie-settings-actions .cookie-primary {
  border: 2px solid #0b63ce !important;
  background: #0b63ce !important;
  color: #ffffff !important;
}

.cookie-settings-actions .cookie-light {
  border: 2px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #334155 !important;
}

body.cookie-open {
  overflow: hidden !important;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 640px) {
  .cookie-modal {
    padding: 14px 12px !important;
  }

  .cookie-modal p {
    margin-bottom: 12px !important;
    font-size: 13px !important;
  }

  .cookie-modal .cookie-actions {
    gap: 8px !important;
  }

  .cookie-modal .cookie-btn {
    flex: 1 !important;
    min-width: 0 !important;
    height: 42px !important;
    padding: 8px 10px !important;
    font-size: 13px !important;
  }

  .cookie-settings-modal {
    width: calc(100% - 24px) !important;
    padding: 24px 18px !important;
  }

  .cookie-settings-actions {
    flex-direction: column !important;
  }

  .cookie-settings-actions .cookie-btn {
    width: 100% !important;
  }
}




/* ============================================================
   SAP Certification Attempts Highlight
   ============================================================ */

.cert-attempts-box {
  margin: 28px 0 26px;
  padding: 18px 20px;

  display: flex;
  align-items: flex-start;
  gap: 14px;

  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cert-attempt-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ffffff;
  color: #0b63ce;

  font-size: 18px;
  font-weight: 900;
}

.cert-attempts-box strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 6px;
}

.cert-attempts-box span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

/* Mobile */
@media (max-width: 768px) {
  .cert-attempts-box {
    margin: 22px 0 22px;
    padding: 16px;
    border-radius: 18px;
  }

  .cert-attempt-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 16px;
  }

  .cert-attempts-box strong {
    font-size: 16px;
  }

  .cert-attempts-box span {
    font-size: 13px;
  }
}

/* ============================================================
   Self Learning Login Button Click Fix
   Only for self-learning.html
   ============================================================ */

.self-learning-page .navbar {
  position: relative;
  z-index: 100;
}

.self-learning-page .nav-login-btn,
.self-learning-page .self-learning-login-btn {
  position: relative;
  z-index: 101;
  pointer-events: auto;
  cursor: pointer;
}

/* Decorative layers should not block navbar clicks */
.self-learning-page .sl-hero::before,
.self-learning-page .sl-hero::after {
  pointer-events: none;
}

/* ============================================================
   Footer Location Map
   ============================================================ */

.footer-map {
  width: 100%;
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.footer-map iframe {
  width: 100%;
  height: 210px;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(95%);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-map iframe {
    height: 230px;
  }
}

/* ============================================================
   FINAL FIX — Course Module Bullets No Overlap
   ============================================================ */

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;

  padding: 0 !important;
  margin: 0 !important;

  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;

  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;

  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

.module-card h3 {
  margin: 0 0 16px 0 !important;
}

/* ============================================================
   FIX — Advanced Excel Sidebar Restored
   ============================================================ */

.excel-enroll-card {
  background: linear-gradient(135deg, #166534, #16a34a) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.excel-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.excel-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.excel-free-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.excel-free-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.excel-free-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.excel-free-box strong {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.excel-free-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.excel-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #166534 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.excel-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.sidebar-enquire-btn {
  background: #f0fdf4 !important;
  color: #166534 !important;
  border-color: rgba(22, 101, 52, 0.12) !important;
}

/* ============================================================
   FIX — AI/ML Course Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #3730a3 !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* AI/ML Sidebar Restored */
.ai-enroll-card {
  background: linear-gradient(135deg, #3730a3, #4f46e5) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.ai-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.ai-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.ai-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.ai-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.ai-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.ai-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.ai-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.ai-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.ai-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.ai-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #3730a3 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.ai-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.ai-sidebar-enquire-btn {
  background: #eef2ff !important;
  color: #3730a3 !important;
  border-color: rgba(55, 48, 163, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Artificial Intelligence Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #581c87 !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Artificial Intelligence Sidebar Restored */
.ai-course-enroll-card {
  background: linear-gradient(135deg, #581c87, #7c3aed) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.ai-course-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.ai-course-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.ai-course-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.ai-course-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.ai-course-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.ai-course-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.ai-course-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.ai-course-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.ai-course-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.ai-course-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #581c87 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.ai-course-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.ai-course-sidebar-enquire-btn {
  background: #faf5ff !important;
  color: #581c87 !important;
  border-color: rgba(88, 28, 135, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — AWS Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #92400e !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* AWS Sidebar Restored */
.aws-enroll-card {
  background: linear-gradient(135deg, #92400e, #f59e0b) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.aws-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.aws-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.aws-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.aws-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.aws-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.aws-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.aws-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.aws-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.aws-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.aws-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #92400e !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.aws-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.aws-sidebar-enquire-btn {
  background: #fffbeb !important;
  color: #92400e !important;
  border-color: rgba(146, 64, 14, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Cyber Security Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #115e59 !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Cyber Security Sidebar Restored */
.cyber-enroll-card {
  background: linear-gradient(135deg, #115e59, #0f766e) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.cyber-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.cyber-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.cyber-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.cyber-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.cyber-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.cyber-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.cyber-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.cyber-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.cyber-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.cyber-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #115e59 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.cyber-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.cyber-sidebar-enquire-btn {
  background: #f0fdfa !important;
  color: #115e59 !important;
  border-color: rgba(17, 94, 89, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Data Analytics Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #1e3a8a !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Data Analytics Sidebar Restored */
.analytics-enroll-card {
  background: linear-gradient(135deg, #1e3a8a, #2563eb) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.analytics-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.analytics-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.analytics-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.analytics-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.analytics-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.analytics-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.analytics-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.analytics-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.analytics-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.analytics-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #1e3a8a !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.analytics-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.analytics-sidebar-enquire-btn {
  background: #eff6ff !important;
  color: #1e3a8a !important;
  border-color: rgba(30, 58, 138, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Data Science Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #075985 !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Data Science Sidebar Restored */
.data-science-enroll-card {
  background: linear-gradient(135deg, #075985, #0284c7) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.data-science-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.data-science-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.data-science-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.data-science-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.data-science-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.data-science-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.data-science-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.data-science-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.data-science-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.data-science-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #075985 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.data-science-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.data-science-sidebar-enquire-btn {
  background: #f0f9ff !important;
  color: #075985 !important;
  border-color: rgba(7, 89, 133, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Digital Marketing Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #9a3412 !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Digital Marketing Sidebar Restored */
.digital-enroll-card {
  background: linear-gradient(135deg, #9a3412, #ea580c) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.digital-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.digital-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.digital-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.digital-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.digital-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.digital-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.digital-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.digital-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.digital-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.digital-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #9a3412 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.digital-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.digital-sidebar-enquire-btn {
  background: #fff7ed !important;
  color: #9a3412 !important;
  border-color: rgba(154, 52, 18, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}


/* ============================================================
   FIX — Finance Management Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #065f46 !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Finance Sidebar Restored */
.finance-enroll-card {
  background: linear-gradient(135deg, #065f46, #059669) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.finance-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.finance-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.finance-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.finance-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.finance-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.finance-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.finance-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.finance-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.finance-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.finance-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #065f46 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.finance-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.finance-sidebar-enquire-btn {
  background: #ecfdf5 !important;
  color: #065f46 !important;
  border-color: rgba(6, 95, 70, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — HR Management Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #9d174d !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* HR Sidebar Restored */
.hr-enroll-card {
  background: linear-gradient(135deg, #9d174d, #db2777) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.hr-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.hr-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.hr-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.hr-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.hr-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.hr-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.hr-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.hr-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.hr-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.hr-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #9d174d !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.hr-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.hr-sidebar-enquire-btn {
  background: #fdf2f8 !important;
  color: #9d174d !important;
  border-color: rgba(157, 23, 77, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Java Full Stack Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #312e81 !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Java Sidebar Restored */
.java-enroll-card {
  background: linear-gradient(135deg, #312e81, #4f46e5) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.java-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.java-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.java-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.java-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.java-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.java-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.java-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.java-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.java-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.java-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #312e81 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.java-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.java-sidebar-enquire-btn {
  background: #f5f6ff !important;
  color: #312e81 !important;
  border-color: rgba(49, 46, 129, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Oracle DBA Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #7f1d1d !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Oracle Sidebar Restored */
.oracle-enroll-card {
  background: linear-gradient(135deg, #7f1d1d, #dc2626) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.oracle-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.oracle-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.oracle-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.oracle-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.oracle-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.oracle-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.oracle-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.oracle-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.oracle-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.oracle-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #7f1d1d !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.oracle-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.oracle-sidebar-enquire-btn {
  background: #fff7f7 !important;
  color: #7f1d1d !important;
  border-color: rgba(127, 29, 29, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Personality Development Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #6b21a8 !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Personality Sidebar Restored */
.personality-enroll-card {
  background: linear-gradient(135deg, #6b21a8, #9333ea) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.personality-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.personality-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.personality-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.personality-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.personality-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.personality-price-amount {
  color: #ffffff !important;
  font-size: 30px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

.personality-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.personality-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #6b21a8 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.personality-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.personality-sidebar-enquire-btn {
  background: #faf5ff !important;
  color: #6b21a8 !important;
  border-color: rgba(107, 33, 168, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Power BI Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #854d0e !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Power BI Sidebar Restored */
.powerbi-enroll-card {
  background: linear-gradient(135deg, #854d0e, #ca8a04) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.powerbi-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.powerbi-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.powerbi-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.powerbi-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.powerbi-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.powerbi-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.powerbi-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.powerbi-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.powerbi-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.powerbi-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #854d0e !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.powerbi-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.powerbi-sidebar-enquire-btn {
  background: #fefce8 !important;
  color: #854d0e !important;
  border-color: rgba(133, 77, 14, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Project Management Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #3730a3 !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Project Management Sidebar Restored */
.project-enroll-card {
  background: linear-gradient(135deg, #3730a3, #4f46e5) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.project-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.project-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.project-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.project-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.project-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.project-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.project-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.project-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.project-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.project-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #3730a3 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.project-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.project-sidebar-enquire-btn {
  background: #eef2ff !important;
  color: #3730a3 !important;
  border-color: rgba(55, 48, 163, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — SAP S/4HANA Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #075985 !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* SAP Sidebar Restored */
.sap-enroll-card {
  background: linear-gradient(135deg, #075985, #0284c7) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.sap-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.sap-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.sap-access-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 8px !important;
}

.sap-access-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.sap-access-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.sap-access-title {
  color: #ffffff !important;
  font-size: 30px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

.sap-access-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.sap-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #075985 !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.sap-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.sap-sidebar-enquire-btn {
  background: #e0f2fe !important;
  color: #075985 !important;
  border-color: rgba(7, 89, 133, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — Salesforce CRM Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #0d2b5f !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* Salesforce Sidebar Restored */
.salesforce-enroll-card {
  background: linear-gradient(135deg, #0d2b5f, #008bd6) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.salesforce-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.salesforce-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.salesforce-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.salesforce-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.salesforce-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.salesforce-price-amount {
  color: #ffffff !important;
  font-size: 30px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

.salesforce-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.salesforce-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #0d2b5f !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.salesforce-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.salesforce-sidebar-enquire-btn {
  background: #f4f8ff !important;
  color: #0d2b5f !important;
  border-color: rgba(13, 43, 95, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — SAP Global Certification Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #0d2b5f !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* SAP Global Certification Sidebar Restored */
.cert-enroll-card {
  background: linear-gradient(135deg, #0d2b5f, #006bd6) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.cert-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.cert-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.cert-attempts-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 16px !important;
  margin: 18px 0 !important;
  display: flex !important;
  gap: 12px !important;
  align-items: flex-start !important;
}

.cert-attempt-icon {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #0d2b5f !important;
  display: grid !important;
  place-items: center !important;
  font-weight: 900 !important;
}

.cert-attempts-box strong {
  color: #ffffff !important;
  display: block !important;
  font-size: 15px !important;
  margin-bottom: 6px !important;
}

.cert-attempts-box span {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.cert-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.cert-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.cert-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.cert-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.cert-price-amount .rupee {
  font-size: 28px !important;
  font-weight: 800 !important;
}

.cert-price-amount .slash {
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
}

.cert-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.cert-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #0d2b5f !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.cert-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.cert-sidebar-enquire-btn {
  background: #f4f8ff !important;
  color: #0d2b5f !important;
  border-color: rgba(13, 43, 95, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* ============================================================
   FIX — SAP Joule Module Bullets + Sidebar
   ============================================================ */

.module-card {
  padding: 26px !important;
}

.module-card span {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 26px !important;
  font-size: 20px !important;
}

.module-card h3 {
  font-size: 22px !important;
  margin: 0 0 16px 0 !important;
  color: #0d2b5f !important;
  line-height: 1.3 !important;
}

.module-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.module-card li {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 9px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #0f2747 !important;
  line-height: 1.55 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.module-card li::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  margin-top: 11px !important;
  background: #0f2747 !important;
  border-radius: 50% !important;
  opacity: 0.9 !important;
}

/* SAP Joule Sidebar Restored */
.joule-enroll-card {
  background: linear-gradient(135deg, #0d2b5f, #006bd6) !important;
  color: #ffffff !important;
  min-height: auto !important;
  height: auto !important;
  padding: 26px !important;
  display: block !important;
}

.joule-enroll-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  margin: 0 0 14px !important;
}

.joule-enroll-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.joule-price-box {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  display: grid !important;
  gap: 6px !important;
}

.joule-price-badge {
  width: fit-content !important;
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.joule-price-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  font-weight: 800 !important;
}

.joule-price-amount {
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 1px !important;
}

.joule-price-box small {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.joule-enroll-card .course-primary-btn {
  background: #ffffff !important;
  color: #0d2b5f !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.joule-enroll-card .price-note {
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 12px !important;
  text-align: center !important;
}

.joule-sidebar-enquire-btn {
  background: #f4f8ff !important;
  color: #0d2b5f !important;
  border-color: rgba(13, 43, 95, 0.12) !important;
}

@media (max-width: 700px) {
  .module-card {
    padding: 22px !important;
  }

  .module-card h3 {
    font-size: 20px !important;
  }

  .module-card li {
    font-size: 16px !important;
  }
}

/* =========================
   PREMIUM COOKIE POPUP
========================= */

.cookie-popup {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-card {
  width: 100%;
  max-width: 540px;
  background: #ffffff;
  border-radius: 24px;
  padding: 34px 34px 30px;
  position: relative;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.cookie-card h3 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  color: #14162f;
  letter-spacing: -0.8px;
}

.cookie-card p {
  margin: 0;
  color: #252b45;
  font-size: 17px;
  line-height: 1.55;
  max-width: 92%;
}

.cookie-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: #14162f;
  font-size: 42px;
  line-height: 0.8;
  cursor: pointer;
  border-radius: 50%;
}

.cookie-close:hover {
  background: #f1f3f8;
}

.cookie-actions {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cookie-btn {
  height: 64px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  transition: 0.22s ease;
}

.cookie-btn-primary {
  background: #171832;
  color: #ffffff;
}

.cookie-btn-primary:hover {
  background: #0f1026;
  transform: translateY(-2px);
}

.cookie-btn-secondary {
  background: #f0f1f5;
  color: #171832;
}

.cookie-btn-secondary:hover {
  background: #e6e8ee;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .cookie-card {
    max-width: 94%;
    padding: 28px 22px 24px;
    border-radius: 22px;
  }

  .cookie-card h3 {
    font-size: 28px;
    padding-right: 38px;
  }

  .cookie-card p {
    font-size: 15px;
    max-width: 100%;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cookie-btn {
    height: 56px;
    font-size: 17px;
  }

  .cookie-close {
    top: 16px;
    right: 16px;
    font-size: 36px;
  }
}

/* ============================================================
   PROFESSIONAL COOKIE POPUP - COMPACT + SHARP
   ============================================================ */

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 9998;
}

.cookie-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal,
.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: calc(100% - 32px);
  max-width: 520px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 9999;
}

.cookie-modal.show,
.cookie-settings-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: #f3f6fb;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-close:hover {
  background: #e7edf6;
}

.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.cookie-modal-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f0ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cookie-modal-header h2,
.cookie-settings-modal h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f1f5c;
  letter-spacing: -0.3px;
}

.cookie-modal-header p,
.cookie-settings-modal p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #5b6b84;
}

.cookie-actions,
.cookie-settings-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.cookie-btn {
  height: 54px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-primary {
  background: linear-gradient(135deg, #0f2f7a, #1462d8);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 98, 216, 0.22);
}

.cookie-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(20, 98, 216, 0.28);
}

.cookie-light {
  background: #eef2f7;
  color: #0f1f5c;
}

.cookie-light:hover {
  background: #e5ebf3;
}

.cookie-outline {
  background: #ffffff;
  color: #0f1f5c;
  border: 1.5px solid #d7dfeb;
}

.cookie-outline:hover {
  background: #f8fafc;
  border-color: #c6d2e3;
}

.cookie-settings-modal p {
  margin-bottom: 20px;
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #edf2f7;
}

.cookie-setting-row:first-of-type {
  border-top: none;
}

.cookie-setting-row h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: #0f1f5c;
}

.cookie-setting-row span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7a90;
  max-width: 360px;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 52px;
  height: 30px;
  min-width: 52px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  background: #dbe4ef;
  border-radius: 999px;
  transition: 0.25s ease;
  cursor: pointer;
}

.cookie-switch span::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
  transition: 0.25s ease;
}

.cookie-switch input:checked + span {
  background: #1462d8;
}

.cookie-switch input:checked + span::before {
  transform: translateX(22px);
}

body.cookie-open {
  overflow: hidden;
}

/* Mobile */
@media (max-width: 640px) {
  .cookie-modal,
  .cookie-settings-modal {
    max-width: 92%;
    padding: 22px;
    border-radius: 12px;
  }

  .cookie-modal-header {
    gap: 12px;
    margin-bottom: 18px;
  }

  .cookie-modal-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 20px;
  }

  .cookie-modal-header h2,
  .cookie-settings-modal h2 {
    font-size: 20px;
  }

  .cookie-modal-header p,
  .cookie-settings-modal p {
    font-size: 15px;
    line-height: 1.6;
  }

  .cookie-actions,
  .cookie-settings-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }

  .cookie-close {
    width: 38px;
    height: 38px;
    font-size: 24px;
    top: 12px;
    right: 12px;
  }

  .cookie-setting-row {
    align-items: flex-start;
  }
}

.demo-captcha {
  display: none !important;
}

/* Smooth scroll target for enquiry form */

/* Fix hero enquiry form layout */
.hero-card {
  align-self: start;
}

.hero-card form {
  width: 100%;
}

.hero-card input,
.hero-card select {
  width: 100%;
}

.hero-card-note {
  margin-top: 14px;
  display: block;
  width: 100%;
}

/* Enquiry form scroll target without breaking hero layout */
#enquiry-form {
  scroll-margin-top: 140px;
}

/* HERO LAYOUT RESTORE FIX */
.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 420px !important;
  gap: 48px !important;
  align-items: start !important;
}

.hero-content {
  grid-column: 1 !important;
}

.hero-card {
  grid-column: 2 !important;
  align-self: start !important;
}

.hero-offer-strip {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

#enquiry-form {
  scroll-margin-top: 140px;
}

/* remove broken anchor effect if added earlier */
.scroll-anchor {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-content,
  .hero-card,
  .hero-offer-strip {
    grid-column: 1 !important;
  }
}

/* ===============================
   NAV ENQUIRE BUTTON FIX - COMPACT
================================ */
.header .nav .nav-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.header .nav .nav-actions .nav-btn,
.nav-actions .nav-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 44px !important;
  padding: 0 22px !important;

  border-radius: 999px !important;
  background: #08265c !important;
  color: #ffffff !important;

  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;

  border: none !important;
  outline: none !important;
  box-shadow: 0 10px 22px rgba(8, 38, 92, 0.18) !important;

  transition: all 0.25s ease !important;
}

.header .nav .nav-actions .nav-btn:hover,
.nav-actions .nav-btn:hover {
  background: #0d47a1 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .header .nav .nav-actions .nav-btn,
  .nav-actions .nav-btn {
    height: 40px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }
}
/* Remove Standard Plan highlight */
.sl-badge {
  display: none !important;
}

/* Force all self-learning plan cards same */
.sl-plan-card,
.sl-plan-card.featured,
.sl-plan-card.popular,
.sl-plan-card.recommended,
.sl-plan-card.most-popular,
.sl-plans-grid .sl-plan-card,
.sl-plans-grid .sl-plan-card:nth-child(2) {
  border: 1px solid rgba(15, 39, 71, 0.10) !important;
  box-shadow: 0 20px 48px rgba(15, 39, 71, 0.06) !important;
  transform: none !important;
}

/* Remove special blue border from middle/standard card */
.sl-plans-grid > div:nth-child(2),
.sl-plans-grid > article:nth-child(2),
.sl-plans-grid > .sl-plan-card:nth-child(2) {
  border: 1px solid rgba(15, 39, 71, 0.10) !important;
  box-shadow: 0 20px 48px rgba(15, 39, 71, 0.06) !important;
  transform: none !important;
}

/* Hide popular badge variations */
.sl-badge,
.popular-badge,
.featured-badge,
.recommended-badge,
.most-popular-badge {
  display: none !important;
}

/* ============================================================
   TERMS POPUP FORCE VISIBILITY FIX
   ============================================================ */

#logicTermsOverlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(15, 23, 42, 0.58) !important;
  backdrop-filter: blur(7px) !important;
  -webkit-backdrop-filter: blur(7px) !important;
  z-index: 999998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  display: block !important;
}

#logicTermsOverlay.show {
  opacity: 1 !important;
  visibility: visible !important;
}

#logicTermsModal {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  width: calc(100% - 32px) !important;
  max-width: 760px !important;
  max-height: 86vh !important;
  background: #ffffff !important;
  border-radius: 22px !important;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28) !important;
  transform: translate(-50%, -50%) scale(0.96) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  display: block !important;
  overflow: hidden !important;
  z-index: 999999 !important;
}

#logicTermsModal.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

#logicTermsModal .terms-head {
  padding: 24px 28px !important;
  background: linear-gradient(135deg, #08265c, #0d47a1) !important;
  color: #ffffff !important;
  position: relative !important;
}

#logicTermsModal .terms-head h2 {
  margin: 0 0 8px !important;
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 900 !important;
}

#logicTermsModal .terms-head p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 15px !important;
}

#logicTermsModal .terms-close {
  position: absolute !important;
  top: 18px !important;
  right: 20px !important;
  width: 38px !important;
  height: 38px !important;
  border: none !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  font-size: 28px !important;
  cursor: pointer !important;
}

#logicTermsModal .terms-body {
  padding: 24px 28px !important;
  max-height: 52vh !important;
  overflow-y: auto !important;
  background: #ffffff !important;
}

#logicTermsModal .terms-section {
  border-bottom: 1px solid #e8eef7 !important;
  padding-bottom: 16px !important;
  margin-bottom: 16px !important;
}

#logicTermsModal .terms-section h3 {
  margin: 0 0 8px !important;
  color: #08265c !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

#logicTermsModal .terms-section ul {
  margin: 0 !important;
  padding-left: 18px !important;
}

#logicTermsModal .terms-section li {
  color: #475569 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  margin-bottom: 5px !important;
}

#logicTermsModal .terms-summary {
  background: #f4f8ff !important;
  border: 1px solid #dbeafe !important;
  border-radius: 16px !important;
  padding: 16px 18px !important;
}

#logicTermsModal .terms-footer {
  padding: 20px 28px 24px !important;
  border-top: 1px solid #e8eef7 !important;
  background: #ffffff !important;
}

#logicTermsModal .terms-accept-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
}

#logicTermsModal .terms-accept-row input {
  width: 18px !important;
  height: 18px !important;
  margin-top: 3px !important;
  accent-color: #08265c !important;
}

#logicTermsModal .terms-accept-row label {
  color: #0f2747 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

#logicTermsModal .terms-actions {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 14px !important;
}

#logicTermsModal .terms-btn {
  border: none !important;
  cursor: pointer !important;
  border-radius: 999px !important;
  padding: 13px 22px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

#logicTermsModal .terms-btn-cancel {
  background: #eef2f7 !important;
  color: #0f2747 !important;
}

#logicTermsModal .terms-btn-proceed {
  background: #08265c !important;
  color: #ffffff !important;
}

#logicTermsModal .terms-btn-proceed:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
}

body.terms-open {
  overflow: hidden !important;
}

@media (max-width: 640px) {
  #logicTermsModal {
    max-height: 90vh !important;
    border-radius: 18px !important;
  }

  #logicTermsModal .terms-head {
    padding: 22px 20px !important;
  }

  #logicTermsModal .terms-body {
    padding: 20px !important;
    max-height: 50vh !important;
  }

  #logicTermsModal .terms-footer {
    padding: 18px 20px 20px !important;
  }

  #logicTermsModal .terms-actions {
    flex-direction: column-reverse !important;
  }

  #logicTermsModal .terms-btn {
    width: 100% !important;
  }
}

/* ============================================================
   HIRING PARTNERS - RUNNING LOGO SLIDER
   ============================================================ */

.partners-logo-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 56px;
  display: grid;
  gap: 34px;
}

.partners-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, #f6f9fd 0%, rgba(246, 249, 253, 0) 100%);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, #f6f9fd 0%, rgba(246, 249, 253, 0) 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: partnersMove 32s linear infinite;
}

.partners-marquee-reverse .partners-track {
  animation: partnersMoveReverse 34s linear infinite;
}

.partners-logo-slider:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo-card {
  width: 250px;
  height: 86px;
  flex: 0 0 250px;
  background: #ffffff;
  border: 1px solid #dbe8f6;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(7, 27, 77, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 26px;
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  display: block;
}

@keyframes partnersMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes partnersMoveReverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .partners-logo-slider {
    margin-top: 40px;
    gap: 22px;
  }

  .partner-logo-card {
    width: 210px;
    height: 76px;
    flex-basis: 210px;
    border-radius: 16px;
    padding: 14px 22px;
  }

  .partner-logo-card img {
    max-height: 40px;
  }

  .partners-track {
    gap: 18px;
    animation-duration: 24s;
  }

  .partners-marquee-reverse .partners-track {
    animation-duration: 26s;
  }

  .partners-marquee::before,
  .partners-marquee::after {
    width: 70px;
  }
}




/* ============================================================
   HIRING PARTNERS LOGO SIZE FIX
   Some PNGs have extra transparent space, so force zoom
   ============================================================ */

.partner-logo-card {
  width: 270px !important;
  height: 96px !important;
  flex: 0 0 270px !important;
  padding: 14px 24px !important;
  overflow: hidden !important;
}

.partner-logo-card img {
  max-width: 86% !important;
  max-height: 68px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}



/* Medium small logos */
.partner-logo-card img[src*="LTIMindtree"],
.partner-logo-card img[src*="quick heal"],
.partner-logo-card img[src*="kpmg"],
.partner-logo-card img[src*="pwc"] {
  transform: scale(1.25) !important;
}

/* Already big logos should stay balanced */
.partner-logo-card img[src*="bitwise"],
.partner-logo-card img[src*="deloitte"],
.partner-logo-card img[src*="cybage"],
.partner-logo-card img[src*="deutsche bank"],
.partner-logo-card img[src*="HSBC"],
.partner-logo-card img[src*="opkey"],
.partner-logo-card img[src*="saturo"] {
  transform: scale(1) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .partner-logo-card {
    width: 220px !important;
    height: 82px !important;
    flex-basis: 220px !important;
  }

  .partner-logo-card img {
    max-height: 58px !important;
  }
}

/* ============================================================
   CLEAN FAQ SECTION - FINAL
   ============================================================ */

.faq-only-section {
  padding: 90px 0;
  background: #f6f9fd;
}

.faq-only-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}

.faq-only-heading span {
  display: inline-flex;
  padding: 9px 20px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #0d63ce;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 18px;
}

.faq-only-heading h2 {
  margin: 0 0 16px;
  color: #071b4d;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1px;
}

.faq-only-heading p {
  margin: 0 auto;
  max-width: 760px;
  color: #42526b;
  font-size: 19px;
  line-height: 1.6;
}

.faq-accordion-box {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-clean-item {
  background: #ffffff;
  border: 1px solid #dbe8f6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(7, 27, 77, 0.06);
  transition: all 0.25s ease;
}

.faq-clean-item[open] {
  border-color: #0d63ce;
  box-shadow: 0 18px 42px rgba(13, 99, 206, 0.12);
}

.faq-clean-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #071b4d;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 900;
}

.faq-clean-item summary::-webkit-details-marker {
  display: none;
}

.faq-clean-item summary i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d63ce, #00a6e8);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 25px;
  font-weight: 800;
  transition: transform 0.25s ease;
}

.faq-clean-item[open] summary i {
  transform: rotate(45deg);
}

.faq-clean-item p {
  margin: 0;
  padding: 0 28px 26px;
  color: #42526b;
  font-size: 18px;
  line-height: 1.75;
  max-width: 850px;
}

/* ============================================================
   FOOTER CONTACT CTA - HORIZONTAL BLOCK
   ============================================================ */

.footer-contact-cta {
  padding: 70px 0 0;
  background: #f6f9fd;
}

.footer-contact-card {
  background:
    radial-gradient(circle at 15% 20%, rgba(13, 99, 206, 0.24), transparent 32%),
    linear-gradient(135deg, #061a44 0%, #08265c 58%, #061735 100%);
  border-radius: 34px;
  padding: 46px 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  box-shadow: 0 28px 70px rgba(7, 27, 77, 0.22);
  overflow: hidden;
}

.footer-contact-left span {
  display: inline-flex;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #dbeafe;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-contact-left h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1px;
}

.footer-contact-left p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.footer-contact-btn {
  white-space: nowrap;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  background: #ffffff;
  color: #08265c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
}

.footer-contact-btn:hover {
  transform: translateY(-3px);
  color: #08265c;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-only-section {
    padding: 70px 0;
  }

  .faq-only-heading h2 {
    font-size: 34px;
  }

  .faq-only-heading p {
    font-size: 16px;
  }

  .faq-clean-item summary {
    padding: 20px;
    font-size: 17px;
  }

  .faq-clean-item p {
    padding: 0 20px 22px;
    font-size: 16px;
  }

  .footer-contact-card {
    grid-template-columns: 1fr;
    padding: 34px 26px;
    border-radius: 26px;
  }

  .footer-contact-left h2 {
    font-size: 32px;
  }

  .footer-contact-left p {
    font-size: 16px;
  }

  .footer-contact-btn {
    width: 100%;
  }
}

/* ============================================================
   FOOTER FULL WIDTH FIX
   ============================================================ */

.footer,
.site-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #061735 !important;
}

/* Footer ke andar content center rahega */
.footer .container,
.site-footer .container {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* Bottom copyright bhi full width */
.footer-bottom,
.site-footer-bottom {
  width: 100% !important;
  max-width: 100% !important;
}

/* Page horizontal scroll avoid */
html,
body {
  overflow-x: hidden !important;
}

@media (max-width: 768px) {
  .footer .container,
  .site-footer .container {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}

.faq-answer {
  color: #243b63 !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  font-weight: 500 !important;
  opacity: 1 !important;
}

.faq-item[open] .faq-answer {
  color: #243b63 !important;
  opacity: 1 !important;
}

.faq-item p,
.faq-answer p {
  color: #243b63 !important;
  opacity: 1 !important;
}

/* FAQ answer text black */
.faq-clean-item p,
.faq-clean-item[open] p {
  color: #000000 !important;
  opacity: 1 !important;
}


#enquiry-form {
  scroll-margin-top: 140px;
}
/* ============================================================
   HIRING PARTNERS LOGO - SAME SIZE FINAL FIX
   ============================================================ */

/* Card size medium and consistent */
.partner-logo-card {
  width: 260px !important;
  height: 92px !important;
  flex: 0 0 260px !important;
  padding: 16px 24px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #ffffff !important;
  border: 1px solid #dbe8f6 !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 30px rgba(7, 27, 77, 0.06) !important;

  overflow: hidden !important;
}

/* Reset all old individual zooms */
.partner-logo-card img {
  transform: none !important;
  scale: 1 !important;

  width: 170px !important;
  height: 52px !important;

  max-width: 170px !important;
  max-height: 52px !important;

  object-fit: contain !important;
  object-position: center !important;

  display: block !important;
  margin: 0 auto !important;
}

/* Logos with wide horizontal design */
.partner-logo-card img[src*="bitwise"],
.partner-logo-card img[src*="deloitte"],
.partner-logo-card img[src*="deutsche"],
.partner-logo-card img[src*="HSBC"],
.partner-logo-card img[src*="cybage"],
.partner-logo-card img[src*="opkey"],
.partner-logo-card img[src*="saturo"],
.partner-logo-card img[src*="pwc"] {
  width: 180px !important;
  height: 54px !important;
  max-width: 180px !important;
  max-height: 54px !important;
}

/* Logos that have lots of transparent area */
.partner-logo-card img[src*="adp"],
.partner-logo-card img[src*="bosch"],
.partner-logo-card img[src*="skoda"],
.partner-logo-card img[src*="barclays"],
.partner-logo-card img[src*="infosys"],
.partner-logo-card img[src*="hcl"],
.partner-logo-card img[src*="fujitsu"],
.partner-logo-card img[src*="synechron"],
.partner-logo-card img[src*="LTIMindtree"],
.partner-logo-card img[src*="quick"] {
  width: 150px !important;
  height: 50px !important;
  max-width: 150px !important;
  max-height: 50px !important;
}

/* Some filenames may have spaces / capital letters */
.partner-logo-card img[src*="quick heal"],
.partner-logo-card img[src*="deutsche bank"],
.partner-logo-card img[src*="Capgemini"] {
  width: 165px !important;
  height: 52px !important;
  max-width: 165px !important;
  max-height: 52px !important;
}

/* Track spacing balanced */
.partners-track {
  gap: 28px !important;
  align-items: center !important;
}

.partners-logo-slider {
  gap: 32px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .partner-logo-card {
    width: 220px !important;
    height: 82px !important;
    flex-basis: 220px !important;
    padding: 14px 20px !important;
  }

  .partner-logo-card img {
    width: 145px !important;
    height: 46px !important;
    max-width: 145px !important;
    max-height: 46px !important;
  }
}

/* ============================================================
   BLOG PAGE - FEATURED BLOG CARDS
   ============================================================ */

.blog-hero {
  padding: 90px 0 40px;
  background: linear-gradient(180deg, #eef5ff 0%, #f7fbff 100%);
}

.blog-hero .container {
  max-width: 1320px;
}

.blog-pill {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 999px;
  background: #e8f1ff;
  color: #0d63ce;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 22px;
}

.blog-hero h1 {
  margin: 0 0 14px;
  color: #071b4d;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.4px;
}

.blog-hero p {
  max-width: 760px;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

/* Listing */
.blog-listing-section {
  padding: 50px 0 90px;
  background: #eef3f9;
}

.blog-listing-section .container {
  max-width: 1320px;
}

/* Category tabs */
.blog-category-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  border-bottom: 1px solid #d7e2ef;
  margin-bottom: 38px;
}

.blog-tab {
  min-height: 52px;
  padding: 0 28px;
  border: none;
  background: #f7f9fc;
  color: #64748b;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 0;
  transition: 0.25s ease;
}

.blog-tab.active,
.blog-tab:hover {
  background: #0d63ce;
  color: #ffffff;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #dbe6f2;
  box-shadow: 0 18px 42px rgba(7, 27, 77, 0.08);
  transition: all 0.28s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(7, 27, 77, 0.14);
}

/* Image */
.blog-img {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #dbeafe;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.blog-img span {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #0d63ce;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Content */
.blog-body {
  padding: 26px 28px 28px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.blog-body h3 {
  margin: 0 0 14px;
  color: #071b4d;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 900;
}

.blog-body h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-body p {
  margin: 0 0 24px;
  color: #526176;
  font-size: 16px;
  line-height: 1.7;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.blog-author {
  color: #475569;
  font-size: 15px;
  font-weight: 700;
}

.blog-footer a {
  color: #0d63ce;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1050px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-img {
    height: 230px;
  }
}

@media (max-width: 680px) {
  .blog-hero {
    padding: 70px 0 30px;
  }

  .blog-hero h1 {
    font-size: 40px;
  }

  .blog-hero p {
    font-size: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-category-tabs {
    gap: 10px;
  }

  .blog-tab {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }

  .blog-img {
    height: 220px;
  }

  .blog-body {
    padding: 22px;
  }

  .blog-body h3 {
    font-size: 21px;
  }
}


/* ============================================================
   SINGLE BLOG PAGE
   ============================================================ */

.single-blog-page {
  background: #eef3f9;
}

.single-blog-hero {
  padding: 70px 0;
}

.single-blog-layout {
  max-width: 1260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.single-blog-content {
  background: #ffffff;
  border-radius: 22px;
  padding: 42px;
  border: 1px solid #dbe6f2;
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.08);
}

.single-blog-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.single-blog-meta span:first-child {
  background: #0d63ce;
  color: #ffffff;
  padding: 6px 13px;
  border-radius: 6px;
  text-transform: uppercase;
}

.single-blog-content h1 {
  margin: 0 0 18px;
  color: #071b4d;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 950;
}

.single-blog-intro {
  font-size: 20px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 28px;
}

.single-blog-cover {
  width: 100%;
  border-radius: 18px;
  margin: 28px 0 34px;
}

.single-blog-content h2 {
  margin: 34px 0 14px;
  color: #071b4d;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.single-blog-content p,
.single-blog-content li {
  color: #334155;
  font-size: 17px;
  line-height: 1.8;
}

.single-blog-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
  list-style: disc;
}

.single-blog-sidebar {
  position: sticky;
  top: 130px;
}

.blog-sidebar-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #dbe6f2;
  box-shadow: 0 16px 40px rgba(7, 27, 77, 0.08);
}

.blog-sidebar-card h3 {
  margin: 0 0 18px;
  color: #071b4d;
  font-size: 22px;
  font-weight: 900;
}

.blog-sidebar-card a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5edf7;
  text-decoration: none;
}

.blog-sidebar-card a:last-child {
  border-bottom: none;
}

.blog-sidebar-card img {
  width: 90px;
  height: 62px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-sidebar-card span {
  color: #071b4d;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

@media (max-width: 980px) {
  .single-blog-layout {
    grid-template-columns: 1fr;
  }

  .single-blog-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .single-blog-content {
    padding: 26px 20px;
  }

  .single-blog-content h1 {
    font-size: 32px;
  }

  .single-blog-content h2 {
    font-size: 24px;
  }

  .single-blog-content p,
  .single-blog-content li {
    font-size: 16px;
  }
}

/* ============================================================
   BLOG PAGE FINAL FIX - IMAGE + CARD DESIGN
   ============================================================ */

.blog-listing-section {
  padding: 60px 0 90px !important;
  background: #eef3f9 !important;
}

.blog-listing-section .container {
  width: min(1320px, 92%) !important;
}

.blog-category-tabs {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  padding-bottom: 24px !important;
  margin-bottom: 42px !important;
  border-bottom: 1px solid #d6e2f0 !important;
}

.blog-tab {
  min-height: 52px !important;
  padding: 0 28px !important;
  border: none !important;
  background: #f8fafc !important;
  color: #64748b !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  border-radius: 0 !important;
}

.blog-tab.active,
.blog-tab:hover {
  background: #0d63ce !important;
  color: #ffffff !important;
}

.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 30px !important;
}

.blog-card {
  background: #ffffff !important;
  border: 1px solid #dbe6f2 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 18px 44px rgba(7, 27, 77, 0.08) !important;
  transition: all 0.28s ease !important;
}

.blog-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 28px 64px rgba(7, 27, 77, 0.14) !important;
}

.blog-img {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 245px !important;
  overflow: hidden !important;
  background: #dbeafe !important;
}

.blog-img img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border: none !important;
}

.blog-card:hover .blog-img img {
  transform: scale(1.04) !important;
}

.blog-img span {
  position: absolute !important;
  top: 18px !important;
  left: 18px !important;
  z-index: 2 !important;

  background: #0d63ce !important;
  color: #ffffff !important;
  padding: 8px 15px !important;
  border-radius: 4px !important;

  font-size: 14px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.blog-body {
  padding: 28px 30px 30px !important;
}

.blog-meta {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  margin-bottom: 18px !important;

  color: #64748b !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.blog-body h3 {
  margin: 0 0 16px !important;
  color: #071b4d !important;
  font-size: 24px !important;
  line-height: 1.28 !important;
  font-weight: 900 !important;
  letter-spacing: -0.3px !important;
}

.blog-body h3 a {
  color: inherit !important;
  text-decoration: none !important;
}

.blog-body p {
  margin: 0 0 26px !important;
  color: #526176 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.blog-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.blog-author {
  color: #475569 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.blog-footer a {
  color: #0d63ce !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

/* Responsive */
@media (max-width: 1050px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .blog-img {
    height: 230px !important;
  }
}

@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-img {
    height: 220px !important;
  }

  .blog-body {
    padding: 22px !important;
  }

  .blog-body h3 {
    font-size: 21px !important;
  }
}

/* ============================================================
   BLOG CARD AUTHOR / READ MORE ALIGN FIX
   ============================================================ */

.blog-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.blog-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

/* Title height same rakho */
.blog-body h3 {
  min-height: 92px !important;
}

/* Description height same rakho */
.blog-body p {
  min-height: 118px !important;
}

/* Author + Read More always bottom me */
.blog-footer {
  margin-top: auto !important;
  padding-top: 10px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* Image height fixed */
.blog-img {
  height: 250px !important;
  flex-shrink: 0 !important;
}

.blog-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Mobile pe normal */
@media (max-width: 680px) {
  .blog-body h3,
  .blog-body p {
    min-height: auto !important;
  }
}


/* ============================================================
   BLOG DETAIL PAGE FINAL
   ============================================================ */

.single-blog-page {
  background: #eef3f9;
}

.single-blog-hero {
  padding: 70px 0;
}

.single-blog-layout {
  width: min(1260px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: start;
}

.single-blog-content {
  background: #ffffff;
  border-radius: 22px;
  padding: 42px;
  border: 1px solid #dbe6f2;
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.08);
}

.single-blog-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.single-blog-meta span:first-child {
  background: #0d63ce;
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 6px;
  text-transform: uppercase;
}

.single-blog-content h1 {
  margin: 0 0 18px;
  color: #071b4d;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 950;
}

.single-blog-intro {
  font-size: 20px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 28px;
}

.single-blog-cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  margin: 28px 0 34px;
  display: block;
}

.single-blog-content h2 {
  margin: 34px 0 14px;
  color: #071b4d;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.single-blog-content p {
  color: #334155;
  font-size: 17px;
  line-height: 1.85;
}

.single-blog-cta {
  margin-top: 42px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #08265c, #0d63ce);
  color: #ffffff;
}

.single-blog-cta h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.single-blog-cta p {
  color: #dbeafe;
  margin-bottom: 20px;
}

.single-blog-cta a {
  display: inline-flex;
  padding: 13px 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #08265c;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.single-blog-back {
  display: inline-flex;
  margin-top: 28px;
  color: #0d63ce;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.single-blog-sidebar {
  position: sticky;
  top: 130px;
}

.blog-sidebar-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #dbe6f2;
  box-shadow: 0 16px 40px rgba(7, 27, 77, 0.08);
}

.blog-sidebar-card h3 {
  margin: 0 0 18px;
  color: #071b4d;
  font-size: 22px;
  font-weight: 900;
}

.blog-sidebar-card a {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #e5edf7;
  text-decoration: none;
}

.blog-sidebar-card a:last-child {
  border-bottom: none;
}

.blog-sidebar-card img {
  width: 92px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-sidebar-card span {
  color: #071b4d;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

@media (max-width: 980px) {
  .single-blog-layout {
    grid-template-columns: 1fr;
  }

  .single-blog-sidebar {
    position: static;
  }

  .single-blog-cover {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .single-blog-content {
    padding: 26px 20px;
  }

  .single-blog-content h1 {
    font-size: 32px;
  }

  .single-blog-content h2 {
    font-size: 24px;
  }

  .single-blog-content p {
    font-size: 16px;
  }

  .single-blog-cover {
    height: 230px;
  }
}

/* ============================================================
   NAVBAR LOGOUT HIDE + AVATAR SIZE FIX
   ============================================================ */

/* Header/navbar me logout hide karo */
.header #authArea .nav-logout,
.header .nav-actions .nav-logout,
.header .nav-user .nav-logout {
  display: none !important;
}


/* Home page logged-in user alignment */
body:has(.hero) .header .nav-user {
  gap: 12px !important;
  align-items: center !important;
}

/* Home page username size thoda balanced */
body:has(.hero) .header .nav-user-name {
  font-size: 18px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

/* Dashboard logout button */
.dashboard-bottom-actions {
  width: 100%;
  margin: 45px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-logout-btn {
  min-width: 190px;
  height: 54px;
  padding: 0 34px;

  border: none;
  border-radius: 999px;
  background: #08265c;
  color: #ffffff;

  font-size: 17px;
  font-weight: 900;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 14px 32px rgba(8, 38, 92, 0.22);
  transition: all 0.25s ease;
}

.dashboard-logout-btn:hover {
  background: #0d63ce;
  transform: translateY(-2px);
}


/* ============================================================
   TERMS POINTS INLINE FIX
   ============================================================ */

.terms-section ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 14px 0 0 !important;
  display: block !important;
}

.terms-section ul li {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;

  color: #2f415c !important;
  font-size: 20px !important;
  line-height: 1.8 !important;
  font-weight: 500 !important;
}

/* Har point ke beech separator */
.terms-section ul li:not(:last-child)::after {
  content: " ";
}

/* Heading ke niche clean spacing */
.terms-section h3 {
  margin-bottom: 12px !important;
}

/* Section spacing thoda clean */
.terms-section {
  padding: 24px 0 !important;
  border-bottom: 1px solid #dbe6f2 !important;
}


/* ============================================================
   UNIVERSAL NAVBAR FINAL FIX - SAME ON ALL PAGES
   ============================================================ */

.top-bar {
  display: none !important;
}

.header {
  width: 100% !important;
  height: 112px !important;
  background: #ffffff !important;
  box-shadow: 0 4px 18px rgba(7, 29, 70, 0.08) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  overflow: visible !important;
}

.header .container.nav,
.header .nav {
  width: 92% !important;
  max-width: 1740px !important;
  height: 112px !important;
  margin: 0 auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 28px !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
}

.header .logo {
  flex: 0 0 230px !important;
  width: 230px !important;
  min-width: 230px !important;
  max-width: 230px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  overflow: visible !important;
  text-decoration: none !important;
}

.header .logo img {
  height: 105px !important;
  width: auto !important;
  max-width: 230px !important;
  object-fit: contain !important;
  display: block !important;

  margin: 0 !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.header .nav-links {
  flex: 1 1 auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 28px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;

  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.header .nav-links a {
  color: #08265c !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;

  padding: 0 !important;
  margin: 0 !important;

  letter-spacing: -0.2px !important;
}

.header .nav-links a.nav-active,
.header .nav-links a.active {
  color: #0d63ce !important;
}

.header .nav-actions,
.header #authArea,
.header .auth-nav-area {
  flex: 0 0 auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;

  gap: 12px !important;
  white-space: nowrap !important;
  min-width: max-content !important;
}

.header .nav-user {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;

  gap: 12px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;

  color: #08265c !important;
}

.header .nav-user-avatar {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;

  border-radius: 50% !important;
  background: #08265c !important;
  color: #ffffff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  margin: 0 !important;
  padding: 0 !important;
}

.header .nav-user-name {
  color: #08265c !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;

  max-width: none !important;
  overflow: visible !important;
  text-overflow: unset !important;
  white-space: nowrap !important;
}

.header .nav-logout,
.header #authArea .nav-logout,
.header .nav-actions .nav-logout,
.header .nav-user .nav-logout {
  display: none !important;
}

.header .nav-btn,
.header .nav-login-btn {
  height: 56px !important;
  padding: 0 32px !important;

  border: none !important;
  border-radius: 999px !important;
  background: #08265c !important;
  color: #ffffff !important;

  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  text-decoration: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

/* Dashboard bottom logout */
.dashboard-bottom-actions {
  width: 100% !important;
  margin: 45px 0 20px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.dashboard-logout-btn {
  min-width: 190px !important;
  height: 54px !important;
  padding: 0 34px !important;

  border: none !important;
  border-radius: 999px !important;
  background: #08265c !important;
  color: #ffffff !important;

  font-size: 17px !important;
  font-weight: 900 !important;
  cursor: pointer !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  box-shadow: 0 14px 32px rgba(8, 38, 92, 0.22) !important;
  transition: all 0.25s ease !important;
}

.dashboard-logout-btn:hover {
  background: #0d63ce !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 1450px) {
  .header .container.nav,
  .header .nav {
    width: 94% !important;
    gap: 22px !important;
  }

  .header .logo {
    flex-basis: 210px !important;
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
  }

  .header .logo img {
    height: 96px !important;
    max-width: 210px !important;
  }

  .header .nav-links {
    gap: 24px !important;
  }

  .header .nav-links a {
    font-size: 17px !important;
  }

  .header .nav-user-name {
    font-size: 17px !important;
  }
}

@media (max-width: 1250px) {
  .header .container.nav,
  .header .nav {
    width: 96% !important;
    gap: 18px !important;
  }

  .header .logo {
    flex-basis: 190px !important;
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
  }

  .header .logo img {
    height: 88px !important;
    max-width: 190px !important;
  }

  .header .nav-links {
    gap: 18px !important;
  }

  .header .nav-links a {
    font-size: 16px !important;
  }

  .header .nav-user-avatar {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    font-size: 18px !important;
  }

  .header .nav-user-name {
    font-size: 16px !important;
  }
}

/* ============================================================
   NAVBAR FONT WEIGHT SOFT FIX - FINAL
   Paste at VERY END of style.css
   ============================================================ */

html body .header .nav-links a,
html body:has(.hero) .header .nav-links a {
  font-size: 17px !important;
  font-weight: 650 !important;
  letter-spacing: -0.1px !important;
}

html body .header .nav-user-name,
html body:has(.hero) .header .nav-user-name {
  font-size: 17px !important;
  font-weight: 650 !important;
}

html body .header .nav-user-avatar,
html body:has(.hero) .header .nav-user-avatar {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

/* Enquire/Login button bhi zyada bold na lage */
html body .header .nav-btn,
html body .header .nav-login-btn,
html body:has(.hero) .header .nav-btn,
html body:has(.hero) .header .nav-login-btn {
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* ============================================================
   NAVBAR FINAL SIZE FIX - LOGO BIG + TABS NORMAL + USER SMALL
   PASTE THIS AT VERY END OF style.css
   ============================================================ */

/* Header same */
html body .header,
html body:has(.hero) .header {
  height: 112px !important;
  min-height: 112px !important;
  max-height: 112px !important;
  overflow: visible !important;
}

/* Navbar layout */
html body .header .container.nav,
html body .header .nav,
html body:has(.hero) .header .container.nav,
html body:has(.hero) .header .nav {
  height: 112px !important;
  min-height: 112px !important;
  max-height: 112px !important;

  grid-template-columns: 275px minmax(0, 1fr) auto !important;
  column-gap: 24px !important;

  align-items: center !important;
  overflow: visible !important;
}

/* LOGO BIG */
html body .header .logo,
html body:has(.hero) .header .logo {
  width: 275px !important;
  min-width: 275px !important;
  max-width: 275px !important;
  height: 112px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: visible !important;
}

html body .header .logo img,
html body:has(.hero) .header .logo img {
  height: 145px !important;
  max-height: none !important;
  width: auto !important;
  max-width: 275px !important;

  object-fit: contain !important;
  transform: none !important;
  scale: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* NAV TABS - NOT TOO BOLD */
html body .header .nav-links,
html body:has(.hero) .header .nav-links {
  gap: 26px !important;
}

html body .header .nav-links a,
html body:has(.hero) .header .nav-links a {
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  color: #08265c !important;
}

/* USER AREA SMALL */
html body .header .nav-user,
html body:has(.hero) .header .nav-user {
  gap: 8px !important;
}

html body .header .nav-user-avatar,
html body:has(.hero) .header .nav-user-avatar {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;

  font-size: 15px !important;
  font-weight: 700 !important;
}

html body .header .nav-user-name,
html body:has(.hero) .header .nav-user-name {
  font-size: 15px !important;
  font-weight: 600 !important;
}

/* LOGIN / ENQUIRE BUTTON SMALL */
html body .header .nav-btn,
html body .header .nav-login-btn,
html body:has(.hero) .header .nav-btn,
html body:has(.hero) .header .nav-login-btn {
  height: 46px !important;
  padding: 0 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

/* Laptop also same */
@media (max-width: 1450px) {
  html body .header .container.nav,
  html body .header .nav,
  html body:has(.hero) .header .container.nav,
  html body:has(.hero) .header .nav {
    grid-template-columns: 255px minmax(0, 1fr) auto !important;
    column-gap: 22px !important;
  }

  html body .header .logo,
  html body:has(.hero) .header .logo {
    width: 255px !important;
    min-width: 255px !important;
    max-width: 255px !important;
  }

  html body .header .logo img,
  html body:has(.hero) .header .logo img {
    height: 135px !important;
    max-width: 255px !important;
    max-height: none !important;
  }

  html body .header .nav-links,
  html body:has(.hero) .header .nav-links {
    gap: 22px !important;
  }

  html body .header .nav-links a,
  html body:has(.hero) .header .nav-links a {
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  html body .header .nav-user-avatar,
  html body:has(.hero) .header .nav-user-avatar {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    font-size: 15px !important;
  }

  html body .header .nav-user-name,
  html body:has(.hero) .header .nav-user-name {
    font-size: 15px !important;
    font-weight: 600 !important;
  }
}

/* ============================================================
   COMPACT UPCOMING BATCHES UNDER OFFER - FINAL
   ============================================================ */

.creative-batches-section {
  padding: 0 0 42px !important;
  background: #f4f9ff !important;
}

.creative-batches-wrap {
  width: min(1160px, 92%) !important;
  margin: 0 auto !important;
}

.batch-orbit-card {
  position: relative !important;
  width: 100% !important;
  min-height: 150px !important;
  height: auto !important;

  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  align-items: center !important;
  gap: 26px !important;

  padding: 24px 30px !important;

  background: #ffffff !important;
  border: 1px solid #dbe8f6 !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 45px rgba(7, 29, 70, 0.08) !important;

  overflow: hidden !important;
}

/* subtle small animated circle only */
.batch-orbit-ring {
  position: absolute !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}

.ring-one {
  width: 135px !important;
  height: 135px !important;
  right: 34px !important;
  top: -46px !important;
  border: 2px dashed rgba(13, 99, 206, 0.20) !important;
  animation: batchRotate 18s linear infinite !important;
}

.ring-two {
  width: 92px !important;
  height: 92px !important;
  right: 78px !important;
  bottom: -35px !important;
  border: 2px solid rgba(245, 158, 11, 0.18) !important;
  animation: batchRotateReverse 20s linear infinite !important;
}

.ring-three {
  display: none !important;
}

@keyframes batchRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes batchRotateReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* left title box */
.batch-orbit-center {
  position: relative !important;
  z-index: 2 !important;

  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;

  background: transparent !important;
  box-shadow: none !important;
  color: #08265c !important;

  display: block !important;
  text-align: left !important;
  padding: 0 !important;
}

.batch-mini-label {
  display: inline-flex !important;
  margin-bottom: 10px !important;
  padding: 7px 14px !important;

  border-radius: 999px !important;
  background: #eaf3ff !important;
  color: #0d63ce !important;

  font-size: 13px !important;
  font-weight: 800 !important;
}

.batch-orbit-center h2 {
  margin: 0 0 6px !important;
  color: #08265c !important;
  font-size: 25px !important;
  line-height: 1.15 !important;
  font-weight: 850 !important;
}

.batch-orbit-center p {
  margin: 0 !important;
  color: #475569 !important;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
}

/* right cards horizontal */
.batch-floating-card {
  position: relative !important;
  z-index: 3 !important;

  min-width: 0 !important;
  width: auto !important;

  padding: 14px 18px !important;
  border-radius: 16px !important;

  background: #f8fbff !important;
  border: 1px solid #dbe8f6 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;

  box-shadow: none !important;
  animation: none !important;
}

.batch-card-one,
.batch-card-two,
.batch-card-three {
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

/* make cards sit in one row */
.batch-orbit-card .batch-floating-card {
  margin: 0 !important;
}

.batch-orbit-card {
  grid-template-areas:
    "title cards";
}

.batch-orbit-center {
  grid-area: title !important;
}

.batch-card-one,
.batch-card-two,
.batch-card-three {
  grid-area: cards !important;
}

/* force right side row using contents */
.batch-orbit-card {
  display: grid !important;
}

.batch-floating-card span {
  color: #08265c !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.batch-floating-card strong {
  color: #f59e0b !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

/* align 3 cards */
.batch-card-one {
  justify-self: start !important;
  transform: translateX(0) !important;
}

.batch-card-two {
  justify-self: center !important;
  transform: translateX(0) !important;
}

.batch-card-three {
  justify-self: end !important;
  transform: translateX(0) !important;
}

/* important: convert cards parent behavior */
.batch-orbit-card {
  grid-template-columns: 260px repeat(3, 1fr) !important;
}

.batch-orbit-center {
  grid-column: 1 / 2 !important;
}

.batch-card-one {
  grid-column: 2 / 3 !important;
}

.batch-card-two {
  grid-column: 3 / 4 !important;
}

.batch-card-three {
  grid-column: 4 / 5 !important;
}

.batch-orbit-card::before,
.batch-orbit-card::after {
  display: none !important;
}

/* mobile */
@media (max-width: 900px) {
  .batch-orbit-card {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 22px !important;
  }

  .batch-orbit-center,
  .batch-card-one,
  .batch-card-two,
  .batch-card-three {
    grid-column: auto !important;
  }

  .batch-floating-card {
    width: 100% !important;
  }
}

/* ============================================================
   TERMS MODAL FINAL HEIGHT + BUTTON VISIBILITY FIX
   ============================================================ */

/* Modal ko screen ke andar force karo */
.terms-modal {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;

  transform: translate(-50%, -50%) !important;

  width: min(1140px, 92vw) !important;
  height: min(760px, 86vh) !important;
  max-height: 86vh !important;

  display: flex !important;
  flex-direction: column !important;

  overflow: hidden !important;
  border-radius: 30px !important;
}

/* Header fixed rahe */
.terms-head {
  flex: 0 0 auto !important;
  padding: 34px 42px 30px !important;
}

/* Sirf terms body scroll kare */
.terms-body {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  max-height: none !important;

  overflow-y: auto !important;
  overflow-x: hidden !important;

  padding: 0 42px 22px !important;
}

/* Footer modal ke andar fixed visible rahe */
.terms-footer {
  flex: 0 0 auto !important;

  background: #ffffff !important;
  border-top: 1px solid #e2e8f0 !important;

  padding: 18px 42px 24px !important;
  margin: 0 !important;

  position: relative !important;
  z-index: 10 !important;
}

/* Checkbox row */
.terms-accept-row {
  margin: 0 0 16px !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

/* Buttons row */
.terms-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 18px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* Buttons proper visible */
.terms-btn {
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;

  padding: 0 34px !important;
  border-radius: 999px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  white-space: nowrap !important;
  overflow: visible !important;
}

/* Proceed button width balanced */
.terms-btn-proceed {
  min-width: 280px !important;
}

/* Cancel button */
.terms-btn-cancel {
  min-width: 150px !important;
}

/* Mobile */
@media (max-width: 640px) {
  .terms-modal {
    width: 94vw !important;
    height: 88vh !important;
    max-height: 88vh !important;
    border-radius: 22px !important;
  }

  .terms-head {
    padding: 24px 22px 22px !important;
  }

  .terms-body {
    padding: 0 22px 18px !important;
  }

  .terms-footer {
    padding: 16px 20px 20px !important;
  }

  .terms-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .terms-btn,
  .terms-btn-proceed,
  .terms-btn-cancel {
    width: 100% !important;
    min-width: 100% !important;
  }
}

/* ============================================================
   COURSE FILTER ALIGNMENT FIX - FINAL
   ============================================================ */

.course-item {
  display: grid !important;
  grid-template-columns: 74px minmax(0, 1fr) 190px !important;
  align-items: center !important;
  column-gap: 24px !important;
}

/* Jab JS item ko show kare, tab bhi grid hi rahe */
.course-item[style*="display: grid"] {
  display: grid !important;
}

/* Course title/description area */
.course-info {
  min-width: 0 !important;
}

.course-info h4 {
  margin: 0 0 6px !important;
}

.course-info p {
  margin: 0 !important;
}

/* Right side duration + button fixed */
.course-meta {
  width: 190px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

.course-duration {
  text-align: center !important;
  white-space: nowrap !important;
}

.course-item a.enquire-btn {
  min-width: 110px !important;
  text-align: center !important;
}

/* Mobile */
@media (max-width: 760px) {
  .course-item {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    row-gap: 16px !important;
  }

  .course-tag {
    margin: 0 auto !important;
  }

  .course-meta {
    width: 100% !important;
  }
}
/* =========================================================
   UPCOMING BATCHES - ATTRACTIVE HIGHLIGHT VERSION FINAL
   ========================================================= */

.upcoming-batches-spotlight {
  padding: 18px 0 26px;
}

.upcoming-batches-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1670px;
  margin: 0 auto;
  padding: 34px 40px;
  border-radius: 34px;

  background:
    radial-gradient(circle at 82% 10%, rgba(141, 194, 255, 0.22), transparent 22%),
    radial-gradient(circle at 28% 92%, rgba(255, 180, 60, 0.12), transparent 18%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 45%, #edf5ff 100%);

  border: 1px solid #d9e8fb;

  box-shadow:
    0 18px 45px rgba(16, 53, 111, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  display: grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 34px;
  align-items: center;
}

.upcoming-left {
  position: relative;
  z-index: 2;
}

.upcoming-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;
  border-radius: 999px;

  background: linear-gradient(135deg, #dcecff 0%, #cfe4ff 100%);
  color: #1362c8;

  font-size: 15px;
  font-weight: 800;

  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(19, 98, 200, 0.12);
}

.upcoming-left h2 {
  margin: 0 0 14px;

  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;

  color: #0a2a66;
  letter-spacing: -0.6px;
}

.upcoming-left p {
  margin: 0;
  max-width: 430px;

  font-size: 18px;
  line-height: 1.65;
  color: #51627f;
  font-weight: 500;
}

.upcoming-highlight-line {
  margin-top: 22px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 14px;

  background: rgba(12, 84, 191, 0.06);
  border: 1px solid rgba(12, 84, 191, 0.12);

  color: #0b3f8f;
  font-size: 14px;
  font-weight: 700;
}

.highlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;

  background: #ff9f0a;
  box-shadow: 0 0 0 0 rgba(255, 159, 10, 0.55);

  animation: pulseDot 1.8s infinite;
}

.upcoming-right {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 22px;
  align-items: center;
}

/* FINAL CARD DESIGN */
.batch-pop-card {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 105px 105px;
  align-items: center;
  justify-content: center;
  column-gap: 18px;

  min-width: 0;
  padding: 24px 24px;
  border-radius: 24px;

  background: linear-gradient(135deg, #f7fbff 0%, #eef6ff 55%, #eaf3ff 100%);
  overflow: hidden;

  box-shadow:
    0 12px 28px rgba(11, 47, 106, 0.12),
    0 4px 10px rgba(34, 102, 196, 0.08);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatCard 4.8s ease-in-out infinite;
}

.batch-pop-card:hover {
  transform: translateY(-6px) scale(1.015);

  box-shadow:
    0 20px 36px rgba(11, 47, 106, 0.18),
    0 8px 18px rgba(34, 102, 196, 0.12);
}

/* ROTATING COLOUR BORDER */
.batch-pop-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 24px;
  padding: 2px;

  background: conic-gradient(
    from var(--angle),
    #0b2f6a,
    #1d65cf,
    #8fc3ff,
    #f4a11a,
    #dbeafe,
    #0b2f6a
  );

  animation: spinBorder 4s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
  z-index: 0;
}

/* BLUISH CARD FILL */
.batch-pop-card::after {
  content: "";
  position: absolute;
  inset: 3px;

  border-radius: 21px;

  background:
    radial-gradient(circle at top left, rgba(120, 180, 255, 0.18), transparent 38%),
    radial-gradient(circle at bottom right, rgba(34, 102, 196, 0.12), transparent 36%),
    linear-gradient(135deg, #f7fbff 0%, #eef6ff 55%, #eaf3ff 100%);

  z-index: 0;
  pointer-events: none;
}

/* TEXT ABOVE CARD LAYERS */
.batch-pop-card > * {
  position: relative;
  z-index: 2;
}

.batch-course {
  font-size: 18px;
  font-weight: 900;
  color: #0a2a66;
  white-space: nowrap;
  text-align: left;
}

.batch-date {
  font-size: 16px;
  font-weight: 900;
  color: #f39a06;
  white-space: nowrap;
  text-align: left;
  text-shadow: 0 0 14px rgba(243, 154, 6, 0.15);
}

/* Middle card date specifically thoda left */
.card-2 .batch-date {
  transform: translateX(-8px);
}

.card-1 {
  animation-delay: 0s;
}

.card-2 {
  animation-delay: 0.6s;
}

.card-3 {
  animation-delay: 1.2s;
}

.upcoming-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
  opacity: 0.6;
}

.glow-1 {
  width: 180px;
  height: 180px;
  top: -35px;
  right: 210px;

  background: radial-gradient(
    circle,
    rgba(73, 140, 255, 0.18) 0%,
    rgba(73, 140, 255, 0) 72%
  );
}

.glow-2 {
  width: 150px;
  height: 150px;
  bottom: -35px;
  left: 260px;

  background: radial-gradient(
    circle,
    rgba(255, 178, 54, 0.16) 0%,
    rgba(255, 178, 54, 0) 72%
  );
}

.upcoming-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(29, 112, 235, 0.18);
  z-index: 1;
}

.ring-1 {
  width: 180px;
  height: 180px;
  top: -58px;
  right: -25px;
}

.ring-2 {
  width: 120px;
  height: 120px;
  bottom: -48px;
  right: 110px;
  border-color: rgba(255, 166, 0, 0.22);
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

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

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

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 159, 10, 0.55);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 159, 10, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 159, 10, 0);
  }
}

/* ROTATING BORDER ANGLE */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes spinBorder {
  0% {
    --angle: 0deg;
  }

  100% {
    --angle: 360deg;
  }
}

/* LAPTOP FIX */
@media (max-width: 1400px) {
  .upcoming-right {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 18px;
  }

  .batch-pop-card {
    grid-template-columns: 92px 92px;
    column-gap: 14px;
    padding: 22px 20px;
  }

  .batch-course {
    font-size: 17px;
  }

  .batch-date {
    font-size: 15px;
  }

  .card-2 .batch-date {
    transform: translateX(-10px);
  }
}

/* TABLET */
@media (max-width: 1200px) {
  .upcoming-batches-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .upcoming-right {
    grid-template-columns: 1fr;
  }

  .upcoming-left p {
    max-width: 100%;
  }

  .batch-pop-card {
    grid-template-columns: 110px 110px;
    justify-content: start;
  }

  .card-2 .batch-date {
    transform: none;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .upcoming-batches-spotlight {
    padding: 14px 0 20px;
  }

  .upcoming-batches-inner {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .upcoming-left h2 {
    font-size: 28px;
  }

  .upcoming-left p {
    font-size: 16px;
    line-height: 1.55;
  }

  .upcoming-highlight-line {
    font-size: 13px;
  }

  .batch-pop-card {
    grid-template-columns: 1fr auto;
    column-gap: 14px;
    padding: 18px 18px;
    border-radius: 18px;
  }

  .batch-pop-card::before {
    border-radius: 18px;
  }

  .batch-pop-card::after {
    border-radius: 15px;
  }

  .batch-course,
  .batch-date {
    font-size: 16px;
  }
}

/* ============================================================
   BLOG CARD IMAGE FULL VISIBLE FIX
   ============================================================ */

/* Blog image box */
.blog-img {
  height: 300px !important;
  background: #f4f8ff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* Image crop nahi hogi, complete dikhegi */
.blog-img img {
  width: 100% !important;
  height: 100% !important;

  object-fit: contain !important;
  object-position: center !important;

  display: block !important;
  background: #f4f8ff !important;
}

/* Hover pe image bahar crop na ho */
.blog-card:hover .blog-img img {
  transform: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .blog-img {
    height: 240px !important;
  }
}
/* ============================================================
   BLOG CARD CATEGORY LABEL HIDE FIX
   ============================================================ */

.blog-img span {
  display: none !important;
}

/* ============================================================
   BLOG CATEGORY FILTER FIX
   ============================================================ */

.blog-card {
  display: block;
}
/* ============================================================
   BLOG FILTER HIDE FIX
   ============================================================ */

.blog-card[hidden] {
  display: none !important;
}

.blog-tab {
  cursor: pointer !important;
}

/* ============================================================
   PAYMENT DETAILS MODAL
   ============================================================ */

.payment-form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 14, 35, 0.72);
  backdrop-filter: blur(8px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.payment-form-overlay.active {
  display: flex;
}

.payment-form-modal {
  position: relative;
  width: min(980px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.payment-form-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #0d63ce;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
}

.payment-form-head {
  margin-bottom: 28px;
  text-align: center;
}

.payment-form-head span {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #0d63ce;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}

.payment-form-head h2 {
  margin: 0 0 10px;
  color: #061735;
  font-size: 34px;
  font-weight: 900;
}

.payment-form-head p {
  margin: 0;
  color: #526176;
  font-size: 16px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.payment-field.full {
  grid-column: 1 / -1;
}

.payment-field label {
  display: block;
  margin-bottom: 8px;
  color: #061735;
  font-size: 14px;
  font-weight: 900;
}

.payment-field input,
.payment-field select {
  width: 100%;
  height: 52px;
  border: 1px solid #d8e4f2;
  border-radius: 14px;
  padding: 0 16px;
  font-size: 15px;
  color: #061735;
  background: #f8fbff;
  outline: none;
}

.payment-field input:focus,
.payment-field select:focus {
  border-color: #0d63ce;
  background: #ffffff;
}

.coupon-row {
  display: flex;
  gap: 10px;
}

.coupon-row input {
  flex: 1;
}

.coupon-row button {
  min-width: 110px;
  border: none;
  border-radius: 14px;
  background: #0d63ce;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

#couponMessage {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.payment-summary-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: 18px;
  background: #f1f7ff;
  border: 1px solid #d9e9ff;
}

.payment-summary-box div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  color: #061735;
  font-size: 16px;
}

.payment-summary-box .final-row {
  border-top: 1px solid #cbdff7;
  margin-top: 8px;
  padding-top: 16px;
  font-size: 20px;
  font-weight: 900;
}

.payment-note {
  margin: 18px 0 20px;
  color: #b45309;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.process-pay-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #08265c, #0d63ce);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(13, 99, 206, 0.25);
}

@media (max-width: 700px) {
  .payment-form-modal {
    padding: 26px 20px;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-form-head h2 {
    font-size: 28px;
  }

  .coupon-row {
    flex-direction: column;
  }

  .coupon-row button {
    height: 48px;
  }
}

/* ============================================================
   MODAL LAYER FIX
   ============================================================ */

.payment-form-overlay {
  z-index: 999998 !important;
}

.terms-overlay,
#termsOverlay,
.terms-modal-overlay,
.terms-popup-overlay {
  z-index: 999999 !important;
}

/* ============================================================
   FINAL FIX - TERMS OPEN HO TO PAYMENT FORM HIDE
   ============================================================ */

/* Jab Terms popup open ho, payment form peeche bilkul nahi dikhega */
body:has(.terms-overlay.active) #paymentFormOverlay,
body:has(#termsOverlay.active) #paymentFormOverlay,
body:has(.terms-modal-overlay.active) #paymentFormOverlay,
body:has(.terms-popup-overlay.active) #paymentFormOverlay {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Terms overlay ko top priority */
.terms-overlay,
#termsOverlay,
.terms-modal-overlay,
.terms-popup-overlay {
  z-index: 9999999 !important;
}

/* Payment form terms ke niche rahe */
.payment-form-overlay {
  z-index: 999998 !important;
}

/* ============================================================
   PAYMENT + TERMS MODAL LAYER FINAL FIX
   ============================================================ */

.payment-form-overlay {
  z-index: 999998 !important;
}

.terms-overlay,
#termsOverlay,
.terms-modal-overlay,
.terms-popup-overlay {
  z-index: 9999999 !important;
}

/* ============================================================
   TERMS + PAYMENT CLICK FIX
   ============================================================ */

.terms-footer,
.terms-actions,
.terms-btn-proceed {
  position: relative !important;
  z-index: 99999999 !important;
  pointer-events: auto !important;
}

.terms-btn-proceed {
  cursor: pointer !important;
}

.payment-form-overlay {
  z-index: 999998 !important;
}

.terms-overlay,
#termsOverlay,
.terms-modal-overlay,
.terms-popup-overlay {
  z-index: 9999999 !important;
}

/* SELF LEARNING BUTTON STYLE FIX */
.sl-plan-btn.plan-buy-btn.buy-now {
  width: 100% !important;
  height: 68px !important;
  border: none !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #0d63ce, #08265c) !important;
  color: #ffffff !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* ============================================================
   SELF LEARNING PLAN BUTTON ALIGNMENT + MEDIUM SIZE FIX
   ============================================================ */

/* All plan cards same internal layout */
.sl-plan-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* Button ko card ke bottom me same line pe lao */
.sl-plan-card .sl-plan-btn,
.sl-plan-card .plan-buy-btn,
.sl-plan-card .buy-now {
  margin-top: auto !important;
}

/* Button medium size */
.sl-plan-btn.plan-buy-btn.buy-now {
  width: 78% !important;
  height: 56px !important;

  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 8px !important;

  border: none !important;
  border-radius: 16px !important;

  background: linear-gradient(135deg, #0d63ce, #08265c) !important;
  color: #ffffff !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;

  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;

  box-shadow: 0 12px 26px rgba(13, 99, 206, 0.20) !important;
  transition: all 0.25s ease !important;
}

.sl-plan-btn.plan-buy-btn.buy-now:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 36px rgba(13, 99, 206, 0.28) !important;
}

/* Cards ke bottom spacing equal */
.sl-plan-card {
  padding-bottom: 26px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .sl-plan-btn.plan-buy-btn.buy-now {
    width: 100% !important;
    height: 54px !important;
    font-size: 17px !important;
  }
}

/* ============================================================
   RESUME BUILDER LOCK POPUP
   ============================================================ */

.resume-locked-btn {
  position: relative !important;
  opacity: 0.95 !important;
}

.resume-locked-btn::after {
  content: " 🔒";
  font-size: 16px;
}

.resume-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999999;

  display: none;
  align-items: center;
  justify-content: center;

  background: rgba(3, 14, 35, 0.72);
  backdrop-filter: blur(8px);
  padding: 24px;
}

.resume-lock-overlay.active {
  display: flex;
}

.resume-lock-modal {
  position: relative;
  width: min(520px, 94vw);
  background: #ffffff;
  border-radius: 28px;
  padding: 42px 36px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.resume-lock-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: #0d63ce;
  color: #ffffff;

  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
}

.resume-lock-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;

  border-radius: 22px;
  background: #e8f2ff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
}

.resume-lock-modal h2 {
  margin: 0 0 12px;
  color: #061735;
  font-size: 30px;
  font-weight: 900;
}

.resume-lock-modal p {
  margin: 0 auto 28px;
  max-width: 390px;
  color: #526176;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
}

.resume-lock-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.resume-purchase-btn,
.resume-lock-cancel {
  height: 54px;
  padding: 0 30px;

  border: none;
  border-radius: 999px;

  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.resume-purchase-btn {
  background: linear-gradient(135deg, #0d63ce, #08265c);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 99, 206, 0.25);
}

.resume-lock-cancel {
  background: #eef3f9;
  color: #08265c;
}

@media (max-width: 600px) {
  .resume-lock-actions {
    flex-direction: column;
  }

  .resume-purchase-btn,
  .resume-lock-cancel {
    width: 100%;
  }
}

/* ============================================================
   FULL CHECKOUT PAGE DESIGN
   ============================================================ */

.checkout-page-body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #eef4fb;
  color: #061735;
}

.checkout-header {
  background: #ffffff;
  border-bottom: 1px solid #dbe6f2;
  box-shadow: 0 6px 18px rgba(7, 27, 77, 0.06);
}

.checkout-header-inner {
  width: min(1500px, 92%);
  height: 92px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
}

.checkout-secure {
  padding: 12px 20px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #0d63ce;
  font-size: 15px;
  font-weight: 900;
}

.checkout-page {
  padding: 44px 0 70px;
}

.checkout-layout {
  width: min(1500px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: start;
}

.checkout-main-card,
.checkout-summary-card {
  background: #ffffff;
  border: 1px solid #dbe6f2;
  box-shadow: 0 18px 44px rgba(7, 27, 77, 0.08);
}

.checkout-main-card {
  border-radius: 4px;
  overflow: hidden;
}

.checkout-card-title {
  height: 70px;
  padding: 0 28px;
  background: linear-gradient(135deg, #0d63ce, #2563eb);

  display: flex;
  align-items: center;
  gap: 14px;
}

.checkout-card-title span {
  font-size: 24px;
}

.checkout-card-title h1 {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.checkout-form-area {
  padding: 38px 38px 34px;
}

.checkout-form-area h2 {
  margin: 0 0 16px;
  color: #061735;
  font-size: 25px;
  font-weight: 900;
}

.checkout-form-area > p {
  margin: 0 0 34px;
  max-width: 760px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.checkout-grid label {
  display: flex;
  flex-direction: column;
  gap: 10px;

  color: #061735;
  font-size: 15px;
  font-weight: 800;
}

.checkout-grid label.full {
  grid-column: 1 / -1;
}

.checkout-grid input,
.checkout-grid select {
  width: 100%;
  height: 58px;

  border: 1px solid #cfdbea;
  border-radius: 0;

  padding: 0 18px;
  background: #f8fbff;

  color: #061735;
  font-size: 16px;
  outline: none;
}

.checkout-grid input:focus,
.checkout-grid select:focus {
  border-color: #0d63ce;
  background: #ffffff;
}

.checkout-coupon-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
}

.checkout-coupon-row button {
  height: 58px;
  border: 1px solid #0d63ce;
  background: #ffffff;
  color: #0d63ce;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

#couponMessage {
  font-size: 13px;
  font-weight: 800;
}

.hidden-checkout-field {
  display: none !important;
}

.checkout-course-summary {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid #dbe6f2;
}

.checkout-course-summary h3 {
  margin: 0 0 22px;
  color: #061735;
  font-size: 23px;
  font-weight: 900;
}

.checkout-course-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 22px;
}

.checkout-course-thumb {
  width: 90px;
  height: 64px;
  border-radius: 6px;
  background: linear-gradient(135deg, #08265c, #0d63ce);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.checkout-course-row h4 {
  margin: 0 0 8px;
  color: #061735;
  font-size: 22px;
  font-weight: 900;
}

.checkout-course-row p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
}

.checkout-course-row strong {
  color: #061735;
  font-size: 30px;
  font-weight: 900;
  white-space: nowrap;
}

/* RIGHT SUMMARY */
.checkout-summary-card {
  position: sticky;
  top: 24px;

  border-radius: 4px;
  padding: 32px;
}

.checkout-summary-card h2 {
  margin: 0 0 30px;
  color: #061735;
  font-size: 28px;
  font-weight: 900;
}

.checkout-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 18px;

  background: #0d63ce;
  color: #ffffff;

  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.checkout-summary-card h3 {
  margin: 0 0 24px;
  color: #061735;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
}

.checkout-validity {
  padding-bottom: 24px;
  border-bottom: 1px solid #dbe6f2;
}

.checkout-validity p {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.4;
}

.checkout-price-list {
  padding: 28px 0;
  border-bottom: 1px solid #dbe6f2;
}

.checkout-price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;
  margin-bottom: 22px;

  color: #64748b;
  font-size: 16px;
  font-weight: 700;
}

.checkout-price-list strong {
  color: #061735;
  font-size: 19px;
  font-weight: 900;
}

.checkout-price-list .discount-text {
  color: #16a34a;
}

.checkout-price-list .checkout-total-row {
  margin-top: 30px;
  margin-bottom: 0;
}

.checkout-total-row span {
  color: #061735;
  font-size: 24px;
  font-weight: 900;
}

.checkout-total-row strong {
  color: #0d63ce;
  font-size: 32px;
  font-weight: 900;
}

.checkout-note {
  margin: 22px 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #e8f2ff;
  color: #0d3b7d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.checkout-pay-btn {
  width: 100%;
  height: 62px;

  border: none;
  border-radius: 4px;

  background: linear-gradient(135deg, #0d63ce, #155ee8);
  color: #ffffff;

  font-size: 18px;
  font-weight: 900;
  cursor: pointer;

  box-shadow: 0 16px 34px rgba(13, 99, 206, 0.25);
}

.checkout-pay-btn:hover {
  transform: translateY(-2px);
}

.checkout-secure-note {
  margin-top: 18px;
  text-align: center;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
}

/* Mobile */
@media (max-width: 1050px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-form-area {
    padding: 28px 20px;
  }

  .checkout-course-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .checkout-course-thumb {
    margin: 0 auto;
  }

  .checkout-header-inner {
    height: 78px;
  }

  .checkout-logo img {
    height: 90px;
  }
}

/* ============================================================
   CHECKOUT PAGE COMPACT SIZE FIX
   ============================================================ */

/* Page spacing reduce */
.checkout-page {
  padding: 26px 0 42px !important;
}

/* Overall width thoda balanced */
.checkout-layout {
  width: min(1380px, 94%) !important;
  grid-template-columns: minmax(0, 1fr) 390px !important;
  gap: 28px !important;
}

/* Header height/logo reduce */
.checkout-header-inner {
  height: 74px !important;
}

.checkout-logo img {
  height: 72px !important;
}

.checkout-secure {
  padding: 10px 18px !important;
  font-size: 14px !important;
}

/* Payment Details blue bar */
.checkout-card-title {
  height: 56px !important;
  padding: 0 22px !important;
}

.checkout-card-title h1 {
  font-size: 22px !important;
}

.checkout-card-title span {
  font-size: 20px !important;
}

/* Left form card compact */
.checkout-form-area {
  padding: 28px 30px 28px !important;
}

.checkout-form-area h2 {
  font-size: 22px !important;
  margin-bottom: 12px !important;
}

.checkout-form-area > p {
  font-size: 16px !important;
  line-height: 1.55 !important;
  margin-bottom: 24px !important;
  max-width: 720px !important;
}

/* Form spacing compact */
.checkout-grid {
  gap: 18px 22px !important;
}

.checkout-grid label {
  gap: 8px !important;
  font-size: 14px !important;
}

.checkout-grid input,
.checkout-grid select {
  height: 48px !important;
  padding: 0 14px !important;
  font-size: 15px !important;
}

/* Coupon row compact */
.checkout-coupon-row {
  grid-template-columns: 1fr 92px !important;
  gap: 10px !important;
}

.checkout-coupon-row button {
  height: 48px !important;
  font-size: 14px !important;
}

/* Course summary compact */
.checkout-course-summary {
  margin-top: 24px !important;
  padding-top: 22px !important;
}

.checkout-course-summary h3 {
  font-size: 20px !important;
  margin-bottom: 16px !important;
}

.checkout-course-row {
  grid-template-columns: 76px 1fr auto !important;
  gap: 18px !important;
}

.checkout-course-thumb {
  width: 76px !important;
  height: 54px !important;
  font-size: 13px !important;
}

.checkout-course-row h4 {
  font-size: 18px !important;
  margin-bottom: 6px !important;
}

.checkout-course-row p {
  font-size: 14px !important;
}

.checkout-course-row strong {
  font-size: 24px !important;
}

/* Right order summary compact */
.checkout-summary-card {
  padding: 26px 28px !important;
}

.checkout-summary-card h2 {
  font-size: 24px !important;
  margin-bottom: 24px !important;
}

.checkout-badge {
  padding: 8px 14px !important;
  font-size: 13px !important;
  margin-bottom: 18px !important;
}

.checkout-summary-card h3 {
  font-size: 21px !important;
  margin-bottom: 20px !important;
}

.checkout-validity {
  padding-bottom: 18px !important;
}

.checkout-validity p {
  font-size: 14px !important;
  margin-bottom: 10px !important;
}

/* Price list */
.checkout-price-list {
  padding: 22px 0 !important;
}

.checkout-price-list div {
  margin-bottom: 18px !important;
  font-size: 15px !important;
}

.checkout-price-list strong {
  font-size: 18px !important;
}

.checkout-total-row span {
  font-size: 21px !important;
}

.checkout-total-row strong {
  font-size: 28px !important;
}

/* Note + button */
.checkout-note {
  margin: 18px 0 !important;
  padding: 12px 14px !important;
  font-size: 13px !important;
}

.checkout-pay-btn {
  height: 54px !important;
  font-size: 16px !important;
}

.checkout-secure-note {
  margin-top: 14px !important;
  font-size: 13px !important;
}

/* Laptop smaller screen */
@media (max-width: 1280px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 22px !important;
  }

  .checkout-form-area {
    padding: 24px 26px !important;
  }

  .checkout-summary-card {
    padding: 24px !important;
  }
}

/* Mobile */
@media (max-width: 1050px) {
  .checkout-layout {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   CHECKOUT LOGO SIZE FIX
   ============================================================ */

.checkout-header-inner {
  height: 90px !important;
}

.checkout-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: visible !important;
}

.checkout-logo img {
  height: 120px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Secure button alignment */
.checkout-secure {
  font-size: 16px !important;
  padding: 12px 24px !important;
}

/* Mobile */
@media (max-width: 700px) {
  .checkout-header-inner {
    height: 78px !important;
  }

  .checkout-logo img {
    height: 84px !important;
    max-width: 170px !important;
  }

  .checkout-secure {
    font-size: 13px !important;
    padding: 9px 14px !important;
  }
}
/* ============================================================
   TERMS POPUP BUTTON VISIBILITY FIX
   ============================================================ */

.terms-modal {
  max-height: 88vh !important;
  height: auto !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

.terms-head {
  flex-shrink: 0 !important;
}

.terms-body {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  max-height: none !important;
  padding-bottom: 22px !important;
}

.terms-footer {
  flex-shrink: 0 !important;
  position: sticky !important;
  bottom: 0 !important;
  background: #ffffff !important;
  z-index: 20 !important;
  padding: 22px 26px 20px !important;
  border-top: 1px solid #e5edf7 !important;
}

.terms-actions {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 18px !important;
  margin-top: 18px !important;
}

.terms-btn {
  min-width: 160px !important;
  height: 54px !important;
  border-radius: 28px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

/* Mobile fix */
@media (max-width: 768px) {
  .terms-modal {
    width: 94vw !important;
    max-height: 90vh !important;
  }

  .terms-footer {
    padding: 18px 16px !important;
  }

  .terms-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .terms-btn {
    width: 100% !important;
    min-width: 100% !important;
  }
}

/* ===== FIX: Upcoming Batches Cards Dark Blue ===== */
.upcoming-batches-spotlight .upcoming-right .batch-pop-card,
.upcoming-batches-spotlight .upcoming-right .batch-pop-card.card-1,
.upcoming-batches-spotlight .upcoming-right .batch-pop-card.card-2,
.upcoming-batches-spotlight .upcoming-right .batch-pop-card.card-3 {
  background: #082b6f !important;
  background-image: linear-gradient(135deg, #061f55 0%, #0b4fb3 100%) !important;
  border: 2px solid #0d63ce !important;
  box-shadow: 0 18px 35px rgba(8, 43, 111, 0.35) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* agar card ke andar/overlay se white aa raha hai */
.upcoming-batches-spotlight .batch-pop-card::before,
.upcoming-batches-spotlight .batch-pop-card::after {
  display: none !important;
  content: none !important;
}

/* Course name white */
.upcoming-batches-spotlight .batch-pop-card .batch-course {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

/* Date white */
.upcoming-batches-spotlight .batch-pop-card .batch-date {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  font-weight: 900 !important;
}

/* Hover */
.upcoming-batches-spotlight .upcoming-right .batch-pop-card:hover {
  background: #061f55 !important;
  background-image: linear-gradient(135deg, #04183f 0%, #063f9a 100%) !important;
  transform: translateY(-6px);
}

/* ===== Upcoming Batches Final Dark Blue + Round Light Effect ===== */

.upcoming-batches-spotlight .upcoming-right .batch-pop-card,
.upcoming-batches-spotlight .upcoming-right .batch-pop-card.card-1,
.upcoming-batches-spotlight .upcoming-right .batch-pop-card.card-2,
.upcoming-batches-spotlight .upcoming-right .batch-pop-card.card-3 {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.12) 18%, transparent 42%),
    radial-gradient(circle at 15% 85%, rgba(0, 183, 255, 0.22) 0%, transparent 38%),
    linear-gradient(135deg, #061f55 0%, #0b3f91 52%, #006bd6 100%) !important;
  border: 2px solid rgba(0, 107, 214, 0.95) !important;
  box-shadow:
    0 20px 42px rgba(6, 31, 85, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* remove old square/glass overlays */
.upcoming-batches-spotlight .batch-pop-card::before,
.upcoming-batches-spotlight .batch-pop-card::after {
  display: none !important;
  content: none !important;
}

/* course text white */
.upcoming-batches-spotlight .batch-pop-card .batch-course {
  position: relative !important;
  z-index: 2 !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16) !important;
}

/* date text white - no square background */
.upcoming-batches-spotlight .batch-pop-card .batch-date {
  position: relative !important;
  z-index: 2 !important;
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16) !important;
}

/* hover same dark blue, little premium lift */
.upcoming-batches-spotlight .upcoming-right .batch-pop-card:hover {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.14) 18%, transparent 42%),
    radial-gradient(circle at 15% 85%, rgba(0, 183, 255, 0.28) 0%, transparent 38%),
    linear-gradient(135deg, #04183f 0%, #093982 52%, #005bc0 100%) !important;
  transform: translateY(-6px);
}

/* ===== Upcoming Batches Compact Dark Blue Cards ===== */
.upcoming-batches-spotlight .upcoming-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 22px !important;
  margin-top: 0 !important;
}

.upcoming-batches-spotlight .batch-pop-card {
  width: 300px !important;
  min-height: 92px !important;
  padding: 22px 26px !important;
  border-radius: 24px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;

  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #061f55 0%, #0b3f91 55%, #006bd6 100%) !important;

  border: 2px solid rgba(0, 107, 214, 0.9) !important;
  box-shadow: 0 16px 32px rgba(6, 31, 85, 0.28) !important;
  overflow: hidden !important;
}

.upcoming-batches-spotlight .batch-pop-card::before,
.upcoming-batches-spotlight .batch-pop-card::after {
  display: none !important;
  content: none !important;
}

.upcoming-batches-spotlight .batch-course {
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.upcoming-batches-spotlight .batch-date {
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.upcoming-batches-spotlight .batch-pop-card:hover {
  transform: translateY(-4px) !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #04183f 0%, #093982 55%, #005bc0 100%) !important;
}

/* Mobile */
@media (max-width: 1020px) {
  .upcoming-batches-spotlight .upcoming-right {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }

  .upcoming-batches-spotlight .batch-pop-card {
    width: 100% !important;
    min-height: 86px !important;
  }
}

/* ===== Upcoming Batches Compact Final Fix ===== */

.upcoming-batches-spotlight {
  padding: 40px 0 !important;
}

.upcoming-batches-spotlight .upcoming-batches-inner {
  display: grid !important;
  grid-template-columns: 34% 66% !important;
  align-items: center !important;
  gap: 34px !important;
  min-height: auto !important;
  padding: 44px 58px !important;
  overflow: hidden !important;
}

.upcoming-batches-spotlight .upcoming-left h2 {
  font-size: 46px !important;
  line-height: 1.08 !important;
  margin: 22px 0 18px !important;
  max-width: 520px !important;
}

.upcoming-batches-spotlight .upcoming-left p {
  font-size: 22px !important;
  line-height: 1.5 !important;
  max-width: 460px !important;
  margin-bottom: 26px !important;
}

.upcoming-batches-spotlight .upcoming-highlight-line {
  padding: 14px 20px !important;
  width: fit-content !important;
  max-width: 100% !important;
  font-size: 17px !important;
}

.upcoming-batches-spotlight .upcoming-right {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  align-items: center !important;
  margin-top: 0 !important;
}

.upcoming-batches-spotlight .batch-pop-card,
.upcoming-batches-spotlight .batch-pop-card.card-1,
.upcoming-batches-spotlight .batch-pop-card.card-2,
.upcoming-batches-spotlight .batch-pop-card.card-3 {
  width: 100% !important;
  height: 78px !important;
  min-height: 78px !important;
  padding: 0 22px !important;
  border-radius: 22px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;

  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.18), transparent 32%),
    linear-gradient(135deg, #061f55 0%, #0b3f91 55%, #006bd6 100%) !important;

  border: 2px solid rgba(0, 107, 214, 0.85) !important;
  box-shadow: 0 12px 24px rgba(8, 36, 92, 0.22) !important;
  overflow: hidden !important;
}

.upcoming-batches-spotlight .batch-pop-card::before,
.upcoming-batches-spotlight .batch-pop-card::after {
  display: none !important;
  content: none !important;
}

.upcoming-batches-spotlight .batch-course {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.upcoming-batches-spotlight .batch-date {
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 1100px) {
  .upcoming-batches-spotlight .upcoming-batches-inner {
    grid-template-columns: 1fr !important;
    padding: 36px 28px !important;
  }

  .upcoming-batches-spotlight .upcoming-right {
    grid-template-columns: 1fr !important;
  }

  .upcoming-batches-spotlight .batch-pop-card {
    height: 76px !important;
  }
}

.google-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.google-logo {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

/* Google Login Button Fix */
.auth-google-btn {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #ffffff;
  color: #001f4d;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
}

.auth-google-btn:hover {
  background: #f8fafc;
}

.auth-google-logo {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/* Forgot Password clean styling */
.forgot-password-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: -12px;
  margin-bottom: 18px;
}

.forgot-password-btn {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #0b63ce !important;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.forgot-password-btn:hover {
  text-decoration: underline;
}

/* Login modal height fix so Create Account is visible */
.auth-modal,
.auth-box,
.login-modal,
.login-box {
  max-height: 92vh;
  overflow-y: auto;
}

/* If modal has too much inner spacing, reduce slightly */
.auth-form {
  gap: 16px;
}

/* Signup phone field alignment fix */
.phone-row,
.phone-input-row,
.signup-phone-row {
  display: grid !important;
  grid-template-columns: 115px 1fr !important;
  gap: 12px !important;
  width: 100% !important;
  align-items: center !important;
}

.phone-row select,
.phone-input-row select,
.signup-phone-row select {
  width: 115px !important;
  min-width: 115px !important;
  height: 72px !important;
  padding: 0 18px !important;
  border-radius: 18px !important;
  font-size: 16px !important;
}

.phone-row input,
.phone-input-row input,
.signup-phone-row input {
  width: 100% !important;
  min-width: 0 !important;
  height: 72px !important;
  padding: 0 24px !important;
  border-radius: 18px !important;
  font-size: 20px !important;
  box-sizing: border-box !important;
}

.phone-row input::placeholder,
.phone-input-row input::placeholder,
.signup-phone-row input::placeholder {
  font-size: 20px !important;
  opacity: 0.75 !important;
}

.dash-history-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.dash-receipt-no {
  margin-top: 6px;
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.dash-receipt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #0d63ce;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.dash-receipt-btn:hover {
  background: #084a9c;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .dash-history-right {
    align-items: flex-start;
    margin-top: 12px;
  }

  .dash-receipt-btn {
    width: fit-content;
  }
}

/* Professional Upcoming Batches Section */
.upcoming-batches-spotlight {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f8fbff 0%, #eaf4ff 100%);
  overflow: hidden;
}

.upcoming-batches-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.upcoming-mini-badge {
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 999px;
  background: #dbeafe;
  color: #0d63ce;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 22px;
}

.upcoming-left h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  color: #0b2d6f;
  margin: 0 0 22px;
  letter-spacing: -1.5px;
}

.upcoming-left p {
  font-size: 21px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
  max-width: 520px;
}

.upcoming-highlight-line {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #d8e7fb;
  border-radius: 22px;
  padding: 20px 24px;
  color: #0b3b8f;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 18px 45px rgba(13, 99, 206, 0.08);
}

.highlight-dot {
  width: 10px;
  height: 10px;
  background: #f59e0b;
  border-radius: 50%;
  flex: 0 0 auto;
}

.upcoming-right {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 22px;
}

.batch-pop-card {
  min-height: 150px;
  border-radius: 28px;
  padding: 28px 22px;
  background: linear-gradient(135deg, #082d73, #0d63ce);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(8, 45, 115, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.batch-course {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}

.batch-date {
  font-size: 20px;
  font-weight: 800;
  opacity: 0.95;
  margin-top: 18px;
}

@media (max-width: 992px) {
  .upcoming-batches-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .upcoming-right {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .upcoming-batches-spotlight {
    padding: 56px 18px;
  }

  .upcoming-right {
    grid-template-columns: 1fr;
  }

  .batch-pop-card {
    min-height: auto;
    gap: 18px;
  }

  .upcoming-highlight-line {
    font-size: 16px;
  }
}

/* Academy Certificate Image */
.cert-visual {
  background: #ffffff;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.academy-certificate-img {
  width: 100%;
  max-width: 760px;
  display: block;
  border-radius: 18px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .cert-visual {
    padding: 14px;
    border-radius: 22px;
  }

  .academy-certificate-img {
    border-radius: 12px;
  }
}

/* ===== SAP Global Certificate Reference Card ===== */
.global-cert-reference {
  background: #ffffff;
  border: 1px solid rgba(13, 43, 95, 0.09);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 48px rgba(13, 43, 95, 0.08);
}

.global-cert-head span {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #006bd6;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.global-cert-head h3 {
  color: #0d2b5f;
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.25;
}

.global-cert-head p {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.global-cert-img-wrap {
  background: #f7fbff;
  border: 1px solid rgba(13, 43, 95, 0.08);
  border-radius: 20px;
  padding: 12px;
  overflow: hidden;
}

.global-cert-img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 12px 30px rgba(13, 43, 95, 0.12);
}

.cert-attempts-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f7fbff;
  border: 1px solid rgba(13, 43, 95, 0.08);
  border-radius: 18px;
  padding: 16px;
  margin: 18px 0 22px;
}

.cert-attempt-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #006bd6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.cert-attempts-box strong {
  display: block;
  color: #0d2b5f;
  font-size: 16px;
  margin-bottom: 5px;
}

.cert-attempts-box span {
  display: block;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .global-cert-reference {
    order: 2;
  }
}

.payment-form-overlay,
.terms-overlay,
.terms-modal-overlay,
#termsOverlay,
#paymentFormOverlay {
  z-index: 999999 !important;
}

.payment-form-modal,
.terms-modal,
#termsModal {
  z-index: 1000000 !important;
}

.locked-modal-overlay {
  z-index: 99990 !important;
}

.locked-modal-overlay {
  z-index: 99990 !important;
}

.payment-form-overlay,
.terms-overlay,
.terms-modal-overlay,
#termsOverlay,
#paymentFormOverlay {
  z-index: 999999 !important;
}

.payment-form-modal,
.terms-modal,
#termsModal {
  z-index: 1000000 !important;
}

.locked-modal-overlay {
  z-index: 99990 !important;
}

.payment-form-overlay,
.terms-overlay,
.terms-modal-overlay,
#termsOverlay,
#paymentFormOverlay {
  z-index: 999999 !important;
}

.payment-form-modal,
.terms-modal,
#termsModal {
  z-index: 1000000 !important;
}
.locked-modal-overlay {
  z-index: 99990 !important;
}

.payment-form-overlay,
.terms-overlay,
.terms-modal-overlay,
#termsOverlay,
#paymentFormOverlay {
  z-index: 999999 !important;
}

.payment-form-modal,
.terms-modal,
#termsModal {
  z-index: 1000000 !important;
}

.locked-modal-overlay {
  z-index: 99990 !important;
}

.terms-overlay,
#logicTermsOverlay {
  z-index: 999999 !important;
}

.terms-modal,
#logicTermsModal {
  z-index: 1000000 !important;
}

.payment-form-overlay,
#paymentFormOverlay {
  z-index: 1000001 !important;
}

.payment-form-modal {
  z-index: 1000002 !important;
}

.receipt-terms {
  margin-top: 28px;
}

.receipt-terms h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 800;
  color: #0b1f4d;
}

.receipt-terms-list {
  margin: 0;
  padding-left: 22px;
}

.receipt-terms-list li {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #334155;
  font-size: 15px;
}

.receipt-terms-list li strong {
  color: #0f172a;
}

/* ============================================================
   NAV AUTH FINAL FIX
   - Dashboard: Circle + Hi, FirstName
   - Other pages: Only initials circle
   - No Login flicker
============================================================ */

#authArea,
.auth-nav-area {
  width: auto !important;
  min-width: 52px !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;

  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

/* Hide temporary auth area while JS checks login */
#authArea.auth-loading,
.auth-nav-area.auth-loading {
  visibility: hidden !important;
}

/* Common user wrapper */
.nav-user {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;

  width: auto !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;

  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
  color: #08275f !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  flex: 0 0 auto !important;
}

/* Perfect round initials avatar */
.nav-user-avatar {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;

  flex: 0 0 52px !important;
  aspect-ratio: 1 / 1 !important;

  border-radius: 50% !important;
  background: #08275f !important;
  color: #ffffff !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;

  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 52px !important;
  text-align: center !important;
  letter-spacing: 0.3px !important;

  box-shadow: 0 8px 20px rgba(8, 39, 95, 0.18) !important;
  overflow: hidden !important;
}

/* Other pages: only circle */
.nav-user-icon-only {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;

  flex: 0 0 52px !important;
  aspect-ratio: 1 / 1 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}

/* Dashboard page: avatar + Hi, FirstName */
.dashboard-nav-user {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;

  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;

  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.dashboard-nav-user .nav-user-name {
  display: inline-block !important;
  color: #08275f !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

/* Login button */
.nav-login-btn {
  background: #08275f !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  padding: 13px 28px !important;
  border: none !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  font-family: inherit !important;
  transition: 0.25s ease !important;
  white-space: nowrap !important;
}

.nav-login-btn:hover {
  background: #0d63ce !important;
  transform: translateY(-1px);
}

/* Hide old logout button if any old page still injects it */
.nav-logout {
  display: none !important;
}

@media (max-width: 768px) {
  #authArea,
  .auth-nav-area,
  .nav-user,
  .dashboard-nav-user {
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
  }

  .nav-user-avatar,
  .nav-user-icon-only {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    flex: 0 0 46px !important;
  }

  .nav-user-avatar {
    font-size: 16px !important;
    line-height: 46px !important;
  }

  .dashboard-nav-user .nav-user-name {
    font-size: 16px !important;
  }
}

/* ============================================================
   FINAL AUTH AVATAR FIX - RC CIRCLE + NO OVAL
   Paste at VERY END of style.css
============================================================ */

/* Auth area stable */
html body .header #authArea,
html body .header .auth-nav-area,
html body .header .nav-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  min-width: 50px !important;
  width: auto !important;
  height: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

/* Do not hide auth area */
html body .header #authArea.auth-loading,
html body .header .auth-nav-area.auth-loading {
  visibility: visible !important;
  opacity: 1 !important;
}

/* User wrapper */
html body .header .nav-user,
html body .header .dashboard-nav-user,
html body .header .nav-user-icon-only {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;

  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;

  padding: 0 !important;
  margin: 0 !important;

  text-decoration: none !important;
  color: #08265c !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: visible !important;
}

/* PERFECT CIRCLE - RC */
html body .header .nav-user-avatar {
  width: 46px !important;
  height: 46px !important;

  min-width: 46px !important;
  min-height: 46px !important;

  max-width: 46px !important;
  max-height: 46px !important;

  flex: 0 0 46px !important;
  aspect-ratio: 1 / 1 !important;

  border-radius: 50% !important;
  background: #08265c !important;
  color: #ffffff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;

  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.2px !important;
  text-align: center !important;

  box-shadow: 0 8px 20px rgba(8, 38, 92, 0.18) !important;
  overflow: hidden !important;
}

/* Other pages: only circle, no extra width */
html body .header .nav-user-icon-only {
  width: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  flex: 0 0 46px !important;
  border-radius: 50% !important;
}

/* Dashboard: RC + Hi, Riya */
html body .header .dashboard-nav-user {
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
}

html body .header .dashboard-nav-user .nav-user-name,
html body .header .nav-user-name {
  display: inline-block !important;
  color: #08265c !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;

  width: auto !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

/* Hide logout from navbar */
html body .header .nav-logout {
  display: none !important;
}

/* Login / Enquire button */
html body .header .nav-login-btn,
html body .header .nav-btn {
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;

  padding: 0 24px !important;
  border: none !important;
  border-radius: 999px !important;

  background: #08265c !important;
  color: #ffffff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  text-decoration: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

/* Mobile */
@media (max-width: 768px) {
  html body .header #authArea,
  html body .header .auth-nav-area,
  html body .header .nav-actions {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }

  html body .header .nav-user,
  html body .header .dashboard-nav-user,
  html body .header .nav-user-icon-only {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }

  html body .header .nav-user-avatar,
  html body .header .nav-user-icon-only {
    width: 42px !important;
    height: 42px !important;

    min-width: 42px !important;
    min-height: 42px !important;

    max-width: 42px !important;
    max-height: 42px !important;

    flex: 0 0 42px !important;
  }

  html body .header .nav-user-avatar {
    font-size: 14px !important;
  }

  html body .header .dashboard-nav-user .nav-user-name,
  html body .header .nav-user-name {
    font-size: 14px !important;
  }
}

/* ============================================================
   DASHBOARD PROFESSIONAL FINAL UI
   Exact classes for dashboard.html
   Paste at VERY END of style.css
============================================================ */

body:has(.dash-page) {
  background:
    radial-gradient(circle at top left, rgba(13, 99, 206, 0.08), transparent 34%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 70%) !important;
  color: #061735 !important;
}

/* Main dashboard area */
.dash-page {
  padding: 56px 0 86px !important;
  background: transparent !important;
}

.dash-container {
  width: min(1220px, 92%) !important;
  margin: 0 auto !important;
}

/* ================= HERO CARD ================= */

.dash-hero-card {
  position: relative !important;
  overflow: hidden !important;

  background:
    radial-gradient(circle at 88% 16%, rgba(13, 99, 206, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 55%, #edf5ff 100%) !important;

  border: 1px solid #d8e6f7 !important;
  border-radius: 34px !important;

  padding: 48px 52px !important;
  margin-bottom: 30px !important;

  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 310px !important;
  align-items: center !important;
  gap: 42px !important;

  box-shadow:
    0 28px 72px rgba(8, 38, 92, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.dash-hero-card::before {
  content: "" !important;
  position: absolute !important;
  width: 260px !important;
  height: 260px !important;
  right: -90px !important;
  top: -110px !important;
  border-radius: 50% !important;
  background: rgba(13, 99, 206, 0.08) !important;
  pointer-events: none !important;
}

.dash-tag {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;

  padding: 10px 18px !important;
  margin-bottom: 22px !important;

  border-radius: 999px !important;
  background: #e8f2ff !important;
  color: #0d63ce !important;

  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.2px !important;
}

#dashHello {
  margin: 0 0 16px !important;

  color: #061735 !important;
  font-size: clamp(42px, 4.4vw, 62px) !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  letter-spacing: -1.8px !important;
  text-transform: capitalize !important;
  max-width: 780px !important;
}

.dash-hero-card > div:first-child > p {
  max-width: 720px !important;
  margin: 0 !important;

  color: #64748b !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  font-weight: 500 !important;
}

/* Profile mini card */
.dash-profile-mini {
  position: relative !important;
  z-index: 2 !important;

  background: #ffffff !important;
  border: 1px solid #cfe0f4 !important;
  border-radius: 24px !important;

  padding: 22px 24px !important;

  display: flex !important;
  align-items: center !important;
  gap: 18px !important;

  box-shadow: 0 18px 42px rgba(8, 38, 92, 0.10) !important;
}

.dash-avatar {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;

  border-radius: 20px !important;

  background: linear-gradient(135deg, #08265c 0%, #0d63ce 100%) !important;
  color: #ffffff !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 24px !important;
  font-weight: 950 !important;
  letter-spacing: 0.3px !important;

  box-shadow: 0 14px 28px rgba(13, 99, 206, 0.24) !important;
}

.dash-profile-mini h3 {
  margin: 0 0 6px !important;
  color: #061735 !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 950 !important;
  text-transform: capitalize !important;
}

.dash-profile-mini p {
  margin: 0 !important;
  color: #64748b !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  font-weight: 650 !important;
  word-break: break-word !important;
}

/* ================= SUMMARY CARDS ================= */

.dash-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin: 0 0 28px !important;
}

.dash-summary-card {
  position: relative !important;
  overflow: hidden !important;

  background: #ffffff !important;
  border: 1px solid #d8e6f7 !important;
  border-radius: 26px !important;

  padding: 28px 26px !important;
  min-height: 158px !important;

  box-shadow: 0 20px 48px rgba(8, 38, 92, 0.08) !important;

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.dash-summary-card::after {
  content: "" !important;
  position: absolute !important;
  right: -42px !important;
  top: -42px !important;
  width: 110px !important;
  height: 110px !important;
  border-radius: 50% !important;
  background: rgba(13, 99, 206, 0.07) !important;
}

.dash-summary-card:hover {
  transform: translateY(-6px) !important;
  border-color: #bcd7f5 !important;
  box-shadow: 0 28px 62px rgba(8, 38, 92, 0.13) !important;
}

.dash-icon {
  width: 46px !important;
  height: 46px !important;
  margin-bottom: 18px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 16px !important;
  background: #e8f2ff !important;

  font-size: 24px !important;
}

.dash-summary-card h3 {
  margin: 0 0 10px !important;
  color: #061735 !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 950 !important;
}

.dash-summary-card p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 850 !important;
}

.dash-active {
  color: #16a34a !important;
  font-weight: 900 !important;
}

.dash-locked {
  color: #dc2626 !important;
  font-weight: 900 !important;
}

/* ================= TWO COLUMN GRID ================= */

.dash-grid-two {
  display: grid !important;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.85fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
  margin-bottom: 28px !important;
}

/* Panels */
.dash-panel {
  background: #ffffff !important;
  border: 1px solid #d8e6f7 !important;
  border-radius: 28px !important;

  padding: 32px !important;

  box-shadow: 0 22px 54px rgba(8, 38, 92, 0.09) !important;
}

.dash-panel-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 24px !important;
}

.dash-panel-head h2 {
  margin: 0 !important;
  color: #061735 !important;
  font-size: 26px !important;
  line-height: 1.25 !important;
  font-weight: 950 !important;
  letter-spacing: -0.5px !important;
}

.dash-panel-head a {
  color: #0d63ce !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

/* ================= ACTIVE PLAN ITEMS ================= */

.dash-list {
  display: grid !important;
  gap: 16px !important;
}

.dash-plan-item {
  background: linear-gradient(135deg, #f8fbff, #f1f7ff) !important;
  border: 1px solid #cfe0f4 !important;
  border-radius: 20px !important;

  padding: 22px 24px !important;

  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 24px !important;
}

.dash-plan-item h3 {
  margin: 0 0 8px !important;
  color: #061735 !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 950 !important;
}

.dash-plan-item p {
  margin: 0 !important;
  color: #64748b !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 650 !important;
}

.dash-plan-item > span {
  color: #08265c !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

/* Empty state */
.dash-empty {
  background: #f8fbff !important;
  border: 1px dashed #bcd7f5 !important;
  border-radius: 22px !important;
  padding: 30px !important;
  text-align: center !important;
}

.dash-empty h3 {
  margin: 0 0 10px !important;
  color: #061735 !important;
  font-size: 20px !important;
  font-weight: 950 !important;
}

.dash-empty p,
.dash-muted {
  margin: 0 !important;
  color: #64748b !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  font-weight: 600 !important;
}

.dash-empty a {
  margin-top: 18px !important;
  min-height: 46px !important;
  padding: 0 22px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 999px !important;
  background: #0d63ce !important;
  color: #ffffff !important;

  font-size: 14px !important;
  font-weight: 900 !important;
}

/* ================= QUICK ACTIONS ================= */

.dash-actions {
  display: grid !important;
  gap: 14px !important;
}

.dash-actions button,
.dash-actions a {
  width: 100% !important;
  min-height: 56px !important;

  padding: 0 22px !important;

  border: 1px solid #bcd7f5 !important;
  border-radius: 16px !important;

  background: #f8fbff !important;
  color: #08265c !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  text-align: left !important;
  text-decoration: none !important;

  cursor: pointer !important;
  transition: 0.22s ease !important;
}

.dash-actions button::after,
.dash-actions a::after {
  content: "→" !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  opacity: 0.65 !important;
}

.dash-actions button:hover,
.dash-actions a:hover {
  background: #08265c !important;
  color: #ffffff !important;
  border-color: #08265c !important;
  transform: translateX(5px) !important;
}

/* ================= HISTORY ================= */

.dash-history {
  display: grid !important;
  gap: 16px !important;
}

.dash-history-item {
  background: linear-gradient(135deg, #f8fbff, #f1f7ff) !important;
  border: 1px solid #cfe0f4 !important;
  border-radius: 22px !important;

  padding: 24px 26px !important;

  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 24px !important;
}

.dash-history-item h3 {
  margin: 0 0 8px !important;
  color: #061735 !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 950 !important;
}

.dash-history-item p {
  margin: 0 0 6px !important;
  color: #64748b !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 650 !important;
}

.dash-receipt-no {
  color: #334155 !important;
  font-weight: 800 !important;
}

.dash-history-right {
  min-width: 150px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 10px !important;
}

.dash-history-right strong {
  color: #061735 !important;
  font-size: 20px !important;
  font-weight: 950 !important;
}

.dash-status {
  padding: 6px 12px !important;
  border-radius: 999px !important;

  background: #dcfce7 !important;
  color: #16a34a !important;

  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  text-transform: capitalize !important;
}

.dash-receipt-btn {
  min-height: 40px !important;
  padding: 0 18px !important;

  border-radius: 999px !important;
  background: linear-gradient(135deg, #0d63ce, #08265c) !important;
  color: #ffffff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 13px !important;
  font-weight: 950 !important;
  text-decoration: none !important;

  box-shadow: 0 10px 22px rgba(13, 99, 206, 0.20) !important;
}

/* ================= LOGOUT ================= */

.dashboard-bottom-actions {
  width: 100% !important;
  margin: 38px 0 0 !important;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.dashboard-logout-btn {
  min-width: 200px !important;
  height: 56px !important;

  padding: 0 34px !important;

  border: none !important;
  border-radius: 999px !important;

  background: linear-gradient(135deg, #08265c, #0d63ce) !important;
  color: #ffffff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 16px !important;
  font-weight: 950 !important;

  box-shadow: 0 18px 38px rgba(8, 38, 92, 0.25) !important;
  cursor: pointer !important;
  transition: 0.25s ease !important;
}

.dashboard-logout-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 24px 48px rgba(8, 38, 92, 0.32) !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .dash-hero-card {
    grid-template-columns: 1fr !important;
  }

  .dash-profile-mini {
    width: 100% !important;
    max-width: 420px !important;
  }

  .dash-summary-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .dash-grid-two {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  .dash-page {
    padding: 34px 0 64px !important;
  }

  .dash-container {
    width: 92% !important;
  }

  .dash-hero-card {
    padding: 30px 22px !important;
    border-radius: 26px !important;
    gap: 26px !important;
  }

  #dashHello {
    font-size: 36px !important;
    letter-spacing: -1px !important;
  }

  .dash-hero-card > div:first-child > p {
    font-size: 15px !important;
  }

  .dash-profile-mini {
    padding: 18px !important;
  }

  .dash-avatar {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    border-radius: 16px !important;
    font-size: 20px !important;
  }

  .dash-summary-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .dash-panel {
    padding: 24px 20px !important;
    border-radius: 24px !important;
  }

  .dash-panel-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .dash-panel-head h2 {
    font-size: 23px !important;
  }

  .dash-plan-item,
  .dash-history-item {
    grid-template-columns: 1fr !important;
  }

  .dash-history-right {
    align-items: flex-start !important;
  }

  .dash-receipt-btn {
    width: 100% !important;
  }
}

/* ============================================================
   SELF LEARNING CREATIVE PAGE FINAL DESIGN
   Paste at VERY END of style.css
============================================================ */

.sl-creative-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 12% 18%, rgba(13, 99, 206, 0.10), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(245, 158, 11, 0.10), transparent 24%),
    linear-gradient(180deg, #f3f8ff 0%, #ffffff 78%);
}

.sl-hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.sl-hero-bg-orb.orb-a {
  width: 340px;
  height: 340px;
  left: -140px;
  top: 70px;
  background: rgba(13, 99, 206, 0.08);
}

.sl-hero-bg-orb.orb-b {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: 40px;
  background: rgba(245, 158, 11, 0.10);
}

.sl-creative-wrap {
  position: relative;
  z-index: 2;
  width: min(1240px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.sl-kicker {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #0d63ce;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
}

.sl-creative-left h1 {
  margin: 0 0 22px;
  color: #061735;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2px;
}

.sl-creative-left h1 span {
  display: block;
  color: #0d63ce;
}

.sl-creative-left p {
  max-width: 680px;
  margin: 0;
  color: #526176;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}

.sl-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.sl-primary-btn,
.sl-secondary-btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
}

.sl-primary-btn {
  background: linear-gradient(135deg, #08265c, #0d63ce);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(13, 99, 206, 0.25);
}

.sl-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(13, 99, 206, 0.32);
}

.sl-secondary-btn {
  background: #ffffff;
  color: #08265c;
  border: 1px solid #cfe0f4;
}

.sl-secondary-btn:hover {
  background: #e8f2ff;
}

.sl-hero-trust {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 18px;
}

.sl-hero-trust div {
  min-width: 130px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d8e6f7;
  box-shadow: 0 14px 34px rgba(8, 38, 92, 0.08);
}

.sl-hero-trust strong {
  display: block;
  color: #061735;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
}

.sl-hero-trust span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

/* Right visual */

.sl-creative-right {
  position: relative;
  display: grid;
  gap: 24px;
}

.sl-photo-card {
  position: relative;
  min-height: 430px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8, 38, 92, 0.18);
  border: 8px solid #ffffff;
  background: #ffffff;
}

.sl-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.sl-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 23, 53, 0.02) 0%, rgba(6, 23, 53, 0.48) 100%);
  pointer-events: none;
}

.sl-floating-card {
  position: absolute;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(207, 224, 244, 0.9);
  border-radius: 20px;

  padding: 16px 18px;
  box-shadow: 0 18px 42px rgba(8, 38, 92, 0.18);
}

.sl-floating-card span {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #0d63ce;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 950;
}

.sl-floating-card strong {
  display: block;
  color: #061735;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
}

.sl-floating-card p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
}

.sl-card-one {
  left: -24px;
  top: 52px;
}

.sl-card-two {
  right: -20px;
  bottom: 42px;
}

.sl-benefit-box {
  background: #ffffff;
  border: 1px solid #d8e6f7;
  border-radius: 28px;
  padding: 28px 30px;
  box-shadow: 0 20px 52px rgba(8, 38, 92, 0.10);
}

.sl-benefit-box h3 {
  margin: 0 0 18px;
  color: #061735;
  font-size: 24px;
  font-weight: 950;
}

.sl-benefit-box ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sl-benefit-box li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-size: 15px;
  font-weight: 800;
}

.sl-benefit-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 950;
}

/* ============================================================
   SELF LEARNING PLANS PREMIUM CARDS
============================================================ */

.sl-plans,
.sl-plans-section,
#plans {
  background: #ffffff;
}

.sl-plan-card {
  position: relative;
  overflow: hidden;

  border-radius: 28px !important;
  border: 1px solid #d8e6f7 !important;
  background: #ffffff !important;

  padding: 34px 30px !important;
  box-shadow: 0 22px 56px rgba(8, 38, 92, 0.09) !important;

  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease !important;
}

.sl-plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, #08265c, #0d63ce, #0ea5e9);
}

.sl-plan-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(13, 99, 206, 0.06);
}

.sl-plan-card:hover {
  transform: translateY(-8px) !important;
  border-color: #bcd7f5 !important;
  box-shadow: 0 34px 74px rgba(8, 38, 92, 0.15) !important;
}

.sl-plan-card h3 {
  font-size: 30px !important;
  line-height: 1.2 !important;
  color: #061735 !important;
  font-weight: 950 !important;
  letter-spacing: -0.8px !important;
}

.sl-plan-card .sl-price,
.sl-plan-card .price {
  color: #0d63ce !important;
  font-size: 34px !important;
  font-weight: 950 !important;
}

.sl-plan-card li {
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: #334155 !important;
  font-weight: 700 !important;
}

.sl-plan-btn,
.sl-plan-card .buy-now,
.sl-plan-card .plan-buy-btn {
  height: 58px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #08265c, #0d63ce) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  box-shadow: 0 16px 34px rgba(13, 99, 206, 0.24) !important;
}

/* Featured/Premium card highlight */
.sl-plan-card:nth-child(3) {
  background:
    radial-gradient(circle at 90% 5%, rgba(245, 158, 11, 0.10), transparent 34%),
    #ffffff !important;
  border: 2px solid #0d63ce !important;
  transform: translateY(-10px);
}

.sl-plan-card:nth-child(3)::before {
  height: 8px;
  background: linear-gradient(90deg, #f59e0b, #0d63ce, #08265c);
}

/* ============================================================
   COMPARISON TABLE PROFESSIONAL
============================================================ */

.sl-comparison,
#comparison {
  padding-top: 80px !important;
}

.sl-compare-card,
.compare-card,
.comparison-card {
  border-radius: 34px !important;
  border: 1px solid #d8e6f7 !important;
  background: #ffffff !important;
  box-shadow: 0 28px 74px rgba(8, 38, 92, 0.10) !important;
  overflow: hidden !important;
}

.sl-compare-card table,
.compare-card table,
.comparison-card table,
#comparison table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 15px !important;
}

.sl-compare-card th,
.compare-card th,
.comparison-card th,
#comparison th {
  background: #08265c !important;
  color: #ffffff !important;
  padding: 18px 20px !important;
  font-size: 15px !important;
  font-weight: 950 !important;
}

.sl-compare-card td,
.compare-card td,
.comparison-card td,
#comparison td {
  padding: 17px 20px !important;
  border-bottom: 1px solid #e2eaf5 !important;
  color: #334155 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.sl-compare-card tr:hover td,
.compare-card tr:hover td,
.comparison-card tr:hover td,
#comparison tr:hover td {
  background: #f8fbff !important;
}

/* Responsive */

@media (max-width: 1100px) {
  .sl-creative-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .sl-card-one {
    left: 20px;
  }

  .sl-card-two {
    right: 20px;
  }

  .sl-hero-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .sl-plan-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 680px) {
  .sl-creative-hero {
    padding: 56px 0 60px;
  }

  .sl-creative-left h1 {
    font-size: 40px;
    letter-spacing: -1.2px;
  }

  .sl-creative-left p {
    font-size: 16px;
  }

  .sl-hero-actions {
    flex-direction: column;
  }

  .sl-primary-btn,
  .sl-secondary-btn {
    width: 100%;
  }

  .sl-hero-trust {
    grid-template-columns: 1fr;
  }

  .sl-photo-card,
  .sl-photo-card img {
    min-height: 360px;
  }

  .sl-floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .sl-photo-card {
    overflow: visible;
  }

  .sl-benefit-box {
    padding: 24px 22px;
  }
}

/* =========================================================
   STUDENT FEEDBACK - CREATIVE AUTO SCROLL FINAL
========================================================= */

.feedback-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.feedback-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.feedback-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #0d63ce;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.feedback-head h2 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  color: #08275f;
  letter-spacing: -1px;
}

.feedback-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
}

.feedback-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.feedback-slider::before,
.feedback-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.feedback-slider::before {
  left: 0;
  background: linear-gradient(90deg, #f8fbff, transparent);
}

.feedback-slider::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

.feedback-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: feedbackScroll 75s linear infinite;
}

.feedback-slider:hover .feedback-track {
  animation-play-state: paused;
}

.feedback-card {
  flex: 0 0 390px;
  background: #ffffff;
  border: 1px solid #dbe6f2;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(8, 39, 95, 0.08);
  transition: 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(8, 39, 95, 0.14);
  border-color: #b9d3f1;
}

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

.stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 900;
}

.feedback-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #0d63ce;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.feedback-card p {
  margin: 0 0 24px;
  color: #334155;
  font-size: 18px;
  line-height: 1.75;
  min-height: 165px;
}

.feedback-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feedback-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d63ce, #08275f);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(13, 99, 206, 0.22);
}

.feedback-user h4 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 900;
  color: #08275f;
}

.feedback-user span {
  display: block;
  color: #0d63ce;
  font-size: 15px;
  font-weight: 700;
}

@keyframes feedbackScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

@media (max-width: 992px) {
  .feedback-section {
    padding: 75px 0;
  }

  .feedback-card {
    flex: 0 0 330px;
    padding: 24px;
  }

  .feedback-card p {
    font-size: 16px;
    min-height: 150px;
  }

  .feedback-user h4 {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .feedback-head h2 {
    font-size: 34px;
  }

  .feedback-head p {
    font-size: 15px;
  }

  .feedback-card {
    flex: 0 0 290px;
    border-radius: 22px;
    padding: 22px;
  }

  .feedback-card p {
    font-size: 15px;
    min-height: auto;
  }

  .feedback-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ============================================================
   CREATIVE STUDENT FEEDBACK SECTION - NO SCROLL
============================================================ */

.creative-feedback-section {
  padding: 95px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(13, 99, 206, 0.08), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(245, 158, 11, 0.10), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.creative-feedback-head {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.feedback-tag {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #0d63ce;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.creative-feedback-head h2 {
  margin: 0 0 16px;
  color: #08275f;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
}

.creative-feedback-head p {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.7;
}

/* Main layout */
.creative-feedback-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 28px;
  align-items: stretch;
}

/* Featured big card */
.featured-feedback-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 5%, rgba(245, 158, 11, 0.16), transparent 30%),
    linear-gradient(135deg, #08265c, #0d63ce);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(8, 38, 92, 0.24);
}

.featured-feedback-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.featured-quote-mark {
  position: absolute;
  top: 18px;
  right: 36px;
  font-size: 120px;
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
}

.feedback-top-line {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.feedback-course-pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #0d63ce;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.featured-feedback-card .feedback-course-pill {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.feedback-rating {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 900;
}

.featured-feedback-card h3 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -0.8px;
  margin: 0 0 22px;
}

.featured-feedback-card p {
  position: relative;
  z-index: 2;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 34px;
}

.featured-user-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.feedback-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d63ce, #08275f);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(13, 99, 206, 0.22);
}

.feedback-avatar.big {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #ffffff;
  color: #08265c;
  font-size: 20px;
}

.featured-user-row h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  margin: 0 0 4px;
}

.featured-user-row span {
  color: #bfdbfe;
  font-size: 15px;
  font-weight: 800;
}

/* Mini cards grid */
.feedback-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mini-feedback-card {
  background: #ffffff;
  border: 1px solid #dbe6f2;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(8, 39, 95, 0.08);
  transition: 0.28s ease;
}

.mini-feedback-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(8, 39, 95, 0.13);
  border-color: #bcd7f5;
}

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

.mini-feedback-head > span:last-child {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.mini-feedback-card p {
  margin: 0 0 24px;
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
}

.mini-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-user h4 {
  margin: 0 0 4px;
  color: #08275f;
  font-size: 18px;
  font-weight: 950;
}

.mini-user small {
  color: #0d63ce;
  font-size: 13px;
  font-weight: 800;
}

/* Bottom feedback chips */
.feedback-course-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.course-feedback-chip {
  background: #ffffff;
  border: 1px solid #dbe6f2;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 14px 34px rgba(8, 39, 95, 0.06);
  transition: 0.25s ease;
}

.course-feedback-chip:hover {
  transform: translateY(-4px);
  border-color: #bcd7f5;
}

.course-feedback-chip strong {
  display: block;
  color: #08275f;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.course-feedback-chip span {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

/* Responsive */
@media (max-width: 1080px) {
  .creative-feedback-layout {
    grid-template-columns: 1fr;
  }

  .featured-feedback-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .creative-feedback-section {
    padding: 70px 0;
  }

  .creative-feedback-head h2 {
    font-size: 34px;
  }

  .featured-feedback-card {
    padding: 30px 24px;
    border-radius: 26px;
  }

  .featured-feedback-card h3 {
    font-size: 28px;
  }

  .featured-feedback-card p {
    font-size: 16px;
  }

  .feedback-mini-grid,
  .feedback-course-strip {
    grid-template-columns: 1fr;
  }

  .mini-feedback-card {
    padding: 22px;
    border-radius: 22px;
  }
}

.feedback-track {
  animation: none !important;
}

.feedback-slider {
  overflow: visible !important;
}

/* ============================================================
   AUTH MODAL GOOGLE BUTTON FINAL FIX
   Prevent huge Google logo / broken login modal
============================================================ */

.auth-google-btn,
.sl-auth-google,
button.auth-google-btn {
  width: 100% !important;
  height: 58px !important;
  padding: 0 22px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;

  border: 1px solid #d8e2ef !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: #071b4d !important;

  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  cursor: pointer !important;
  overflow: hidden !important;
}

.auth-google-btn img,
.auth-google-logo,
button.auth-google-btn img,
.sl-auth-google img {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;

  object-fit: contain !important;
  display: inline-block !important;

  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 26px !important;
}

.auth-google-btn span,
.sl-auth-google span {
  display: inline-block !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* Forgot password alignment fix */
.auth-forgot,
.forgot-password,
.auth-forgot-password {
  display: block !important;
  width: fit-content !important;
  margin: 8px 0 22px auto !important;
  color: #0d63ce !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

/* Modal scrolling cleaner */
.auth-modal,
.sl-auth-modal {
  overflow-x: hidden !important;
}

@media (max-width: 768px) {
  .auth-google-btn,
  .sl-auth-google,
  button.auth-google-btn {
    height: 54px !important;
    font-size: 16px !important;
  }

  .auth-google-btn img,
  .auth-google-logo,
  button.auth-google-btn img,
  .sl-auth-google img {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    flex-basis: 24px !important;
  }
}

/* ============================================================
   NAVBAR PROFILE ICON PROFESSIONAL FIX
============================================================ */

html body .header .nav-actions,
html body .header #authArea,
html body .header .auth-nav-area {
  min-width: auto !important;
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  margin-left: 18px !important;
}

html body .header .nav-user,
html body .header .nav-user-icon-only {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

html body .header .nav-user-avatar {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  flex: 0 0 42px !important;

  border-radius: 50% !important;
  background: #08265c !important;
  color: #ffffff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.2px !important;

  box-shadow: 0 8px 22px rgba(8, 38, 92, 0.18) !important;
}

/* Mobile profile icon */
@media (max-width: 768px) {
  html body .header .nav-user,
  html body .header .nav-user-icon-only,
  html body .header .nav-user-avatar {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    flex-basis: 38px !important;
  }

  html body .header .nav-user-avatar {
    font-size: 13px !important;
  }
}
/* ============================================================
   FINAL NAV PROFILE CIRCLE FIX - NO OVAL
   Paste at VERY END of style.css
============================================================ */

html body header #authArea,
html body .header #authArea,
html body header .auth-nav-area,
html body .header .auth-nav-area,
html body header .nav-actions,
html body .header .nav-actions {
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;

  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;

  padding: 0 !important;
  margin: 0 0 0 18px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: visible !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Parent link/button should not create oval */
html body header .nav-user,
html body .header .nav-user,
html body header .nav-user-icon-only,
html body .header .nav-user-icon-only,
html body header .dashboard-nav-user,
html body .header .dashboard-nav-user {
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;

  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;

  flex: 0 0 44px !important;
  aspect-ratio: 1 / 1 !important;

  padding: 0 !important;
  margin: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;
  overflow: visible !important;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* Actual initials circle */
html body header .nav-user-avatar,
html body .header .nav-user-avatar,
html body #authArea .nav-user-avatar {
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;

  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;

  flex: 0 0 44px !important;
  aspect-ratio: 1 / 1 !important;

  padding: 0 !important;
  margin: 0 !important;

  box-sizing: border-box !important;
  border-radius: 999px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #08265c !important;
  color: #ffffff !important;

  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;

  border: 0 !important;
  outline: 0 !important;

  box-shadow: 0 10px 24px rgba(8, 38, 92, 0.18) !important;
  overflow: hidden !important;
}

/* Dashboard page exception: allow name beside circle */
html body.dashboard-page .header #authArea,
html body:has(.dash-page) .header #authArea {
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
}

html body.dashboard-page .header .dashboard-nav-user,
html body:has(.dash-page) .header .dashboard-nav-user {
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
  gap: 10px !important;
}

html body.dashboard-page .header .nav-user-name,
html body:has(.dash-page) .header .nav-user-name {
  display: inline-block !important;
}

/* ============================================================
   DASHBOARD NAV PROFILE RIGHT SPACING FIX
   Paste at VERY END of style.css
============================================================ */

html body:has(.dash-page) .header .nav-actions {
  margin-left: 22px !important;
  margin-right: 42px !important;
  padding-right: 0 !important;
  flex: 0 0 auto !important;
}

html body:has(.dash-page) .header #authArea,
html body:has(.dash-page) .header .auth-nav-area {
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;
}

html body:has(.dash-page) .header .dashboard-nav-user {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;
}

html body:has(.dash-page) .header .dashboard-nav-user .nav-user-avatar {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;

  border-radius: 50% !important;
  flex: 0 0 44px !important;
}

html body:has(.dash-page) .header .dashboard-nav-user .nav-user-name {
  display: inline-block !important;
  color: #08265c !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

/* ============================================================
   DASHBOARD FINAL OVERRIDE - MINIMAL PREMIUM
   Paste at VERY END of style.css
============================================================ */

body:has(.dash-page) {
  background: #f4f8ff !important;
}

.dash-page {
  padding: 46px 18px 70px !important;
  background:
    radial-gradient(circle at 85% 8%, rgba(13, 99, 206, 0.10), transparent 26%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%) !important;
}

.dash-container {
  max-width: 1180px !important;
  margin: 0 auto !important;
}

/* HERO smaller + premium */
.dash-hero-card {
  min-height: auto !important;
  padding: 34px 42px !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 60%, #edf5ff 100%) !important;
  border: 1px solid #d8e7f7 !important;
  box-shadow: 0 18px 45px rgba(8, 38, 92, 0.08) !important;

  display: grid !important;
  grid-template-columns: 1fr 280px !important;
  gap: 34px !important;
  align-items: center !important;
}

.dash-tag {
  padding: 8px 16px !important;
  border-radius: 999px !important;
  background: #eaf3ff !important;
  color: #0d63ce !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  margin-bottom: 18px !important;
}

.dash-hero-card h1 {
  font-size: clamp(38px, 4.2vw, 58px) !important;
  line-height: 1.05 !important;
  letter-spacing: -1.6px !important;
  margin: 0 0 12px !important;
  color: #061b45 !important;
}

.dash-hero-card p {
  font-size: 16px !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Profile card */
.dash-profile-mini {
  width: 100% !important;
  min-width: 0 !important;
  padding: 20px !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid #dbe8f7 !important;
  box-shadow: 0 14px 34px rgba(8, 38, 92, 0.08) !important;
}

.dash-avatar {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #08265c, #0d63ce) !important;
  font-size: 23px !important;
}

.dash-profile-mini h3 {
  font-size: 20px !important;
  margin: 0 0 4px !important;
}

.dash-profile-mini p {
  font-size: 13px !important;
}

/* Summary cards compact */
.dash-summary-grid {
  gap: 20px !important;
  margin: 26px 0 !important;
}

.dash-summary-card {
  min-height: 135px !important;
  padding: 22px !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid #dbe8f7 !important;
  box-shadow: 0 12px 30px rgba(8, 38, 92, 0.055) !important;
}

.dash-icon {
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  font-size: 21px !important;
  background: #edf5ff !important;
  margin-bottom: 16px !important;
}

.dash-summary-card h3 {
  font-size: 17px !important;
  margin-bottom: 8px !important;
}

/* Panels */
.dash-grid-two {
  grid-template-columns: 1.45fr 0.8fr !important;
  gap: 24px !important;
  margin-bottom: 24px !important;
}

.dash-panel {
  border-radius: 26px !important;
  padding: 28px !important;
  background: #ffffff !important;
  border: 1px solid #dbe8f7 !important;
  box-shadow: 0 14px 34px rgba(8, 38, 92, 0.055) !important;
}

.dash-panel-head h2 {
  font-size: 24px !important;
  color: #061b45 !important;
}

/* Active plan/history item */
.dash-plan-item,
.dash-history-item {
  background: #f8fbff !important;
  border: 1px solid #d6e6f8 !important;
  border-radius: 18px !important;
  padding: 20px 22px !important;
  margin-bottom: 14px !important;
}

.dash-plan-item h3,
.dash-history-item h3 {
  font-size: 18px !important;
  color: #061b45 !important;
}

/* Quick actions */
.dash-actions a,
.dash-actions button {
  border-radius: 16px !important;
  padding: 16px 18px !important;
  background: #f8fbff !important;
  border: 1px solid #cfe1f5 !important;
  color: #061b45 !important;
  font-size: 15px !important;
}

.dash-actions a:hover,
.dash-actions button:hover {
  background: #08265c !important;
  color: #ffffff !important;
}

/* Logout */
.dashboard-logout-btn {
  min-width: 180px !important;
  padding: 14px 30px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #08265c, #0d63ce) !important;
  box-shadow: 0 14px 30px rgba(13, 99, 206, 0.18) !important;
}

/* Responsive */
@media (max-width: 1000px) {
  .dash-hero-card {
    grid-template-columns: 1fr !important;
  }

  .dash-grid-two {
    grid-template-columns: 1fr !important;
  }

  .dash-summary-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 650px) {
  .dash-hero-card {
    padding: 24px !important;
  }

  .dash-summary-grid {
    grid-template-columns: 1fr !important;
  }
}



/* =============================================
   PLACEMENTS PAGE — Logic Technologies
   All placement-specific styles (pl- prefixed)
   ============================================= */

/* --- Animated Counter Stats --- */
.pl-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.pl-stat-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(7,29,70,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pl-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(10,102,194,0.14);
}
.pl-stat-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.pl-stat-card:hover::before { transform: scaleX(1); }
.pl-stat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bg-blue-soft), #dceefe);
  display: grid; place-items: center;
  margin: 0 auto 16px;
  color: var(--blue);
  transition: background 0.35s, color 0.35s, transform 0.35s;
}
.pl-stat-card:hover .pl-stat-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}
.pl-stat-icon svg { width: 28px; height: 28px; }
.pl-stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.pl-stat-label {
  color: var(--slate);
  font-size: 13.5px;
  margin-top: 4px;
  font-weight: 500;
}

/* --- Placement Process Timeline --- */
.pl-process-section { background: var(--bg-soft); }
.pl-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 10px;
}
.pl-timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--amber));
  border-radius: 3px;
  z-index: 0;
}
.pl-step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: plFadeUp 0.6s ease forwards;
}
.pl-step:nth-child(1) { animation-delay: 0.1s; }
.pl-step:nth-child(2) { animation-delay: 0.25s; }
.pl-step:nth-child(3) { animation-delay: 0.4s; }
.pl-step:nth-child(4) { animation-delay: 0.55s; }
.pl-step:nth-child(5) { animation-delay: 0.7s; }

@keyframes plFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.pl-step-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--blue);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  color: var(--blue);
  font-weight: 800;
  font-size: 18px;
  font-family: var(--font-display);
  box-shadow: 0 6px 20px rgba(10,102,194,0.15);
  transition: background 0.35s, color 0.35s, transform 0.35s;
}
.pl-step:hover .pl-step-dot {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  transform: scale(1.12);
  border-color: var(--blue-bright);
}
.pl-step h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--navy);
}
.pl-step p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.55;
  padding: 0 8px;
}

/* --- Placement Domains Grid --- */
.pl-domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.pl-domain-card {
  background: white;
  padding: 32px 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(7,29,70,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.pl-domain-card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,102,194,0.16), rgba(10,102,194,0) 70%);
  transform: scale(0.6); opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
}
.pl-domain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(10,102,194,0.14);
  border-color: #c7e0fb;
}
.pl-domain-card:hover::after { transform: scale(1.4); opacity: 1; }
.pl-domain-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bg-blue-soft), #dceefe);
  display: grid; place-items: center;
  color: var(--blue);
  margin-bottom: 18px;
  transition: background 0.35s, color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.pl-domain-card:hover .pl-domain-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
  box-shadow: 0 14px 26px rgba(10,102,194,0.3);
}
.pl-domain-icon svg { width: 30px; height: 30px; }
.pl-domain-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--navy);
  position: relative;
  display: inline-block;
}
.pl-domain-card h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 3px; width: 28px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transition: width 0.35s ease;
}
.pl-domain-card:hover h3::after { width: 100%; }
.pl-domain-card p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.pl-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pl-role-tag {
  display: inline-block;
  background: var(--bg-blue-soft);
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #dbeafe;
}

/* --- Success Stories --- */
.pl-stories-section { background: linear-gradient(180deg, var(--bg-blue-soft), #ffffff); }
.pl-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.pl-story-card {
  background: white;
  padding: 32px 26px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(7,29,70,0.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.pl-story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(10,102,194,0.12);
}
.pl-story-quote {
  color: #334155;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--blue-bright);
}
.pl-story-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pl-story-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: grid; place-items: center;
  color: white;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.pl-story-info h4 {
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 2px;
}
.pl-story-info span {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 600;
}
.pl-story-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
.pl-story-badge svg { width: 13px; height: 13px; }

/* --- Mock Interview / Prep Section --- */
.pl-prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 10px;
}
.pl-prep-card {
  background: white;
  padding: 34px 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(7,29,70,0.06);
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.pl-prep-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(10,102,194,0.12);
}
.pl-prep-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bg-blue-soft), #dceefe);
  display: grid; place-items: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.35s, color 0.35s, transform 0.35s;
}
.pl-prep-card:hover .pl-prep-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}
.pl-prep-icon svg { width: 26px; height: 26px; }
.pl-prep-text h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}
.pl-prep-text p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

/* --- CTA Banner --- */
.pl-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0c2c5e 60%, var(--blue) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.pl-cta-banner::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.25), transparent 70%);
  pointer-events: none;
}
.pl-cta-banner::after {
  content: "";
  position: absolute;
  bottom: -100px; left: 30%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 70%);
  pointer-events: none;
}
.pl-cta-text {
  position: relative;
  z-index: 1;
}
.pl-cta-text h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
}
.pl-cta-text p {
  color: #cbd8ee;
  font-size: 15.5px;
  max-width: 520px;
}
.pl-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.pl-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14.5px;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
}
.pl-cta-btn.primary {
  background: var(--amber);
  color: var(--navy);
}
.pl-cta-btn.secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.pl-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* --- Scroll Reveal animation --- */
.pl-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pl-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pl-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .pl-timeline { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pl-timeline::before { display: none; }
  .pl-domains-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-stories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pl-stats-strip { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pl-stat-card { padding: 26px 14px; }
  .pl-timeline { grid-template-columns: 1fr; gap: 28px; }
  .pl-domains-grid { grid-template-columns: 1fr; }
  .pl-stories-grid { grid-template-columns: 1fr; }
  .pl-prep-grid { grid-template-columns: 1fr; }
  .pl-cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .pl-cta-actions { justify-content: center; }
}
@media (max-width: 480px) {
  .pl-stats-strip { grid-template-columns: 1fr; }
}

/* Enquire Now button alignment fix */

html body .header .nav-actions:has(.nav-login-btn),
html body .header .auth-nav-area:has(.nav-login-btn),
html body .header #authArea:has(.nav-login-btn) {
  width: auto !important;
  min-width: 165px !important;
  max-width: none !important;

  height: auto !important;
  min-height: 46px !important;
  max-height: none !important;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  overflow: visible !important;
}

html body .header .nav-login-btn {
  width: auto !important;
  min-width: 165px !important;
  max-width: none !important;
  height: 52px !important;

  padding: 0 28px !important;
  margin: 0 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  white-space: nowrap !important;
  flex-shrink: 0 !important;
  border-radius: 50px !important;
}

/* Keep complete navbar inside screen */
html body .header .container.nav {
  width: calc(100% - 80px) !important;
  max-width: 1750px !important;
  margin: 0 auto !important;
  padding: 0 !important;

  grid-template-columns: 260px minmax(0, 1fr) 165px !important;
  column-gap: 24px !important;
}

/* Resume purchase popup ke upar Terms popup */
.resume-lock-overlay {
  z-index: 999990 !important;
}

#logicTermsOverlay {
  z-index: 9999998 !important;
}

#logicTermsModal {
  z-index: 9999999 !important;
}

.course-item.course-hidden {
  display: none !important;
}

/* ============================================================
   MOBILE HEADER FIX — NO HAMBURGER, SMALL LOGIN, BIGGER LOGO
   ============================================================ */

@media (max-width: 768px) {

  /* Hide hamburger completely */
.mobile-menu-btn {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}

  /* Hide nav links on mobile (no menu needed) */
  html body .header .nav-links,
  html body:has(.hero) .header .nav-links {
    display: none !important;
  }

  /* Header height */
  html body .header,
  html body:has(.hero) .header {
    height: 66px !important;
    min-height: 66px !important;
    max-height: 66px !important;
  }

  /* Nav row layout */
  html body .header .container.nav,
  html body .header .nav,
  html body:has(.hero) .header .container.nav,
  html body:has(.hero) .header .nav {
    display: flex !important;
    grid-template-columns: none !important;
    height: 66px !important;
    min-height: 66px !important;
    max-height: 66px !important;
    gap: 12px !important;
    padding: 0 16px !important;
  }

  /* Logo — slightly bigger */
  html body .header .logo,
  html body:has(.hero) .header .logo {
    flex: 1 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  html body .header .logo img,
  html body:has(.hero) .header .logo img {
    height: 64px !important;
    max-width: 180px !important;
    width: auto !important;
  }

  /* Auth area */
  html body .header .nav-actions,
  html body:has(.hero) .header .nav-actions {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  /* Login button — small and compact */
  html body .header .nav-login-btn,
  html body .header .nav-btn,
  html body:has(.hero) .header .nav-login-btn,
  html body:has(.hero) .header .nav-btn {
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    min-width: auto !important;
    white-space: nowrap !important;
  }

  /* Avatar smaller */
  html body .header .nav-user-avatar,
  html body:has(.hero) .header .nav-user-avatar {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    font-size: 14px !important;
  }

  html body .header .nav-user-name,
  html body:has(.hero) .header .nav-user-name {
    display: none !important;
  }
}

/* ============================================================
   MOBILE VIEW FIX — FINAL
   ============================================================ */
@media (max-width: 768px) {

  /* Hide nav links completely on mobile */
  html body .header .nav-links,
  html body:has(.hero) .header .nav-links,
  .header .nav-links,
  .nav-links {
    display: none !important;
    visibility: hidden !important;
  }

  /* Header compact */
  html body .header,
  html body:has(.hero) .header,
  .header {
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
  }

  /* Nav row */
  html body .header .container.nav,
  html body .header .nav,
  html body:has(.hero) .header .container.nav,
  html body:has(.hero) .header .nav,
  .header .container.nav,
  .header .nav {
    display: flex !important;
    grid-template-columns: none !important;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    gap: 10px !important;
    padding: 0 14px !important;
    width: 100% !important;
  }

  /* Logo */
  html body .header .logo,
  html body:has(.hero) .header .logo,
  .header .logo {
    flex: 1 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  html body .header .logo img,
  html body:has(.hero) .header .logo img,
  .header .logo img {
    height: 90px !important;
    max-width: 240px !important;
    width: auto !important;
    max-height: none !important;
  }

  /* Auth area visible */
  html body .header .nav-actions,
  html body:has(.hero) .header .nav-actions,
  .header .nav-actions {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  /* Login button small */
  html body .header .nav-login-btn,
  html body .header .nav-btn,
  html body:has(.hero) .header .nav-login-btn,
  html body:has(.hero) .header .nav-btn,
  .header .nav-login-btn,
  .header .nav-btn {
    height: 30px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    min-width: auto !important;
  }

  /* Avatar small */
  html body .header .nav-user-avatar,
  html body:has(.hero) .header .nav-user-avatar,
  .header .nav-user-avatar {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    font-size: 13px !important;
  }

  /* Hide username text on mobile */
  html body .header .nav-user-name,
  html body:has(.hero) .header .nav-user-name,
  .header .nav-user-name {
    display: none !important;
  }

  /* Hero section push down fix */
  .hero {
    padding-top: 90px !important;
  }

  /* Upcoming Batches section — remove gaps on mobile */
  .ubv4 {
    padding: 20px 14px !important;
  }

  .ubv4-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  .ubv4-left {
    max-width: 100% !important;
    flex: none !important;
    width: 100% !important;
  }

  .ubv4-heading {
    font-size: 22px !important;
  }

  .ubv4-timeline {
    margin-right: 0 !important;
    align-self: center !important;
    gap: 20px !important;
    padding: 0 !important;
  }

  .ubv4-track {
    left: 25px !important;
    right: 25px !important;
  }

  .ubv4-node {
    width: 80px !important;
  }

  .ubv4-circle {
    width: 48px !important;
    height: 48px !important;
    font-size: 16px !important;
  }

  .ubv4-course {
    font-size: 11px !important;
  }

  .ubv4-date {
    font-size: 10px !important;
  }

  /* Course card icons — smaller on mobile */
  .course-acc-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    top: -18px !important;
    left: 12px !important;
    border-width: 2px !important;
  }

  .course-acc-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .course-acc-title {
    font-size: 14px !important;
  }

  .course-acc-tag {
    font-size: 12px !important;
  }

}

/* ============================================================
   MOBILE HEADER — KEEP POSITION, ONLY INCREASE LOGO SIZE
============================================================ */

@media (max-width: 768px) {

  .header {
    height: 88px !important;
    min-height: 88px !important;
    background: #ffffff !important;
  }

  .header .container.nav,
  .header .nav {
    height: 88px !important;
    min-height: 88px !important;
    padding: 0 16px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    flex-wrap: nowrap !important;
  }

  .header .logo {
    width: 165px !important;
    min-width: 165px !important;
    height: 88px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    position: static !important;
    overflow: visible !important;
  }

  .header .logo img {
    position: static !important;

    width: 160px !important;
    max-width: 160px !important;

    height: 78px !important;
    max-height: 78px !important;

    object-fit: contain !important;

    transform: scale(1.35) !important;
    transform-origin: left center !important;

    margin: 0 !important;
  }

  .header .nav-actions {
    margin-left: auto !important;
    flex-shrink: 0 !important;
    position: static !important;
  }

  .header .nav-user-avatar {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
  }

  .header .nav-links {
    display: none !important;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eff6ff;
  color: #0a66c2;
  font-size: 19px;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: #0a66c2;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-social a:nth-child(2):hover {
  background: linear-gradient(
    135deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  color: #ffffff;
}

.footer-social a:nth-child(3):hover {
  background: #ff0000;
}

/* =====================================================
   MODULE VIDEO SIDEBAR
===================================================== */

.right-sidebar {
  width: 390px;
  flex: 0 0 390px;
  align-self: flex-start;
}

.module-video-panel {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.module-video-panel h3 {
  margin: 0 0 14px;
  color: #071d46;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
}

/* Direct video link */
.module-video-link {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #071d46;
  text-decoration: none;
}

/* Large thumbnail */
.module-video-thumbnail {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #eaf3ff;
  box-shadow: 0 12px 30px rgba(7, 29, 70, 0.14);
}

.module-video-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: none;
  transition: transform 0.3s ease;
}

.module-video-link:hover .module-video-thumbnail img {
  transform: scale(1.035);
}

/* YouTube play button */
.module-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ff0000;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  padding-left: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.module-video-link:hover .module-play-icon {
  background: #cc0000;
  transform: translate(-50%, -50%) scale(1.08);
}

/* Video title */
.module-video-title {
  display: block;
  margin: 12px 0 0;
  color: #071d46;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.module-video-description {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* Remove old dropdown styling */
.module-video-item,
.module-video-item[open],
.module-video-item summary,
.video-coming-soon {
  display: none !important;
}

/* Tablet */
@media (max-width: 1200px) {
  .right-sidebar {
    width: 340px;
    flex-basis: 340px;
  }

  .module-play-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .module-video-title {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .right-sidebar {
    width: 100%;
    flex: 0 0 100%;
  }

  .module-video-panel {
    width: 100%;
  }

  .module-video-panel h3 {
    font-size: 23px;
  }

  .module-video-thumbnail {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .module-video-panel h3 {
    font-size: 21px;
  }

  .module-video-thumbnail {
    border-radius: 12px;
  }

  .module-play-icon {
    width: 54px;
    height: 54px;
    font-size: 21px;
  }

  .module-video-title {
    margin-top: 10px;
    font-size: 16px;
  }
}

.module-video-panel {
  margin-top: 22px;
}

/* =====================================================
   FOOTER DIRECTORY LINKS — FINAL CLEAN VERSION
===================================================== */

.footer {
  width: 100%;
  margin: 0;
  padding: 56px 0 0;
  background: var(--navy-deep);
  color: #ffffff;
}

.footer > .container {
  width: min(1200px, 92%);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-grid {
  width: 100%;
  padding-bottom: 38px;
}

.footer-link-directory {
  width: min(1200px, 92%);
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 30px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid #0a66c2;
}

.footer-link-row {
  width: 100%;
  margin-bottom: 26px;
}

.footer-link-row:last-child {
  margin-bottom: 0;
}

.footer-link-row > strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-inline-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 7px;
  width: 100%;
}

.footer-inline-links a {
  position: relative;
  display: inline-block;
  margin: 0 11px 0 0;
  padding: 0 12px 0 0;
  color: #9db9df;
  font-size: 13px;
  line-height: 1.7;
  text-decoration: none;
}

.footer-inline-links a::after {
  content: "|";
  position: absolute;
  right: 0;
  color: #7387a5;
}

.footer-inline-links a:last-child::after {
  display: none;
}

.footer-inline-links a:hover {
  color: #38bdf8;
}

.footer-bottom {
  width: 100%;
  margin: 0;
  padding: 20px;
  background: var(--navy-deep);
  color: #8fb3ec;
  text-align: center;
  border: none;
}

/* Modal elements footer ke neeche space nahi lenge */
.auth-overlay,
.payment-form-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Closed modal state */
.auth-overlay:not(.active):not(.show):not(.open),
.payment-form-overlay:not(.active):not(.show):not(.open) {
  display: none;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 38px;
  }

  .footer-link-directory {
    width: calc(100% - 28px);
    margin-top: 24px;
    padding: 24px 0 22px;
  }

  .footer-link-row {
    margin-bottom: 22px;
  }

  .footer-link-row > strong {
    font-size: 14px;
  }

  .footer-inline-links a {
    margin-right: 8px;
    padding-right: 9px;
    font-size: 12px;
  }

  .footer-bottom {
    padding: 18px 14px;
    font-size: 12px;
  }
}

/* =========================================
   FLOATING SIDE TABS — FINAL COMPACT FIX
========================================= */

.enquire-tab,
.about-us-tab {
  position: fixed;
  right: 0;
  z-index: 9999;

  width: 46px;
  height: 120px;
  min-height: 120px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  text-decoration: none;

  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

/* Book a Demo */
.enquire-tab {
  top: 34%;
  background: linear-gradient(180deg, #18c86a, #0caf54);
  box-shadow: 0 10px 24px rgba(16, 185, 90, 0.28);
}

/* About Us */
.about-us-tab {
  top: calc(34% + 135px);
  background: linear-gradient(180deg, #ffb85f, #f59e0b);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
}

/* Text properly vertical */
.enquire-tab span,
.about-us-tab span {
  display: block;
  white-space: nowrap;

  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;

  transform: rotate(-90deg);
  transform-origin: center;
}

/* Small hover effect */
.enquire-tab:hover,
.about-us-tab:hover {
  width: 50px;
}

/* Mobile */
@media (max-width: 768px) {
  .enquire-tab,
  .about-us-tab {
    width: 42px;
    height: 105px;
    min-height: 105px;
    right: 0;
    border-radius: 10px 0 0 10px;
  }

  .enquire-tab {
    top: 38%;
  }

  .about-us-tab {
    top: calc(38% + 118px);
  }

  .enquire-tab span,
  .about-us-tab span {
    font-size: 11px;
    transform: rotate(-90deg);
  }
}

/* =========================================
   FLOATING SIDE TABS — SMALL + VERTICAL
========================================= */

.enquire-tab,
.about-us-tab {
  position: fixed !important;
  right: 0 !important;
  z-index: 9999 !important;

  width: 44px !important;
  height: 118px !important;
  min-height: 118px !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #ffffff !important;
  text-decoration: none !important;

  border-radius: 12px 0 0 12px !important;
  overflow: hidden !important;
}

/* Book a Demo */
.enquire-tab {
  top: 27% !important;
  background: linear-gradient(180deg, #19c968, #0caf54) !important;
  box-shadow: 0 10px 22px rgba(16, 185, 90, 0.28) !important;
}

/* About Us */
.about-us-tab {
  top: calc(27% + 130px) !important;
  background: linear-gradient(180deg, #ffb65c, #f59e0b) !important;
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.28) !important;
}

/* Proper vertical text */
.enquire-tab span,
.about-us-tab span {
  display: block !important;

  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.3px !important;
  white-space: nowrap !important;

  writing-mode: vertical-rl !important;
  text-orientation: mixed !important;

  transform: rotate(180deg) !important;
}

/* Small hover */
.enquire-tab:hover,
.about-us-tab:hover {
  width: 48px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .enquire-tab,
  .about-us-tab {
    width: 40px !important;
    height: 105px !important;
    min-height: 105px !important;
  }

  .enquire-tab {
    top: 32% !important;
  }

  .about-us-tab {
    top: calc(32% + 115px) !important;
  }

  .enquire-tab span,
  .about-us-tab span {
    font-size: 11px !important;
  }
}

/* Smaller and slightly lower floating tabs */

.enquire-tab,
.about-us-tab {
  width: 40px !important;
  height: 105px !important;
  min-height: 105px !important;
}

.enquire-tab {
  top: 31% !important;
}

.about-us-tab {
  top: calc(31% + 118px) !important;
}

.enquire-tab span,
.about-us-tab span {
  font-size: 12px !important;
  letter-spacing: 0.2px !important;
}

/* =========================================
   FLOATING SIDE TABS — REFERENCE STYLE
========================================= */

.enquire-tab,
.about-us-tab {
  position: fixed !important;
  right: 0 !important;
  z-index: 9999 !important;

  width: 42px !important;
  height: 110px !important;
  min-height: 110px !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 12px 0 0 12px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

/* Top button */
.enquire-tab {
  top: 47% !important;
  background: #14b866 !important;
  box-shadow: 0 8px 18px rgba(20, 184, 102, 0.28) !important;
}

/* Bottom button */
.about-us-tab {
  top: calc(47% + 114px) !important;
  background: #f59e0b !important;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.28) !important;
}

/* Vertical text */
.enquire-tab span,
.about-us-tab span {
  display: block !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.2px !important;
  white-space: nowrap !important;

  writing-mode: vertical-rl !important;
  text-orientation: mixed !important;
  transform: rotate(180deg) !important;
}

/* Slight hover */
.enquire-tab:hover,
.about-us-tab:hover {
  width: 46px !important;
}

.enquire-tab {
  top: 50% !important;
}

.about-us-tab {
  top: calc(50% + 108px) !important;
}
.enquire-tab {
  top: 54% !important;
}

.about-us-tab {
  top: calc(54% + 108px) !important;
}
.enquire-tab {
  top: 50% !important;
}

.about-us-tab {
  top: calc(50% + 104px) !important;
}
.about-us-tab {
  top: calc(50% + 100px) !important;
}
.about-us-tab {
  top: calc(50% + 94px) !important;
}
.about-us-tab {
  top: calc(50% + 90px) !important;
}

/* =========================================
   NAVBAR OVERLAP FINAL FIX
========================================= */

header .container,
.navbar .container,
.nav-container,
.header-inner {
  width: 100% !important;
  max-width: 1650px !important;
  margin: 0 auto !important;
  padding-left: 55px !important;
  padding-right: 55px !important;

  display: flex !important;
  align-items: center !important;
}

/* Logo */
.logo,
.nav-logo {
  flex: 0 0 auto !important;
}

/* Navbar links */
.nav-links,
.nav-menu {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;

  gap: 24px !important;
  margin-left: auto !important;

  white-space: nowrap !important;
  flex-wrap: nowrap !important;
}

/* Normal links */
.nav-links > a:not(.nav-enquire-btn),
.nav-menu > a:not(.nav-enquire-btn) {
  flex: 0 0 auto !important;
  margin: 0 !important;
  padding: 0 !important;

  font-size: 16px !important;
  white-space: nowrap !important;
}

/* Enquire Now button */
.nav-enquire-btn,
.nav-links .nav-enquire-btn,
.nav-menu .nav-enquire-btn {
  position: static !important;
  flex: 0 0 155px !important;

  width: 155px !important;
  min-width: 155px !important;
  height: 54px !important;

  margin-left: 5px !important;
  padding: 0 20px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 999px !important;

  background: #0b2d66 !important;
  color: #ffffff !important;

  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;

  transform: none !important;
  text-decoration: none !important;
}

/* Placements link must remain visible */
.nav-links a[href*="placements"],
.nav-menu a[href*="placements"] {
  margin-right: 0 !important;
  padding-right: 0 !important;
  flex-shrink: 0 !important;
}

/* Laptop screens */
@media (max-width: 1450px) {
  header .container,
  .navbar .container,
  .nav-container,
  .header-inner {
    padding-left: 38px !important;
    padding-right: 38px !important;
  }

  .nav-links,
  .nav-menu {
    gap: 18px !important;
  }

  .nav-links > a:not(.nav-enquire-btn),
  .nav-menu > a:not(.nav-enquire-btn) {
    font-size: 14px !important;
  }

  .nav-enquire-btn,
  .nav-links .nav-enquire-btn,
  .nav-menu .nav-enquire-btn {
    flex-basis: 140px !important;
    width: 140px !important;
    min-width: 140px !important;
    height: 50px !important;
    font-size: 14px !important;
  }
}

/* =========================================
   FINAL CONNECTED RIGHT-SIDE FLOATING TABS
========================================= */

.right-floating-tabs {
  position: fixed !important;
  top: 38% !important;
  right: 0 !important;
  z-index: 9999 !important;

  width: 42px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;

  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove individual fixed positioning */
.right-floating-tabs .enquire-tab,
.right-floating-tabs .about-us-tab,
.right-floating-tabs .side-social-slider {
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;

  width: 42px !important;
  margin: 0 !important;
  padding: 0 !important;

  transform: none !important;
}

/* Book a Demo */
.right-floating-tabs .enquire-tab {
  height: 118px !important;
  min-height: 118px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 12px 0 0 0 !important;

  background: #14bd67 !important;
  color: #ffffff !important;

  text-decoration: none !important;
  overflow: hidden !important;
}

/* Social icons wrapper */
.right-floating-tabs .side-social-slider {
  display: flex !important;
  flex-direction: column !important;

  gap: 0 !important;

  background: transparent !important;
  box-shadow: none !important;
}

/* Social icons */
.right-floating-tabs .side-social {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  color: #ffffff !important;
  font-size: 17px !important;
  text-decoration: none !important;

  box-shadow: none !important;
  transform: none !important;
}

.right-floating-tabs .instagram {
  background:
    radial-gradient(
      circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%
    ) !important;
}

.right-floating-tabs .youtube {
  background: #ff0000 !important;
}

.right-floating-tabs .linkedin {
  background: #0a66c2 !important;
}

/* About Us */
.right-floating-tabs .about-us-tab {
  height: 112px !important;
  min-height: 112px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 0 0 0 12px !important;

  background: #f59e0b !important;
  color: #ffffff !important;

  text-decoration: none !important;
  overflow: hidden !important;
}

/* Vertical text */
.right-floating-tabs .enquire-tab span,
.right-floating-tabs .about-us-tab span {
  display: block !important;

  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;

  writing-mode: vertical-rl !important;
  text-orientation: mixed !important;

  transform: rotate(180deg) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .right-floating-tabs {
    top: 35% !important;
    width: 38px !important;
  }

  .right-floating-tabs .enquire-tab,
  .right-floating-tabs .about-us-tab,
  .right-floating-tabs .side-social,
  .right-floating-tabs .side-social-slider {
    width: 38px !important;
    min-width: 38px !important;
  }

  .right-floating-tabs .enquire-tab {
    height: 105px !important;
    min-height: 105px !important;
  }

  .right-floating-tabs .about-us-tab {
    height: 100px !important;
    min-height: 100px !important;
  }

  .right-floating-tabs .side-social {
    height: 38px !important;
    min-height: 38px !important;
  }
}

#about .two-col > div:first-child > p {
  font-weight: 600;
  color: #334155;
}

#about .two-col ul li {
  font-weight: 500;
  color: #334155;
}



/* =========================================
   MOBILE NAVBAR FINAL FIX
========================================= */

.mobile-menu-btn {
  display: none;
}

@media (max-width: 900px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: #ffffff;
  }

  .header .nav {
    position: relative;

    min-height: 78px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: 150px;
    height: 64px;

    display: flex;
    align-items: center;
  }

  .logo img {
    width: 150px;
    height: 64px;
    object-fit: contain;
  }

  /* Hamburger button */
  .mobile-menu-btn {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 10px;

    background: #eff6ff;
    color: #071d46;

    font-size: 24px;
    cursor: pointer;
  }

  /* Menu hidden by default */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 12px 18px 18px;

    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 18px 32px rgba(7, 29, 70, 0.14);
  }

  /* Menu opens only with class */
  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 12px;

    border-bottom: 1px solid #edf2f7;

    color: #071d46;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a.nav-active {
    color: #0a66c2;
    background: #eff6ff;
    border-radius: 8px;
  }

  .nav-actions {
    display: none;
  }
}

/* =========================================
   MOBILE VIEW: NAVBAR LINKS COMPLETELY HIDE
========================================= */

@media (max-width: 768px) {
  .header {
    position: relative !important;
    z-index: 1000 !important;
    background: #ffffff !important;
  }

  .header .nav {
    min-height: 78px !important;
    padding: 0 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  /* Mobile par sirf logo */
  .header .logo {
    width: 145px !important;
    height: 62px !important;
    margin: 0 !important;
  }

  .header .logo img {
    width: 145px !important;
    height: 62px !important;
    object-fit: contain !important;
  }

  /* Saare navbar links hide */
  .header .nav-links {
    display: none !important;
  }

  /* Login / Enquire / profile button hide */
  .header .nav-actions,
  .header .auth-nav-area {
    display: none !important;
  }

  /* Agar hamburger pehle se HTML mein hai toh woh bhi hide */
  .mobile-menu-btn,
  .menu-toggle,
  .hamburger,
  .nav-toggle {
    display: none !important;
  }
}

/* ============================================================
   CHECKOUT PHONE INPUT
============================================================ */

.checkout-grid .iti {
  width: 100%;
}

#payPhone {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 120px !important;
  border: 1px solid #cfdbea;
  background: #f8fbff;
  color: #071d46;
  font-size: 15px;
  box-sizing: border-box;
}

.checkout-grid .iti__selected-country {
  padding: 0 12px !important;
  background: transparent !important;
  border: none !important;
}

.checkout-grid .iti__selected-dial-code {
  margin-left: 7px;
  color: #071d46;
  font-size: 15px;
  font-weight: 600;
}

/* Dropdown is appended to body by checkout.html. */
.iti--container {
  z-index: 1000000 !important;
}

.iti--container .iti__dropdown-content {
  width: 360px !important;
  max-width: calc(100vw - 24px) !important;
  max-height: 280px !important;
  overflow: hidden !important;
  border: 1px solid #cfdbea !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 32px rgba(7, 29, 70, 0.18) !important;
}

.iti--container .iti__search-input {
  width: calc(100% - 16px) !important;
  height: 38px !important;
  margin: 8px !important;
  padding: 7px 10px !important;
  box-sizing: border-box !important;
}

.iti--container .iti__country-list {
  max-height: 220px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

/* ============================================================
   NAVBAR FONT WEIGHT FIX — ALL PAGES
============================================================ */

.header .nav-links a,
.header .nav-links a:link,
.header .nav-links a:visited,
.header .nav-links a:hover,
.header .nav-links a:focus,
.header .nav-links a.nav-active {
  font-weight: 500 !important;
}

/* Active page sirf blue rahe, bold nahi */
.header .nav-links a.nav-active {
  color: #0d63ce !important;
}

/* ============================================================
   RIGHT FLOATING TABS + CHATBOT FINAL FIX
============================================================ */

/* Floating tabs */
html body .right-floating-tabs {
  top: 16% !important;
  right: 0 !important;
  transform: none !important;
  z-index: 10050 !important;
}

/* Chatbot button */
html body .chatbot-toggle,
html body .chatbot-button,
html body .chat-widget-button,
html body .chatbot-launcher,
html body .chatbot-fab,
html body #chatbotToggle,
html body #chatbotButton,
html body #chatWidgetButton {
  position: fixed !important;

  right: 2px !important;
  bottom: 14px !important;

  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;

  padding: 0 !important;
  margin: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;
  font-size: 17px !important;

  transform: none !important;
  z-index: 10070 !important;
}

/* Chatbot ke andar icon */
html body .chatbot-toggle svg,
html body .chatbot-toggle i,
html body .chatbot-button svg,
html body .chatbot-button i,
html body .chat-widget-button svg,
html body .chat-widget-button i,
html body .chatbot-launcher svg,
html body .chatbot-fab svg,
html body #chatbotToggle svg,
html body #chatbotButton svg {
  width: 18px !important;
  height: 18px !important;
  font-size: 17px !important;
}

/* Mobile */
@media (max-width: 768px) {
  html body .right-floating-tabs {
    top: 14% !important;
  }

  html body .chatbot-toggle,
  html body .chatbot-button,
  html body .chat-widget-button,
  html body .chatbot-launcher,
  html body .chatbot-fab,
  html body #chatbotToggle,
  html body #chatbotButton,
  html body #chatWidgetButton {
    right: 2px !important;
    bottom: 10px !important;

    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
  }

  html body .chatbot-toggle svg,
  html body .chatbot-toggle i,
  html body .chatbot-button svg,
  html body .chatbot-button i,
  html body .chat-widget-button svg,
  html body .chat-widget-button i,
  html body .chatbot-launcher svg,
  html body .chatbot-fab svg,
  html body #chatbotToggle svg,
  html body #chatbotButton svg {
    width: 17px !important;
    height: 17px !important;
    font-size: 16px !important;
  }
}

/* ============================================================
   CHATBOT WINDOW FINAL CLEAN LAYOUT FIX
============================================================ */

/* ============================================================
   CHATBOT WINDOW — FINAL RESPONSIVE FIX
============================================================ */

/* Main chatbot popup */
html body .chatbot-container,
html body .chatbot-window,
html body .chatbot-box,
html body .chat-widget,
html body .chat-widget-container,
html body #chatbotContainer,
html body #chatbotWindow,
html body #chatbotBox {
  position: fixed !important;

  right: 70px !important;
  bottom: 66px !important;

  width: 360px !important;
  max-width: calc(100vw - 90px) !important;

  height: 520px !important;
  max-height: calc(100vh - 90px) !important;

  display: flex !important;
  flex-direction: column !important;

  background: #ffffff !important;
  border: 1px solid #d8e2ef !important;
  border-radius: 18px !important;

  overflow: hidden !important;

  box-shadow: 0 24px 60px rgba(7, 29, 70, 0.24) !important;

  /* Floating tabs se upar */
  z-index: 10100 !important;
}

/* Floating side buttons chatbot ke neeche */
html body .right-floating-tabs {
  z-index: 10050 !important;
}

/* Header */
html body .chatbot-header,
html body .chat-header,
html body .chat-widget-header,
html body #chatbotHeader {
  flex: 0 0 auto !important;

  padding: 24px 22px 20px !important;

  background: #0b1235 !important;
  color: #ffffff !important;

  border-radius: 18px 18px 0 0 !important;
}

html body .chatbot-header h2,
html body .chat-header h2,
html body .chat-widget-header h2,
html body #chatbotHeader h2 {
  margin: 0 0 10px !important;

  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1.2 !important;
}

html body .chatbot-header p,
html body .chat-header p,
html body .chat-widget-header p,
html body #chatbotHeader p {
  margin: 0 !important;

  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* Scrollable messages area */
html body .chatbot-messages,
html body .chat-messages,
html body .chat-widget-messages,
html body #chatbotMessages {
  flex: 1 1 auto !important;
  min-height: 0 !important;

  padding: 18px !important;

  background: #f3f6fb !important;

  overflow-x: hidden !important;
  overflow-y: auto !important;

  scrollbar-width: thin !important;
  scrollbar-color: #9db4d0 #e8eef6 !important;
}

/* Chrome / Edge scrollbar */
html body .chatbot-messages::-webkit-scrollbar,
html body .chat-messages::-webkit-scrollbar,
html body .chat-widget-messages::-webkit-scrollbar,
html body #chatbotMessages::-webkit-scrollbar {
  width: 7px !important;
}

html body .chatbot-messages::-webkit-scrollbar-track,
html body .chat-messages::-webkit-scrollbar-track,
html body .chat-widget-messages::-webkit-scrollbar-track,
html body #chatbotMessages::-webkit-scrollbar-track {
  background: #e8eef6 !important;
  border-radius: 10px !important;
}

html body .chatbot-messages::-webkit-scrollbar-thumb,
html body .chat-messages::-webkit-scrollbar-thumb,
html body .chat-widget-messages::-webkit-scrollbar-thumb,
html body #chatbotMessages::-webkit-scrollbar-thumb {
  background: #9db4d0 !important;
  border-radius: 10px !important;
}

/* Messages */
html body .chatbot-message,
html body .chat-message,
html body .bot-message,
html body .user-message {
  max-width: 88% !important;

  margin-bottom: 12px !important;
  padding: 12px 14px !important;

  border-radius: 14px !important;

  font-size: 14px !important;
  line-height: 1.5 !important;

  overflow-wrap: anywhere !important;
}

/* Bottom typing row */
html body .chatbot-input-area,
html body .chat-input-area,
html body .chatbot-footer,
html body .chat-widget-footer,
html body #chatbotInputArea {
  flex: 0 0 auto !important;

  width: 100% !important;
  min-height: 68px !important;

  padding: 11px 12px !important;

  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 44px !important;
  align-items: center !important;
  gap: 9px !important;

  background: #ffffff !important;
  border-top: 1px solid #dbe5f0 !important;

  overflow: hidden !important;
  box-sizing: border-box !important;
}

/* Typing input */
html body .chatbot-input-area input,
html body .chat-input-area input,
html body .chatbot-footer input,
html body .chat-widget-footer input,
html body #chatbotInput,
html body #chatInput,
html body .chatbot-input-area textarea,
html body .chat-input-area textarea,
html body .chatbot-footer textarea,
html body .chat-widget-footer textarea {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;

  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;

  margin: 0 !important;
  padding: 0 14px !important;

  border: 1px solid #cfdbea !important;
  border-radius: 10px !important;

  background: #ffffff !important;
  color: #0f2747 !important;

  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 44px !important;

  resize: none !important;
  outline: none !important;

  /* Blue line remove */
  box-shadow: none !important;

  overflow: hidden !important;
  box-sizing: border-box !important;
}

/* Focus par bhi blue glow nahi */
html body .chatbot-input-area input:focus,
html body .chat-input-area input:focus,
html body .chatbot-footer input:focus,
html body .chat-widget-footer input:focus,
html body #chatbotInput:focus,
html body #chatInput:focus,
html body .chatbot-input-area textarea:focus,
html body .chat-input-area textarea:focus,
html body .chatbot-footer textarea:focus,
html body .chat-widget-footer textarea:focus {
  border-color: #9fb4cc !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Send button */
html body .chatbot-input-area button,
html body .chat-input-area button,
html body .chatbot-footer button,
html body .chat-widget-footer button,
html body #chatbotSend,
html body #chatSendButton {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: none !important;
  border-radius: 10px !important;

  background: #0d63ce !important;
  color: #ffffff !important;

  cursor: pointer !important;
  box-sizing: border-box !important;
}

/* Mobile */
@media (max-width: 768px) {
  html body .chatbot-container,
  html body .chatbot-window,
  html body .chatbot-box,
  html body .chat-widget,
  html body .chat-widget-container,
  html body #chatbotContainer,
  html body #chatbotWindow,
  html body #chatbotBox {
    right: 52px !important;
    bottom: 58px !important;

    width: calc(100vw - 68px) !important;
    max-width: none !important;

    height: calc(100vh - 95px) !important;
    max-height: calc(100vh - 95px) !important;

    border-radius: 16px !important;
  }

  html body .chatbot-header,
  html body .chat-header,
  html body .chat-widget-header,
  html body #chatbotHeader {
    padding: 20px 18px 16px !important;
  }

  html body .chatbot-header h2,
  html body .chat-header h2,
  html body .chat-widget-header h2,
  html body #chatbotHeader h2 {
    font-size: 24px !important;
  }

  html body .chatbot-input-area,
  html body .chat-input-area,
  html body .chatbot-footer,
  html body .chat-widget-footer,
  html body #chatbotInputArea {
    grid-template-columns: minmax(0, 1fr) 42px !important;
    padding: 10px !important;
    gap: 8px !important;
  }

  html body .chatbot-input-area input,
  html body .chat-input-area input,
  html body .chatbot-footer input,
  html body .chat-widget-footer input,
  html body #chatbotInput,
  html body #chatInput,
  html body .chatbot-input-area textarea,
  html body .chat-input-area textarea,
  html body .chatbot-footer textarea,
  html body .chat-widget-footer textarea {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    line-height: 42px !important;
  }

  html body .chatbot-input-area button,
  html body .chat-input-area button,
  html body .chatbot-footer button,
  html body .chat-widget-footer button,
  html body #chatbotSend,
  html body #chatSendButton {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
  }
}

/* ============================================================
   N8N CHATBOT — FINAL WORKING FIX
============================================================ */

:root {
  /* Window */
  --chat--window--width: 360px;
  --chat--window--height: 520px;
  --chat--window--right: 72px;
  --chat--window--bottom: 64px;
  --chat--window--z-index: 10100;
  --chat--window--border-radius: 18px;
  --chat--window--border: 1px solid #d8e2ef;

  /* Header */
  --chat--header--padding: 22px;
  --chat--header--background: #0b1235;
  --chat--header--color: #ffffff;
  --chat--heading--font-size: 28px;
  --chat--subtitle--font-size: 14px;
  --chat--subtitle--line-height: 1.5;

  /* Body */
  --chat--body--background: #f3f6fb;
  --chat--messages-list--padding: 18px;

  /* Messages */
  --chat--message--font-size: 14px;
  --chat--message--padding: 12px 14px;
  --chat--message--border-radius: 14px;
  --chat--message-line-height: 1.5;
  --chat--message--margin-bottom: 12px;

  /* Input */
  --chat--textarea--height: 44px;
  --chat--textarea--max-height: 100px;
  --chat--input--font-size: 14px;
  --chat--input--padding: 10px 14px;
  --chat--input--border: 1px solid #cfdbea;
  --chat--input--border-active: 1px solid #9fb4cc;
  --chat--input--border-radius: 10px;
  --chat--input--background: #ffffff;
  --chat--input--line-height: 1.4;

  /* Toggle button */
  --chat--toggle--size: 46px;
  --chat--toggle--width: 46px;
  --chat--toggle--height: 46px;
}

/* Chat popup side tabs ke upar */
html body .chat-window {
  z-index: 10100 !important;
  box-shadow: 0 24px 60px rgba(7, 29, 70, 0.24) !important;
}

/* Message area scrollbar */
html body .chat-body {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: thin;
  scrollbar-color: #9db4d0 #e8eef6;
}

html body .chat-body::-webkit-scrollbar {
  width: 7px;
}

html body .chat-body::-webkit-scrollbar-track {
  background: #e8eef6;
}

html body .chat-body::-webkit-scrollbar-thumb {
  background: #9db4d0;
  border-radius: 10px;
}

/* Bottom typing area */
html body .chat-footer {
  box-sizing: border-box !important;
  padding: 10px 12px !important;
  background: #ffffff !important;
  border-top: 1px solid #dbe5f0 !important;
}

/* Input ko side shift hone se roko */
html body .chat-input {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Blue focus line remove */
html body .chat-input:focus,
html body textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Send button alignment */
html body .chat-input-send-button {
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  padding: 0 !important;
}

/* Side floating tabs chatbot ke neeche */
html body .right-floating-tabs {
  z-index: 10050 !important;
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --chat--window--width: calc(100vw - 72px);
    --chat--window--height: calc(100vh - 100px);
    --chat--window--right: 56px;
    --chat--window--bottom: 58px;
    --chat--heading--font-size: 24px;
    --chat--header--padding: 18px;
  }
}


/* ============================================================
   AWARDS & RECOGNITION STRIP
============================================================ */

.awards-strip-section {
  padding: 46px 0;
  background: linear-gradient(
    135deg,
    #04122d 0%,
    #071d46 55%,
    #0b2b63 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.awards-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.awards-strip-heading {
  max-width: 760px;
  margin-bottom: 28px;
  text-align: center;
}

.awards-strip-heading span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 16px;

  background: #eff6ff;
  border: 1px solid #d7e8ff;
  border-radius: 999px;

  color: #0a66c2;
  font-size: 13px;
  font-weight: 700;
}

.awards-strip-heading span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 16px;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;

  color: #8ec5ff;
  font-size: 13px;
  font-weight: 700;
}

.awards-strip-image {
  width: 100%;
  padding: 18px 24px;

  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;

  box-shadow: 0 14px 38px rgba(7, 29, 70, 0.08);
}

.awards-strip-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;

  margin: auto;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .awards-strip-section {
    padding: 36px 0;
  }

  .awards-strip-heading {
    margin-bottom: 20px;
  }

 .awards-strip-heading h2 {
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.25;
}

  .awards-strip-image {
    padding: 12px;
    border-radius: 14px;
    overflow-x: auto;
  }

  .awards-strip-image img {
    width: 760px;
    max-width: none;
    max-height: 170px;
  }
}

html body .awards-strip-section .awards-strip-heading h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* =========================================================
   AWARDS SECTION GOLDEN SIDE PARTICLES
========================================================= */

.awards-strip-section {
  position: relative;
  overflow: hidden;
}

/* content upar rahe */
.awards-strip-heading,
.awards-strip-card {
  position: relative;
  z-index: 2;
}

/* left + right particle areas */
.awards-particles {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.awards-particles-left {
  left: 0;
}

.awards-particles-right {
  right: 0;
}

/* individual particles */
.awards-particles span {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe8a3 0%, #f7c948 55%, #b8860b 100%);
  box-shadow:
    0 0 8px rgba(255, 215, 90, 0.85),
    0 0 14px rgba(255, 200, 60, 0.45);
  opacity: 0.85;
  animation: awardsGoldFall linear infinite;
}

/* left side particles */
.awards-particles-left span:nth-child(1) {
  left: 18px;
  animation-duration: 7s;
  animation-delay: 0s;
}
.awards-particles-left span:nth-child(2) {
  left: 42px;
  width: 5px;
  height: 5px;
  animation-duration: 9s;
  animation-delay: 1s;
}
.awards-particles-left span:nth-child(3) {
  left: 26px;
  width: 8px;
  height: 8px;
  animation-duration: 8s;
  animation-delay: 2s;
}
.awards-particles-left span:nth-child(4) {
  left: 58px;
  width: 4px;
  height: 4px;
  animation-duration: 10s;
  animation-delay: 0.5s;
}
.awards-particles-left span:nth-child(5) {
  left: 12px;
  width: 6px;
  height: 6px;
  animation-duration: 11s;
  animation-delay: 3s;
}
.awards-particles-left span:nth-child(6) {
  left: 48px;
  width: 5px;
  height: 5px;
  animation-duration: 8.5s;
  animation-delay: 1.5s;
}

/* right side particles */
.awards-particles-right span:nth-child(1) {
  right: 16px;
  animation-duration: 7.5s;
  animation-delay: 0s;
}
.awards-particles-right span:nth-child(2) {
  right: 38px;
  width: 5px;
  height: 5px;
  animation-duration: 9.5s;
  animation-delay: 1.2s;
}
.awards-particles-right span:nth-child(3) {
  right: 24px;
  width: 8px;
  height: 8px;
  animation-duration: 8s;
  animation-delay: 2.3s;
}
.awards-particles-right span:nth-child(4) {
  right: 56px;
  width: 4px;
  height: 4px;
  animation-duration: 10.5s;
  animation-delay: 0.8s;
}
.awards-particles-right span:nth-child(5) {
  right: 10px;
  width: 6px;
  height: 6px;
  animation-duration: 11s;
  animation-delay: 3s;
}
.awards-particles-right span:nth-child(6) {
  right: 46px;
  width: 5px;
  height: 5px;
  animation-duration: 8.8s;
  animation-delay: 1.7s;
}

/* falling animation */
@keyframes awardsGoldFall {
  0% {
    top: -10%;
    transform: translateX(0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  35% {
    transform: translateX(8px) scale(1);
  }
  65% {
    transform: translateX(-6px) scale(0.95);
  }
  100% {
    top: 110%;
    transform: translateX(10px) scale(0.75);
    opacity: 0;
  }
}

/* mobile */
@media (max-width: 768px) {
  .awards-particles {
    width: 45px;
  }

  .awards-particles span {
    transform: scale(0.85);
  }
}

/* ============================================================
   CHATBOT TEASER — FINAL POSITION FIX
============================================================ */

html body #chatbotTeaser {
  position: fixed !important;

  right: 98px !important;
  bottom: 28px !important;

  width: 185px !important;
  min-width: 185px !important;
  max-width: 185px !important;

  padding: 9px 12px !important;
  margin: 0 !important;

  background: #ffffff !important;
  border: 1px solid rgba(7, 29, 70, 0.08) !important;
  border-radius: 9px !important;

  box-shadow: 0 9px 22px rgba(7, 29, 70, 0.15) !important;

  color: #64748b !important;
  text-align: left !important;

  transform: none !important;
  z-index: 10069 !important;
}

html body #chatbotTeaser::after {
  content: "" !important;

  position: absolute !important;
  top: 50% !important;
  right: -6px !important;

  width: 12px !important;
  height: 12px !important;

  background: #ffffff !important;
  border-top: 1px solid rgba(7, 29, 70, 0.08) !important;
  border-right: 1px solid rgba(7, 29, 70, 0.08) !important;

  transform: translateY(-50%) rotate(45deg) !important;
}

html body #chatbotTeaser strong {
  display: block !important;

  margin: 0 0 1px !important;

  color: #1e293b !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

html body #chatbotTeaser span {
  display: block !important;

  margin: 0 !important;

  color: #64748b !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
}

html body #chatbotTeaser.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateX(10px) !important;
  pointer-events: none !important;
}

@media (max-width: 600px) {
  html body #chatbotTeaser {
    right: 78px !important;
    bottom: 20px !important;

    width: 165px !important;
    min-width: 165px !important;
    max-width: 165px !important;

    padding: 8px 10px !important;
  }

  html body #chatbotTeaser strong {
    font-size: 12px !important;
  }

  html body #chatbotTeaser span {
    font-size: 10.5px !important;
  }
}

.course-actions {
    min-width: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.batch-type {
    font-size: 16px;
    font-weight: 600;
    color: #536680;
}

.button-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.enquire-btn,
.curriculum-btn {
    height: 52px;
    border: none;
    border-radius: 12px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.enquire-btn {
    background: #eaf3ff;
    color: #0066cc;
}

.enquire-btn:hover {
    background: #dcecff;
}

.curriculum-dropdown {
    position: relative;
}

.curriculum-btn {
    background: #072b58;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.curriculum-btn:hover {
    background: #0b3b75;
}

.dropdown-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.curriculum-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.curriculum-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 190px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #dce4ef;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(7, 43, 88, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
    z-index: 50;
}

.curriculum-dropdown.active .curriculum-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.curriculum-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border-radius: 8px;
    color: #072b58;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.curriculum-menu a:hover {
    background: #edf5ff;
}

/* Mobile responsive */

@media (max-width: 768px) {
    .course-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .course-actions {
        width: 100%;
    }

    .button-row {
        width: 100%;
        flex-wrap: wrap;
    }

    .enquire-btn,
    .curriculum-btn {
        flex: 1;
    }

    .curriculum-dropdown {
        flex: 1;
    }

    .curriculum-btn {
        width: 100%;
        justify-content: center;
    }

    .curriculum-menu {
        left: 0;
        right: auto;
        width: 100%;
    }
}

.course-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.curriculum-btn {
  height: 52px;
  padding: 0 20px;
  border-radius: 12px;
  background: #0b376d;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  transition: 0.25s ease;
}

.curriculum-btn:hover {
  background: #082b57;
  color: #ffffff;
}

.curriculum-btn span {
  font-size: 17px;
}

@media (max-width: 768px) {
  .course-btn-group {
    flex-wrap: wrap;
  }
}

.course-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 250px;
  align-items: center;
  gap: 28px;
}

.course-info {
  min-width: 0;
}

.course-info p {
  margin-bottom: 0;
  white-space: normal;
  overflow: visible;
}

.course-meta {
  width: 250px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.course-btn-group {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.course-btn-group .enquire-btn,
.course-btn-group .curriculum-btn {
  height: 52px;
  padding: 0 16px;
  font-size: 15px;
  border-radius: 11px;
}

.course-btn-group .enquire-btn {
  flex: 1;
}

.course-btn-group .curriculum-btn {
  flex: 1.25;
}

@media (max-width: 768px) {
  .awards-section {
    width: 100%;
    overflow: hidden;
    padding: 45px 15px;
  }

  .awards-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .awards-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }

  .awards-image-wrapper img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .awards-section h2 {
    max-width: 100%;
    padding: 0 10px;
    font-size: 30px;
    line-height: 1.15;
    overflow-wrap: break-word;
  }
}

@media (max-width: 768px) {
  .awards-slider,
  .awards-track,
  .awards-row {
    width: 100%;
    max-width: 100%;
    transform: none !important;
    overflow: hidden;
  }
}