/**
 * MOP Careers — Internshala Trainings-Inspired Design System
 * Clean white, teal primary, professional educational platform
 */

/* ===================== TOKENS ===================== */
:root {
  --primary:        #00a5ec;   /* Internshala teal-blue */
  --primary-dark:   #0090d0;
  --primary-light:  #e6f6fd;
  --offer:          #f97316;   /* Orange badge */
  --green:          #16a34a;
  --red:            #dc2626;
  --text:           #1a1a2e;
  --text-2:         #4b5563;
  --text-3:         #9ca3af;
  --border:         #e5e7eb;
  --bg:             #f8fafc;
  --white:          #ffffff;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
  --shadow-md:      0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:      0 8px 24px rgba(0,0,0,.12);
  --radius:         8px;
  --radius-lg:      12px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px; line-height: 1.6;
  color: var(--text); background: var(--white);
}
a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; display: block; }

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.navbar .container-lg { display: flex; align-items: center; height: 60px; gap: 8px; }

.navbar-brand {
  font-size: 1.4rem; font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
  white-space: nowrap;
  text-decoration: none;
  margin-right: 12px;
  flex-shrink: 0;
}
.navbar-brand span { color: var(--text); }

.navbar-toggler { border: none; background: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }

/* Nav links */
.navbar-nav { gap: 0; align-items: center; }
.nav-link {
  font-size: .92rem; font-weight: 600; color: var(--text) !important;
  padding: 0 14px !important;
  height: 60px; display: flex; align-items: center;
  position: relative; white-space: nowrap;
  transition: color .2s;
  border-bottom: 3px solid transparent;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; border-bottom-color: var(--primary); }

/* OFFER badge */
.offer-badge {
  display: inline-block; background: var(--offer); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .04em;
  padding: 2px 5px; border-radius: 3px;
  margin-left: 5px; vertical-align: middle; line-height: 1.4;
}

/* Search box in nav */
.nav-search {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: 20px;
  background: var(--bg); padding: 5px 14px; gap: 6px;
  font-size: .88rem; color: var(--text-3);
  cursor: pointer; white-space: nowrap;
}
.nav-search i { font-size: .8rem; }

.btn-login {
  border: 1.5px solid var(--primary); color: var(--primary) !important;
  border-radius: 6px; padding: 6px 20px !important;
  font-size: .88rem; font-weight: 700; height: auto !important;
  border-bottom: none !important;
  white-space: nowrap; transition: background .2s, color .2s;
}
.btn-login:hover { background: var(--primary); color: #fff !important; }

/* ===================== MEGA MENU ===================== */
.dropdown-hover { position: relative; }
.dropdown-hover:hover > .nav-link { color: var(--primary) !important; border-bottom-color: var(--primary); }

/* Mega menu — two-column */
.mega-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  z-index: 2000;
  width: 680px;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.dropdown-hover:hover > .mega-menu { display: flex; animation: menuDown .2s ease; }

.mega-cats {
  list-style: none; width: 220px; flex-shrink: 0;
  background: #f9fafb; border-right: 1px solid var(--border);
  padding: 8px 0;
}
.mega-cat {
  padding: 10px 20px; font-size: .88rem; font-weight: 500;
  color: var(--text-2); cursor: pointer;
  border-left: 3px solid transparent;
  transition: all .15s;
  display: flex; align-items: center; justify-content: space-between;
}
.mega-cat:hover, .mega-cat.active {
  background: var(--white); color: var(--primary);
  border-left-color: var(--primary); font-weight: 600;
}
.mega-cat i { font-size: .7rem; opacity: .5; }

.mega-courses { flex: 1; padding: 12px 4px; overflow-y: auto; max-height: 380px; }
.course-panel { display: none; }
.course-panel.active { display: block; }
.course-panel a {
  display: block; padding: 8px 16px;
  font-size: .87rem; color: var(--text-2); font-weight: 400;
  border-radius: 5px; transition: background .15s, color .15s;
}
.course-panel a:hover { background: var(--primary-light); color: var(--primary); }

/* Placement dropdown — single column with icons */
.placement-drop {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  z-index: 2000; min-width: 320px;
  border-radius: 0 0 var(--radius) var(--radius);
  list-style: none; padding: 8px 0;
  overflow: hidden;
}
.dropdown-hover:hover > .placement-drop { display: block; animation: menuDown .2s ease; }
.placement-drop li a {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px; font-size: .9rem; font-weight: 500; color: var(--text-2);
  transition: background .15s, color .15s;
}
.placement-drop li a:hover { background: var(--primary-light); color: var(--primary); }
.p-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0;
}

@keyframes menuDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== PROMO BAR ===================== */
.promo-bar {
  background: var(--primary); color: #fff;
  text-align: center; padding: 10px;
  font-size: .85rem; font-weight: 500;
}
.promo-bar strong { font-weight: 700; }
.promo-bar a { color: #fff; text-decoration: underline; margin-left: 6px; }

/* ===================== HERO — INTERNSHALA STYLE ===================== */
.hero-tabs-wrap { background: var(--white); }
.hero-tabs {
  display: flex; border-bottom: 2px solid var(--border);
  gap: 0; padding: 0 0; max-width: 860px;
}
.hero-tab-btn {
  padding: 16px 28px; font-size: 1rem; font-weight: 600;
  color: var(--text-2); cursor: pointer; background: none; border: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all .2s; display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.hero-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.hero-tab-badge {
  font-size: .65rem; font-weight: 700; background: var(--offer);
  color: #fff; padding: 2px 5px; border-radius: 3px;
}

.hero-panel { display: none; }
.hero-panel.active { display: block; }

/* Certification hero panel */
.cert-hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
  padding: 60px 0 50px;
  position: relative; overflow: hidden;
}
.cert-hero-inner { max-width: 860px; }
.cert-hero h1 {
  font-size: 2.8rem; font-weight: 800; line-height: 1.2;
  color: var(--text); margin-bottom: 12px;
}
.cert-hero h1 span { color: var(--primary); }
.cert-hero p { font-size: 1rem; color: var(--text-2); margin-bottom: 28px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-chip {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 7px 16px;
  font-size: .85rem; font-weight: 600; color: var(--text-2);
  cursor: pointer; transition: all .2s;
}
.hero-chip:hover, .hero-chip.active {
  border-color: var(--primary); color: var(--primary); background: var(--primary-light);
}
.cert-hero-img {
  position: absolute; right: 0; top: 0; bottom: 0; width: 480px;
  display: flex; align-items: center; justify-content: flex-end;
}
.cert-hero-img img { height: 100%; object-fit: cover; }
.cert-hero-stats {
  display: flex; gap: 40px; margin-top: 20px;
}
.ch-stat { display: flex; flex-direction: column; }
.ch-stat strong { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.ch-stat span { font-size: .78rem; color: var(--text-3); }

/* Placement hero panel */
.place-hero {
  background: linear-gradient(135deg, #fffbeb 0%, #fde8e8 100%);
  padding: 60px 0 50px;
}
.place-hero h1 { font-size: 2.8rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.place-hero h1 span { color: var(--primary); }
.place-cards-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.place-mini-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 22px;
  cursor: pointer; transition: all .2s; min-width: 160px;
  display: flex; flex-direction: column; gap: 8px;
}
.place-mini-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.place-mini-card .pmc-icon { font-size: 1.4rem; color: var(--primary); }
.place-mini-card .pmc-name { font-size: .88rem; font-weight: 700; color: var(--text); }
.place-mini-card .pmc-tag { font-size: .75rem; color: var(--text-3); }

/* ===================== COMPANY LOGOS STRIP ===================== */
.companies-strip {
  background: var(--white); padding: 24px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.companies-strip p { font-size: .8rem; font-weight: 600; color: var(--text-3); text-align: center; margin-bottom: 16px; letter-spacing: .06em; text-transform: uppercase; }
.logos-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 28px 36px; }
.logo-item { font-size: 1rem; font-weight: 800; color: var(--text-2); opacity: .6; letter-spacing: -0.5px; }

/* ===================== SECTION BASE ===================== */
.section { padding: 60px 0; }
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary);
  display: block; margin-bottom: 8px;
}
.section-title { font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.section-sub { font-size: .95rem; color: var(--text-2); margin-bottom: 36px; }

/* Category tabs */
.cat-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cat-tab {
  padding: 8px 18px; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: .85rem; font-weight: 600; color: var(--text-2);
  cursor: pointer; transition: all .2s;
}
.cat-tab:hover, .cat-tab.active {
  border-color: var(--primary); color: var(--primary); background: var(--primary-light);
}

/* ===================== COURSE CARDS ===================== */
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 992px) { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .course-grid { grid-template-columns: 1fr; } }

.course-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--white); overflow: hidden;
  transition: box-shadow .2s, transform .2s; cursor: pointer;
  display: flex; flex-direction: column;
}
.course-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.cc-badge-row { padding: 14px 16px 0; display: flex; gap: 6px; align-items: center; }
.cc-badge {
  font-size: .65rem; font-weight: 700; padding: 3px 8px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: .04em;
}
.badge-cert { background: #fef3c7; color: #92400e; }
.badge-place { background: #d1fae5; color: #065f46; }
.badge-ai { background: var(--primary-light); color: var(--primary); }
.badge-new { background: #fee2e2; color: #991b1b; }

.cc-body { padding: 12px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.cc-title { font-size: .98rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 6px; }
.cc-sub { font-size: .8rem; color: var(--text-2); margin-bottom: 12px; line-height: 1.5; }
.cc-meta { display: flex; align-items: center; gap: 14px; font-size: .78rem; color: var(--text-3); margin-top: auto; }
.cc-rating { display: flex; align-items: center; gap: 4px; color: var(--text-2); font-weight: 600; }
.cc-rating i { color: #f59e0b; font-size: .75rem; }
.cc-weeks { display: flex; align-items: center; gap: 4px; }

.cc-footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cc-price { font-size: .85rem; color: var(--text-2); }
.cc-price strong { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.cc-price del { font-size: .8rem; color: var(--text-3); margin-left: 4px; }
.btn-know { font-size: .82rem; font-weight: 700; color: var(--primary); border: 1.5px solid var(--primary); border-radius: 5px; padding: 6px 14px; transition: all .2s; }
.btn-know:hover { background: var(--primary); color: #fff; }

/* ===================== PLACEMENT CARDS ===================== */
.place-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--white); overflow: hidden;
  transition: box-shadow .2s, transform .2s; cursor: pointer;
  display: flex; flex-direction: column;
}
.place-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pc-top {
  padding: 24px 20px 20px;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  position: relative;
}
.pc-top h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.pc-top p { font-size: .8rem; color: var(--text-2); line-height: 1.5; }
.pc-new { position: absolute; top: 14px; right: 14px; background: var(--primary); color: #fff; font-size: .65rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: .06em; }
.pc-body { padding: 18px 20px; flex: 1; }
.pc-highlights { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pc-highlights li { font-size: .84rem; color: var(--text-2); display: flex; align-items: flex-start; gap: 8px; }
.pc-highlights li i { color: var(--primary); font-size: .75rem; margin-top: 3px; flex-shrink: 0; }
.pc-footer { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.pc-footer .btn-know { display: inline-block; }

/* ===================== STATS BAR ===================== */
.stats-bar { background: var(--primary); padding: 40px 0; color: #fff; }
.stats-bar .stats-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 2rem; font-weight: 800; }
.stat-item span { font-size: .82rem; opacity: .85; }

/* ===================== TESTIMONIALS ===================== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 992px) { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.testi-text { font-size: .9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { font-size: .85rem; font-weight: 700; color: var(--text); }
.testi-college { font-size: .78rem; color: var(--text-3); }
.testi-stars { color: #f59e0b; font-size: .8rem; margin-bottom: 10px; }

/* ===================== EDUCATORS ===================== */
.edu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 992px) { .edu-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .edu-grid { grid-template-columns: 1fr; } }
.edu-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; background: var(--white); }
.edu-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.6rem; color: var(--primary); }
.edu-name { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.edu-company { font-size: .8rem; color: var(--primary); font-weight: 600; margin-bottom: 6px; }
.edu-role { font-size: .8rem; color: var(--text-2); }

/* ===================== COURSE LANDING PAGE ===================== */
.course-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff; padding: 60px 0;
}
.course-hero h1 { font-size: 2.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.course-hero p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 20px; }
.course-meta-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.meta-pill { background: rgba(255,255,255,.12); color: #fff; border-radius: 20px; padding: 6px 14px; font-size: .8rem; display: flex; align-items: center; gap: 6px; }
.meta-pill i { font-size: .75rem; }
.course-highlights { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.course-highlights li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.85); }
.course-highlights li i { color: #4ade80; font-size: .85rem; margin-top: 2px; }

/* Sticky enroll card */
.enroll-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  position: sticky; top: 72px;
}
.ec-img { background: linear-gradient(135deg, var(--primary) 0%, #0f172a 100%); height: 140px; display: flex; align-items: center; justify-content: center; }
.ec-img i { font-size: 3rem; color: #fff; }
.ec-body { padding: 20px; }
.ec-price { font-size: 1.6rem; font-weight: 800; color: var(--text); }
.ec-price del { font-size: 1rem; color: var(--text-3); margin-left: 8px; font-weight: 400; }
.ec-discount { display: inline-block; background: #fef3c7; color: #92400e; font-size: .75rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-left: 8px; }
.ec-features { list-style: none; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.ec-features li { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--text-2); }
.ec-features li i { color: var(--primary); width: 16px; }
.btn-enroll { width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius); font-size: .95rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.btn-enroll:hover { background: var(--primary-dark); }

/* Curriculum */
.curriculum-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.curriculum-header { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; font-size: .9rem; background: var(--bg); }
.curriculum-header:hover { background: var(--primary-light); }
.curriculum-body { padding: 12px 18px 16px; display: none; border-top: 1px solid var(--border); }
.curriculum-body.open { display: block; }
.curriculum-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.curriculum-body ul li { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--text-2); }
.curriculum-body ul li i { color: var(--primary); font-size: .75rem; }

/* ===================== PLACEMENT LANDING PAGE ===================== */
.placement-hero {
  background: linear-gradient(135deg, #0f172a 0%, #065f46 100%);
  color: #fff; padding: 70px 0;
}
.placement-hero h1 { font-size: 2.6rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.placement-hero p { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.pl-features { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.pl-feature { background: rgba(255,255,255,.12); border-radius: var(--radius); padding: 10px 16px; display: flex; align-items: center; gap: 10px; }
.pl-feature i { color: #4ade80; }
.pl-feature span { font-size: .85rem; color: #fff; font-weight: 500; }

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
@media (max-width: 992px) { .process-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { padding: 28px 16px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-desc { font-size: .82rem; color: var(--text-2); line-height: 1.6; }

/* ===================== CTA SECTION ===================== */
.cta-section { background: var(--primary); padding: 60px 0; text-align: center; color: #fff; }
.cta-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 1rem; opacity: .9; margin-bottom: 28px; }
.btn-cta-white { background: #fff; color: var(--primary); font-weight: 700; border-radius: var(--radius); padding: 12px 32px; font-size: .95rem; display: inline-block; transition: all .2s; border: 2px solid #fff; }
.btn-cta-white:hover { background: transparent; color: #fff; }
.btn-cta-outline { background: transparent; color: #fff; font-weight: 700; border-radius: var(--radius); padding: 12px 32px; font-size: .95rem; display: inline-block; border: 2px solid rgba(255,255,255,.6); transition: all .2s; margin-left: 12px; }
.btn-cta-outline:hover { border-color: #fff; }

/* ===================== FOOTER ===================== */
footer { background: #0f172a; color: rgba(255,255,255,.7); padding: 60px 0 32px; }
.footer-brand { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-brand span { color: var(--primary); }
.footer-tagline { font-size: .83rem; margin-bottom: 20px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 768px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col h5 { color: #fff; font-size: .85rem; font-weight: 700; margin-bottom: 14px; letter-spacing: .06em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .83rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8rem; }
.social-links { display: flex; gap: 14px; }
.social-links a { color: rgba(255,255,255,.5); font-size: 1.1rem; transition: color .2s; }
.social-links a:hover { color: #fff; }

/* ===================== UTILITIES ===================== */
.bg-light-gray { background: var(--bg); }
.text-primary { color: var(--primary) !important; }
.fw-800 { font-weight: 800; }
.mb-32 { margin-bottom: 32px; }
.view-all-link { color: var(--primary); font-size: .88rem; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.view-all-link:hover { color: var(--primary-dark); }
.view-all-link i { font-size: .75rem; }

/* Responsive tweaks */
@media (max-width: 768px) {
  .cert-hero h1, .place-hero h1, .placement-hero h1 { font-size: 1.9rem; }
  .course-hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .stats-bar .stats-row { gap: 32px; }
  .hero-tabs { overflow-x: auto; }
  .mega-menu { width: 100vw; }
  .cert-hero-img { display: none; }
  .enroll-card { position: static; }
}

/* ═══════════════════════════════════════════════════════
   NAVBAR — INTERNSHALA TRAININGS EXACT MATCH
   ═══════════════════════════════════════════════════════ */

.site-navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.nav-inner {
  display: flex; align-items: center;
  height: 64px; gap: 0;
}

/* Brand */
.nav-brand { display: flex; align-items: center; font-size: 1.45rem; font-weight: 800; text-decoration: none; margin-right: 28px; flex-shrink: 0; }
.brand-mop { color: #1a1a2e; }
.brand-careers { color: #00a5ec; }

/* Desktop nav list */
.nav-links { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 0; flex: 1; }

/* Plain link items (Home, About, Contact) */
.nav-item-plain { position: relative; }
.nav-item-plain > a {
  display: flex; align-items: center; height: 64px; padding: 0 16px;
  font-size: .9rem; font-weight: 600; color: #1a1a2e; text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .2s;
  white-space: nowrap;
}
/* Hover: colour only — no bottom border */
.nav-item-plain > a:hover { color: #00a5ec; border-bottom-color: transparent; }
/* Active page only gets the bottom indicator */
.nav-item-plain.nav-active > a { color: #00a5ec; border-bottom-color: #00a5ec; }

/* Dropdown button items */
.nav-item-drop {
  position: relative;
  /* Extend clickable/hover area below button with invisible padding
     so cursor doesn't leave hover zone when moving into the dropdown */
  padding-bottom: 0;
}
/* Invisible pseudo-element extends hover zone downward, bridging any gap */
.nav-item-drop::after {
  content: '';
  position: absolute;
  bottom: -12px;   /* reach 12px below the navbar bottom edge */
  left: 0;
  right: 0;
  height: 12px;    /* invisible bridge — keeps hover state alive */
  background: transparent;
}
.nav-drop-btn {
  display: flex; align-items: center; gap: 5px; height: 64px; padding: 0 16px;
  font-size: .9rem; font-weight: 600; color: #1a1a2e;
  background: none; border: none; border-bottom: 3px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: color .2s, border-color .2s;
}
/* Hover: colour change only — NO bottom border line */
.nav-drop-btn:hover { color: #00a5ec; border-bottom-color: transparent; }
/* Active page: show bottom indicator */
.nav-item-drop.nav-active .nav-drop-btn { color: #00a5ec; border-bottom-color: #00a5ec; }
.nav-offer {
  display: inline-block; background: #f97316; color: #fff;
  font-size: .58rem; font-weight: 700; letter-spacing: .04em;
  padding: 2px 5px; border-radius: 3px; margin-left: 4px; vertical-align: middle;
}
.nav-caret { font-size: .6rem; opacity: .55; transition: transform .2s; }

/* ── MEGA MENU ── */
.mega-wrap {
  display: none;
  position: fixed; left: 0; right: 0;
  top: 64px;
  background: #fff;
  border-top: 2px solid #00a5ec;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  z-index: 2000;
  flex-direction: row;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.nav-item-drop:hover > .mega-wrap { display: flex; animation: navDown .18s ease; }

/* Left category column */
.mega-left {
  list-style: none; margin: 0; padding: 10px 0;
  width: 240px; flex-shrink: 0;
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
}
.mega-cat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; font-size: .88rem; font-weight: 500; color: #374151;
  cursor: pointer; border-left: 3px solid transparent;
  transition: all .15s; user-select: none;
}
.mega-cat i { font-size: .65rem; opacity: .4; }
.mega-cat:hover, .mega-cat.is-active {
  background: #fff; color: #00a5ec;
  border-left-color: #00a5ec; font-weight: 600;
}

/* Right course column */
.mega-right {
  flex: 1; padding: 16px 24px;
  display: flex; flex-direction: column;
  min-height: 400px;
}
.mega-panel { display: none; }
.mega-panel.is-active {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.mega-panel a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; font-size: .87rem; color: #374151;
  border-radius: 5px; text-decoration: none;
  transition: background .15s, color .15s;
  font-weight: 400;
}
.mega-panel a:hover { background: #e6f6fd; color: #00a5ec; font-weight: 500; }
.new-tag {
  display: inline-block; background: #f97316; color: #fff;
  font-size: .58rem; font-weight: 700; padding: 1px 5px;
  border-radius: 3px; margin-left: 4px; vertical-align: middle;
}

/* ── PLACEMENT DROPDOWN ── */
.place-drop {
  display: none;
  position: absolute; top: 64px; left: auto;
  background: #fff;
  border-top: 2px solid #00a5ec;
  border: 1px solid #e5e7eb;
  border-top: 2px solid #00a5ec;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 2000; min-width: 320px;
  list-style: none; margin: 0; padding: 8px 0;
  border-radius: 0 0 8px 8px;
}
.nav-item-drop:hover > .place-drop { display: block; animation: navDown .18s ease; }
.place-drop li a {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px; font-size: .9rem; font-weight: 500; color: #374151;
  text-decoration: none; transition: background .15s, color .15s;
}
.place-drop li a:hover { background: #e6f6fd; color: #00a5ec; }
.place-drop li + li { border-top: 1px solid #f3f4f6; }
.pd-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: #e6f6fd; color: #00a5ec;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0;
}

/* Right side */
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.nav-search-btn {
  display: flex; align-items: center; gap: 7px;
  border: 1px solid #e5e7eb; border-radius: 20px;
  background: #f9fafb; padding: 7px 16px;
  font-size: .85rem; color: #9ca3af; cursor: pointer;
  transition: border-color .2s; white-space: nowrap;
}
.nav-search-btn:hover { border-color: #00a5ec; color: #00a5ec; }
.nav-login-btn {
  border: 1.5px solid #00a5ec; color: #00a5ec !important;
  border-radius: 6px; padding: 7px 22px;
  font-size: .88rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-login-btn:hover { background: #00a5ec; color: #fff !important; }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none;
  font-size: 1.2rem; color: #1a1a2e; cursor: pointer; padding: 4px 8px;
}

@keyframes navDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MOBILE DRAWER ── */
.mob-drawer {
  display: none;
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 320px; max-width: 90vw;
  background: #fff; z-index: 3000;
  overflow-y: auto;
  transform: translateX(-100%); transition: transform .3s ease;
  flex-direction: column;
}
.mob-drawer { display: flex; }
.mob-drawer.is-open { transform: translateX(0); }
.mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.45); z-index: 2999;
}
.mob-overlay.is-open { display: block; }
.mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #e5e7eb;
}
.mob-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: #6b7280; }
.mob-drawer-body { padding: 8px 0; }
.mob-link {
  display: block; padding: 13px 20px; font-size: .95rem; font-weight: 600;
  color: #1a1a2e; border-bottom: 1px solid #f3f4f6; text-decoration: none;
}
.mob-link:hover { color: #00a5ec; }
.mob-section-title {
  padding: 12px 20px 6px; font-size: .75rem; font-weight: 700;
  color: #9ca3af; letter-spacing: .08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.mob-sublink {
  display: block; padding: 9px 20px 9px 28px;
  font-size: .88rem; color: #374151; text-decoration: none;
  border-bottom: 1px solid #f9fafb;
}
.mob-sublink:hover { color: #00a5ec; }
.mob-cta-btn {
  display: block; margin: 20px 20px 10px;
  background: #00a5ec; color: #fff !important;
  text-align: center; padding: 13px; border-radius: 8px;
  font-weight: 700; text-decoration: none; font-size: .95rem;
}

/* Hide on mobile */
@media (max-width: 991px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { justify-content: space-between; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER — matches Image 3 reference
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,.65);
  padding: 56px 0 0;
}

/* 4-column grid: brand(wider) + 3 equal cols */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.2fr 1.4fr;
  gap: 40px 32px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Brand column */
.footer-brand-col {}
.footer-logo { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.footer-logo-mop { color: #fff; }
.footer-logo-careers { color: #00a5ec; }
.footer-tagline { font-size: .83rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 20px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .85rem;
  text-decoration: none; transition: background .2s, color .2s;
}
.footer-socials a:hover { background: #00a5ec; color: #fff; border-color: #00a5ec; }

/* Content columns */
.footer-col h5 {
  color: #fff; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px; margin-top: 0;
}
.footer-col .mt-4 { margin-top: 28px !important; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .84rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: #00a5ec; }
.footer-addr { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.6; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════
   GENERIC PAGE SECTIONS (for about, careers, contact etc.)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 56px 0 48px; border-bottom: 1px solid #e5e7eb;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 10px; }
.page-hero p { font-size: 1rem; color: #6b7280; max-width: 600px; }
.page-section { padding: 56px 0; }
.page-section.bg-gray { background: #f8fafc; }

/* Legacy class aliases so old pages still render */
.hero { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); padding: 56px 0; }
.hero h1 { font-size: 2.2rem; font-weight: 800; color: #1a1a2e; }
.hero p { color: #6b7280; }
.section { padding: 56px 0; }
.section-header { margin-bottom: 36px; }
.section-header h2 { font-size: 1.8rem; font-weight: 800; color: #1a1a2e; margin-bottom: 6px; }
.section-header p { color: #6b7280; font-size: .95rem; }
.card { border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; }
.card-body { padding: 28px; }
.feature-card { border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; padding: 28px; text-align: center; margin-bottom: 4px; }
.feature-icon { width: 64px; height: 64px; border-radius: 50%; background: #e6f6fd; color: #00a5ec; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 16px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-item {}
.stat-value { font-size: 2.2rem; font-weight: 800; color: #00a5ec; }
.stat-label { font-size: .82rem; color: #9ca3af; }
.cta-section { background: #00a5ec; padding: 60px 0; text-align: center; color: #fff; }
.cta-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 1rem; opacity: .9; margin-bottom: 28px; }
.text-muted { color: #6b7280 !important; }

/* ════════════════════════════════════════════
   HERO SLIDER
   ════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

/* Each slide sits stacked, hidden by default */
.hero-slide {
  display: none;
  width: 100%;
}
.hero-slide.is-active {
  display: block;
  animation: slideIn .5s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Slide backgrounds */
.slide-cert {
  background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
  padding: 64px 0 56px;
}
.slide-place {
  background: linear-gradient(135deg, #0f172a 0%, #065f46 100%);
  padding: 64px 0 56px;
}

/* Slide content */
.hero-slide-content { position: relative; z-index: 2; }
.hs-highlight { color: var(--primary); }
.hs-sub { font-size: 1rem; color: #4b5563; margin-bottom: 22px; max-width: 520px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-chip {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 20px; padding: 6px 14px;
  font-size: .82rem; font-weight: 600; color: #374151;
  transition: all .2s; cursor: default;
}

/* Slide hero image */
.hs-img {
  width: 100%; max-width: 500px; height: 380px;
  object-fit: cover; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}

/* CTA buttons */
.hs-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hs-btn-primary {
  display: inline-block; background: var(--primary); color: #fff;
  padding: 13px 28px; border-radius: 8px; font-weight: 700;
  font-size: .92rem; text-decoration: none; transition: background .2s;
  white-space: nowrap;
}
.hs-btn-primary:hover { background: var(--primary-dark); color: #fff; }
.hs-btn-secondary {
  display: inline-block; background: #fff; color: var(--primary);
  border: 2px solid var(--primary); padding: 11px 24px;
  border-radius: 8px; font-weight: 700; font-size: .92rem;
  text-decoration: none; transition: all .2s;
}
.hs-btn-secondary:hover { background: var(--primary); color: #fff; }
.hs-btn-green {
  display: inline-block; background: #4ade80; color: #0f172a;
  padding: 13px 28px; border-radius: 8px; font-weight: 700;
  font-size: .92rem; text-decoration: none; transition: background .2s;
}
.hs-btn-green:hover { background: #22c55e; }

/* Stat row inside cert slide */
.hs-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hs-stat { display: flex; flex-direction: column; }
.hs-stat strong { font-size: 1.4rem; font-weight: 800; color: #1a1a2e; }
.hs-stat span { font-size: .76rem; color: #9ca3af; }

/* Prev / Next arrows */
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 1px solid #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .9rem; color: #374151;
  box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: background .2s;
  z-index: 10;
}
.hs-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.hs-prev { left: 20px; }
.hs-next { right: 20px; }

/* Dot indicators */
.hs-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hs-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(0,0,0,.2); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.hs-dot.is-active { background: var(--primary); transform: scale(1.3); }

/* Placement mini-cards inside slider */
.place-cards-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 4px; }
.place-mini-card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px; padding: 14px 18px; cursor: pointer;
  text-decoration: none; min-width: 140px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .2s, border-color .2s;
}
.place-mini-card:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }
.pmc-icon { font-size: 1.2rem; color: #4ade80; }
.pmc-name { font-size: .85rem; font-weight: 700; color: #fff; }
.pmc-tag  { font-size: .72rem; color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════
   CERT COURSES — 4 cards, single row with image
   ════════════════════════════════════════════ */
.cert-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .cert-4-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .cert-4-grid { grid-template-columns: 1fr; } }

.cert-card {
  border: 1px solid #e5e7eb; border-radius: 12px;
  background: #fff; overflow: hidden; cursor: pointer;
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.cert-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); transform: translateY(-4px); }

.cert-card-img {
  position: relative; height: 160px; overflow: hidden;
}
.cert-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.cert-card:hover .cert-card-img img { transform: scale(1.05); }
.cert-card-img .cc-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: .63rem;
}

.cert-card-body {
  padding: 14px 16px; flex: 1;
}
.cert-card-body .cc-title { font-size: .9rem; font-weight: 700; color: #1a1a2e; line-height: 1.4; margin-bottom: 5px; }
.cert-card-body .cc-sub  { font-size: .78rem; color: #6b7280; margin-bottom: 10px; }
.cert-card-body .cc-meta { display: flex; gap: 14px; font-size: .75rem; color: #9ca3af; }
.cert-card-body .cc-rating { display: flex; align-items: center; gap: 4px; color: #374151; font-weight: 600; }
.cert-card-body .cc-rating i { color: #f59e0b; }
.cert-card-body .cc-rating span { font-weight: 400; color: #9ca3af; }
.cert-card-body .cc-weeks { display: flex; align-items: center; gap: 4px; }

/* ════════════════════════════════════════════
   EDUCATORS — 4 cards, single row with photo
   ════════════════════════════════════════════ */
.edu-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .edu-4-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .edu-4-grid { grid-template-columns: 1fr; } }

.edu-card-new {
  border: 1px solid #e5e7eb; border-radius: 12px;
  background: #fff; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.edu-card-new:hover { box-shadow: 0 8px 28px rgba(0,0,0,.10); transform: translateY(-4px); }

.edu-photo {
  height: 200px; overflow: hidden;
}
.edu-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .4s ease;
}
.edu-card-new:hover .edu-photo img { transform: scale(1.05); }

.edu-info {
  padding: 16px; text-align: center;
}
.edu-info .edu-name    { font-size: .95rem; font-weight: 700; color: #1a1a2e; margin-bottom: 3px; }
.edu-info .edu-company { font-size: .8rem; color: var(--primary); font-weight: 600; margin-bottom: 4px; }
.edu-info .edu-role    { font-size: .78rem; color: #6b7280; }

/* ════════════════════════════════════════════
   PLACEMENT HUB — ALL SECTIONS
   ════════════════════════════════════════════ */

/* Shared title */
.ph-section-title { font-size:1.9rem; font-weight:800; color:#1a1a2e; margin-bottom:6px; }
.ph-accent { color:#f97316; }
.ph-blue   { color:#00a5ec; }

/* ── HERO (Image 1) ── */
.ph-hero { background:#fff; padding:56px 0 48px; border-bottom:1px solid #e5e7eb; }
.ph-hero-title { font-size:2.2rem; font-weight:800; color:#1a1a2e; line-height:1.25; margin-bottom:16px; }
.ph-no-exp {
  display:inline-block; background:#f97316; color:#fff;
  font-size:.88rem; font-weight:700; padding:6px 16px;
  border-radius:5px; margin-bottom:18px;
}
.ph-bold-sub { font-weight:700; color:#1a1a2e; font-size:.95rem; margin-bottom:4px; }
.ph-para { color:#6b7280; font-size:.9rem; margin-bottom:18px; }
.ph-checks { list-style:none; padding:0; margin:0 0 24px; display:flex; flex-direction:column; gap:10px; }
.ph-checks li { display:flex; align-items:flex-start; gap:10px; font-size:.9rem; color:#374151; }
.ph-checks li i { color:#f97316; font-size:1rem; margin-top:1px; flex-shrink:0; }

/* Stat boxes */
.ph-stat-row { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:28px; }
.ph-stat-box {
  display:flex; align-items:center; gap:12px;
  border:1px solid #e5e7eb; border-radius:10px;
  padding:12px 16px; background:#fff;
  min-width:130px;
}
.ph-stat-icon {
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:.95rem; flex-shrink:0;
}
.ph-stat-box div { display:flex; flex-direction:column; }
.ph-stat-box strong { font-size:1.1rem; font-weight:800; color:#1a1a2e; line-height:1.2; }
.ph-stat-box span  { font-size:.72rem; color:#9ca3af; }

/* Apply button */
.ph-apply-btn {
  display:inline-flex; align-items:center; gap:8px;
  background:#f97316; color:#fff;
  padding:13px 28px; border-radius:8px;
  font-size:.92rem; font-weight:700; text-decoration:none;
  transition:background .2s; border:none; cursor:pointer;
}
.ph-apply-btn:hover { background:#ea6c00; color:#fff; }

/* Enroll card */
.ph-enroll-card {
  border:1px solid #e5e7eb; border-radius:14px;
  overflow:hidden; box-shadow:0 8px 28px rgba(0,0,0,.10);
}
.ph-enroll-top {
  background:linear-gradient(135deg,#6366f1 0%,#00a5ec 100%);
  padding:24px 24px 20px; color:#fff;
}
.ph-enroll-label { font-size:.8rem; font-weight:600; opacity:.85; margin-bottom:8px; }
.ph-enroll-price { font-size:1.7rem; font-weight:800; }
.ph-enroll-old   { font-size:1rem; text-decoration:line-through; opacity:.6; margin-left:8px; font-weight:400; }
.ph-enroll-note  { font-size:.75rem; opacity:.75; margin-top:4px; }
.ph-enroll-features {
  list-style:none; padding:20px 24px 0; margin:0;
  display:flex; flex-direction:column; gap:10px;
}
.ph-enroll-features li { display:flex; align-items:center; gap:10px; font-size:.87rem; color:#374151; }
.ph-enroll-features li i { color:#00a5ec; width:14px; }
.ph-enroll-card > .ph-apply-btn { margin:20px 24px 0; width:calc(100% - 48px); justify-content:center; }

/* ── THREE STEPS (Image 2) ── */
.ph-title-dots { display:flex; align-items:center; justify-content:center; gap:12px; margin:10px 0 4px; }
.ph-dot-blue   { width:16px; height:16px; border-radius:50%; background:#00a5ec; }
.ph-dot-green  { width:16px; height:16px; border-radius:50%; background:#16a34a; }
.ph-dot-orange { width:16px; height:16px; border-radius:50%; background:#f97316; }

.three-steps-row {
  display:flex; align-items:stretch; gap:0;
  flex-wrap:wrap; margin-top:40px;
}
.step-card {
  flex:1; min-width:220px; border:1px solid #e5e7eb;
  border-radius:14px; padding:28px 24px;
  background:#fff; position:relative;
}
.step-blue   { border-top:3px solid #00a5ec; }
.step-green  { border-top:3px solid #16a34a; }
.step-orange { border-top:3px solid #f97316; }

.step-arrow {
  display:flex; align-items:center; padding:0 8px;
  color:#d1d5db; font-size:1.1rem; flex-shrink:0;
}
@media(max-width:768px){
  .three-steps-row { flex-direction:column; }
  .step-arrow { transform:rotate(90deg); justify-content:center; padding:8px 0; }
}

.step-num-badge {
  font-size:1.6rem; font-weight:800; margin-bottom:12px; line-height:1;
}
.step-icon-wrap {
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; margin-bottom:14px;
}
.step-icon-blue   { background:#e6f6fd; color:#00a5ec; }
.step-icon-green  { background:#e6f9f0; color:#16a34a; }
.step-icon-orange { background:#fff3e6; color:#f97316; }

.step-title { font-size:1rem; font-weight:700; margin-bottom:8px; }
.step-desc  { font-size:.84rem; color:#6b7280; margin-bottom:14px; line-height:1.6; }
.step-checks { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.step-checks li { display:flex; align-items:center; gap:8px; font-size:.84rem; color:#374151; }
.step-checks li i { font-size:.8rem; }

/* ── PROJECTS (Image 3) ── */
.projects-meta-row {
  display:flex; justify-content:center; gap:40px; flex-wrap:wrap;
  margin:20px 0 32px;
}
.proj-meta-item {
  display:flex; align-items:center; gap:10px; font-size:.85rem;
  color:#6b7280;
}
.proj-meta-item i { font-size:1.2rem; color:#6366f1; }
.proj-meta-item div { display:flex; flex-direction:column; }
.proj-meta-item strong { color:#1a1a2e; font-size:.85rem; font-weight:700; }
.proj-meta-item span  { font-size:.77rem; color:#9ca3af; }

.projects-list { display:flex; flex-direction:column; gap:0; }
.project-row {
  display:flex; align-items:flex-start; gap:20px;
  padding:24px 0; border-bottom:1px solid #e5e7eb;
  position:relative;
}
.project-row:last-child { border-bottom:none; }
.proj-num {
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:.88rem; font-weight:800; flex-shrink:0; margin-top:2px;
}
.proj-tag {
  font-size:.65rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; padding:3px 10px; border-radius:4px;
  white-space:nowrap; flex-shrink:0; margin-top:6px;
  height:fit-content;
}
.proj-content h4 { font-size:1rem; font-weight:700; color:#1a1a2e; margin-bottom:6px; }
.proj-content p  { font-size:.86rem; color:#6b7280; margin:0; line-height:1.6; }

/* ── PROJECT LEADS (Image 4) ── */
.lead-card {
  display:flex; gap:20px; align-items:flex-start;
  padding:24px; border:1px solid #e5e7eb; border-radius:14px;
  background:#fff; height:100%;
}
.lead-photo {
  flex-shrink:0; width:80px; height:80px; border-radius:50%; overflow:hidden;
}
.lead-photo img { width:100%; height:100%; object-fit:cover; object-position:top; }
.lead-name  { font-size:1.05rem; font-weight:700; color:#1a1a2e; margin-bottom:3px; }
.lead-title { font-size:.82rem; font-weight:600; color:#00a5ec; margin-bottom:10px; }
.lead-info p { font-size:.84rem; color:#6b7280; line-height:1.65; margin-bottom:8px; }
.lead-info p:last-child { margin-bottom:0; }

/* ── CAREER SERVICES (Image 5) ── */
.career-services-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:16px;
}
@media(max-width:576px){ .career-services-grid { grid-template-columns:1fr; } }
.cs-item {
  display:flex; align-items:center; gap:16px;
  background:#fff; border:1px solid #e5e7eb;
  border-radius:10px; padding:18px 20px;
  font-size:.9rem; font-weight:500; color:#374151;
}
.cs-icon {
  width:44px; height:44px; border-radius:10px;
  background:#eef2ff; color:#6366f1;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}

/* ── PROGRAM FEE (Image 6) ── */
.fee-header {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px; margin-bottom:20px;
  background:linear-gradient(90deg,#6366f1,#818cf8);
  border-radius:10px 10px 0 0; padding:18px 24px;
}
.fee-header .ph-section-title { color:#fff; margin:0; }
.fee-emi { font-size:.88rem; color:rgba(255,255,255,.9); font-weight:500; }
.fee-emi strong { color:#fff; }

.fee-card {
  display:flex; align-items:center; flex-wrap:wrap; gap:16px;
  border:1px solid #e5e7eb; border-radius:10px;
  background:#fff; padding:0; overflow:hidden;
}
.fee-card-left {
  display:flex; align-items:center; gap:16px;
  padding:24px 24px; flex:0 0 200px;
}
.fee-left-bar { width:4px; height:56px; border-radius:4px; flex-shrink:0; }
.fee-type { font-size:.95rem; font-weight:700; color:#1a1a2e; }
.fee-when { font-size:.78rem; color:#9ca3af; margin-top:3px; }

.fee-card-mid {
  flex:1; padding:20px 24px;
  background:#fef9f6; border-left:1px solid #e5e7eb;
  border-right:1px solid #e5e7eb;
}
.fee-amount { font-size:1.15rem; font-weight:800; color:#1a1a2e; }
.fee-incl   { font-size:.78rem; font-weight:400; color:#6b7280; }
.fee-old    { font-size:.88rem; text-decoration:line-through; color:#9ca3af; margin-top:2px; }
.fee-note   { font-size:.78rem; color:#9ca3af; margin-top:4px; }

.fee-card-right { padding:20px 24px; flex-shrink:0; }

/* ── DREAM JOB (Image 7) ── */
.dreamjob-section {
  background:#fff; padding:60px 0;
  border-top:1px solid #e5e7eb; border-bottom:1px solid #e5e7eb;
}
.dreamjob-illus { opacity:.9; }
.dreamjob-title {
  font-size:2rem; font-weight:800; color:#1a1a2e;
  line-height:1.25; margin-bottom:20px;
}
.dreamjob-title span { color:#6366f1; }
.dreamjob-cohort {
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid #e5e7eb; border-radius:8px;
  padding:10px 16px; font-size:.86rem; color:#374151;
  background:#f9fafb;
}
.dreamjob-cohort i { color:#6366f1; }

/* ── SUCCESS STORIES (Image 8) ── */
.alumni-card {
  background:#fff; border:1px solid #e5e7eb;
  border-radius:14px; padding:24px; height:100%;
}
.alumni-head {
  display:flex; align-items:center; gap:14px; margin-bottom:16px;
}
.alumni-head img {
  width:56px; height:56px; border-radius:50%; object-fit:cover; object-position:top;
}
.alumni-name  { font-size:.95rem; font-weight:700; color:#1a1a2e; }
.alumni-role  { font-size:.78rem; color:#00a5ec; font-weight:600; margin-top:2px; }
.alumni-stars { color:#f59e0b; font-size:.85rem; margin-top:3px; }
.alumni-text p { font-size:.85rem; color:#6b7280; line-height:1.65; margin-bottom:6px; }
.alumni-text p:last-child { margin-bottom:0; }

/* ── HIRING COMPANIES (Image 9) ── */
.hiring-logos-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
}
@media(max-width:992px){ .hiring-logos-grid { grid-template-columns:repeat(4,1fr); } }
@media(max-width:576px){ .hiring-logos-grid { grid-template-columns:repeat(3,1fr); } }
.hiring-logo-item {
  border:1px solid #e5e7eb; border-radius:8px;
  padding:12px 14px; font-size:.78rem; font-weight:700;
  color:#374151; background:#fff;
  display:flex; align-items:center;
  transition:box-shadow .2s;
}
.hiring-logo-item:hover { box-shadow:0 4px 12px rgba(0,0,0,.08); }

/* ── FAQ (Image 10) ── */
.ph-faq-item {
  border-bottom:1px solid #e5e7eb; padding:0;
}
.ph-faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0; cursor:pointer;
  font-size:.95rem; font-weight:600; color:#1a1a2e;
  gap:12px; user-select:none;
}
.ph-faq-q:hover { color:#00a5ec; }
.ph-faq-icon { font-size:.8rem; flex-shrink:0; color:#9ca3af; transition:transform .2s; }
.ph-faq-a {
  display:none; padding:0 0 18px;
  font-size:.88rem; color:#6b7280; line-height:1.7;
}
.ph-faq-a.is-open { display:block; }

/* ════════════════════════════════════════════
   ENQUIRY MODAL
   ════════════════════════════════════════════ */
.enq-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.enq-box {
  background: #fff;
  border-radius: 16px;
  width: 100%; max-width: 460px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  position: relative;
  overflow: hidden;
  animation: enqSlideIn .25s ease;
}
@keyframes enqSlideIn {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
.enq-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.5rem; color: #9ca3af;
  cursor: pointer; line-height: 1;
  transition: color .2s;
}
.enq-close:hover { color: #1a1a2e; }

.enq-header {
  background: linear-gradient(135deg,#6366f1 0%,#00a5ec 100%);
  padding: 24px 28px 20px;
  color: #fff;
}
.enq-header h3 { font-size: 1.15rem; font-weight: 800; margin: 0 0 4px; color: #fff; }
.enq-header p  { font-size: .82rem; opacity: .85; margin: 0; }

.enq-form { padding: 22px 28px 24px; }
.enq-field { margin-bottom: 14px; }
.enq-field label {
  display: block; font-size: .8rem; font-weight: 700;
  color: #374151; margin-bottom: 5px;
}
.enq-field label span { color: #f97316; }
.enq-field input,
.enq-field select {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: .9rem; color: #1a1a2e;
  transition: border-color .2s;
  background: #fff;
}
.enq-field input:focus,
.enq-field select:focus {
  outline: none;
  border-color: #00a5ec;
  box-shadow: 0 0 0 3px rgba(0,165,236,.12);
}
.enq-submit {
  width: 100%; padding: 13px;
  background: #f97316; color: #fff;
  border: none; border-radius: 8px;
  font-size: .92rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.enq-submit:hover { background: #ea6c00; }
.enq-submit:disabled { opacity: .6; cursor: not-allowed; }

/* ════════════════════════════════════════════
   HERO CONTACT CARD (replaces enroll card)
   ════════════════════════════════════════════ */
.ph-contact-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
}
.ph-contact-form-body { padding: 20px 22px 22px; }

.phc-form { display: flex; flex-direction: column; gap: 0; }
.phc-field { margin-bottom: 12px; }
.phc-field input,
.phc-field select {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: .88rem; color: #1a1a2e;
  transition: border-color .2s; background: #fff;
}
.phc-field input:focus,
.phc-field select:focus {
  outline: none; border-color: #00a5ec;
  box-shadow: 0 0 0 3px rgba(0,165,236,.1);
}
.phc-field input::placeholder { color: #9ca3af; }

/* ════════════════════════════════════════════
   COURSE ARCHITECTURE — zigzag 2-col layout
   ════════════════════════════════════════════ */
.ca-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}
.ca-row:last-of-type { margin-bottom: 0; }

/* Reverse: content left, image right */
.ca-row-reverse .ca-img-col   { order: 2; }
.ca-row-reverse .ca-content-col { order: 1; }

@media (max-width: 768px) {
  .ca-row { grid-template-columns: 1fr; gap: 20px; }
  .ca-row-reverse .ca-img-col,
  .ca-row-reverse .ca-content-col { order: unset; }
}

/* Image column — decorative card */
.ca-img-wrap {
  border-radius: 16px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  position: relative;
  min-height: 280px;
}
.ca-img-indigo { background: linear-gradient(135deg,#eef2ff 0%,#e0e7ff 100%); }
.ca-img-blue   { background: linear-gradient(135deg,#e6f6fd 0%,#dbeafe 100%); }
.ca-img-green  { background: linear-gradient(135deg,#e6f9f0 0%,#d1fae5 100%); }

.ca-phase-badge {
  position: absolute; top: 16px; left: 20px;
  font-size: 2rem; font-weight: 800; opacity: .2;
  line-height: 1;
}
.ca-img-icon {
  font-size: 4rem; opacity: .35;
}
.ca-img-label {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: #6b7280;
}
.ca-img-exit {
  position: absolute; bottom: 16px;
  background: rgba(0,0,0,.07);
  padding: 5px 14px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; color: #374151;
  display: flex; align-items: center; gap: 5px;
}

/* Content column card */
.ca-content-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px;
}
.ca-phase-tag {
  display: inline-block;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.ca-content-title {
  font-size: 1.1rem; font-weight: 800;
  color: #1a1a2e; margin-bottom: 10px;
}
.ca-content-desc {
  font-size: .87rem; color: #6b7280;
  line-height: 1.7; margin-bottom: 16px;
}
.ca-tech-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.ca-tech-chips span {
  font-size: .72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 12px;
}
.ca-exit-banner {
  background: #f9fafb;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; color: #374151;
}

/* ════════════════════════════════════════════
   GUIDED PROJECTS — 4-card step row
   ════════════════════════════════════════════ */
.proj-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .proj-steps-row { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px)  { .proj-steps-row { grid-template-columns: 1fr; } }

/* indigo variant (matches existing step-card pattern) */
.step-indigo { border-top: 3px solid #6366f1; }

/* ── WhatsApp Floating Button ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* The circular button */
.wa-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  flex-shrink: 0;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .55);
}
.wa-float-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* Pulse ring animation */
.wa-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, .5);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Tooltip label */
.wa-float-label {
  background: #fff;
  color: #128C7E;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
}
.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile: slightly smaller and closer to edge */
@media (max-width: 575px) {
  .wa-float { bottom: 18px; right: 18px; }
  .wa-float-btn { width: 50px; height: 50px; }
  .wa-float-btn svg { width: 26px; height: 26px; }
  .wa-float-label { display: none; }
}
/* ── End WhatsApp Button CSS ── */
/* ════════════════════════════════════════════
   PLACEMENT HUB — ALL SECTIONS
   ════════════════════════════════════════════ */

/* Shared title */
.ph-section-title { font-size:1.9rem; font-weight:800; color:#1a1a2e; margin-bottom:6px; }
.ph-accent { color:#f97316; }
.ph-blue   { color:#00a5ec; }

/* ── HERO ── */
.ph-hero { background:#fff; padding:56px 0 48px; border-bottom:1px solid #e5e7eb; }
.ph-hero-title { font-size:2.2rem; font-weight:800; color:#1a1a2e; line-height:1.25; margin-bottom:16px; }
.ph-no-exp {
  display:inline-block; background:#f97316; color:#fff;
  font-size:.88rem; font-weight:700; padding:6px 16px;
  border-radius:5px; margin-bottom:18px;
}
.ph-bold-sub { font-weight:700; color:#1a1a2e; font-size:.95rem; margin-bottom:4px; }
.ph-para { color:#6b7280; font-size:.9rem; margin-bottom:18px; }
.ph-checks { list-style:none; padding:0; margin:0 0 24px; display:flex; flex-direction:column; gap:10px; }
.ph-checks li { display:flex; align-items:flex-start; gap:10px; font-size:.9rem; color:#374151; }
.ph-checks li i { color:#f97316; font-size:1rem; margin-top:1px; flex-shrink:0; }

/* Stat boxes */
.ph-stat-row { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:28px; }
.ph-stat-box {
  display:flex; align-items:center; gap:12px;
  border:1px solid #e5e7eb; border-radius:10px;
  padding:12px 16px; background:#fff; min-width:130px;
}
.ph-stat-icon {
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:.95rem; flex-shrink:0;
}
.ph-stat-box div { display:flex; flex-direction:column; }
.ph-stat-box strong { font-size:1.1rem; font-weight:800; color:#1a1a2e; line-height:1.2; }
.ph-stat-box span  { font-size:.72rem; color:#9ca3af; }

/* Apply button */
.ph-apply-btn {
  display:inline-flex; align-items:center; gap:8px;
  background:#f97316; color:#fff;
  padding:13px 28px; border-radius:8px;
  font-size:.92rem; font-weight:700; text-decoration:none;
  transition:background .2s; border:none; cursor:pointer;
}
.ph-apply-btn:hover { background:#ea6c00; color:#fff; }

/* Enroll / Contact card */
.ph-enroll-card {
  border:1px solid #e5e7eb; border-radius:14px;
  overflow:hidden; box-shadow:0 8px 28px rgba(0,0,0,.10);
}
.ph-enroll-top {
  background:linear-gradient(135deg,#6366f1 0%,#00a5ec 100%);
  padding:24px 24px 20px; color:#fff;
}
.ph-enroll-label { font-size:.8rem; font-weight:600; opacity:.85; margin-bottom:8px; }
.ph-enroll-price { font-size:1.7rem; font-weight:800; }
.ph-enroll-old   { font-size:1rem; text-decoration:line-through; opacity:.6; margin-left:8px; font-weight:400; }
.ph-enroll-note  { font-size:.75rem; opacity:.75; margin-top:4px; }
.ph-enroll-features {
  list-style:none; padding:20px 24px 0; margin:0;
  display:flex; flex-direction:column; gap:10px;
}
.ph-enroll-features li { display:flex; align-items:center; gap:10px; font-size:.87rem; color:#374151; }
.ph-enroll-features li i { color:#00a5ec; width:14px; }

/* ── HERO CONTACT CARD ── */
.ph-contact-card {
  border:1px solid #e5e7eb; border-radius:14px;
  overflow:hidden; box-shadow:0 8px 28px rgba(0,0,0,.10);
}
.ph-contact-form-body { padding:20px 22px 22px; }
.phc-form { display:flex; flex-direction:column; gap:0; }
.phc-field { margin-bottom:12px; }
.phc-field input,
.phc-field select {
  width:100%; padding:10px 14px;
  border:1.5px solid #e5e7eb; border-radius:8px;
  font-size:.88rem; color:#1a1a2e;
  transition:border-color .2s; background:#fff;
}
.phc-field input:focus,
.phc-field select:focus {
  outline:none; border-color:#00a5ec;
  box-shadow:0 0 0 3px rgba(0,165,236,.1);
}
.phc-field input::placeholder { color:#9ca3af; }

/* ── THREE STEPS ── */
.ph-title-dots { display:flex; align-items:center; justify-content:center; gap:12px; margin:10px 0 4px; }
.ph-dot-blue   { width:16px; height:16px; border-radius:50%; background:#00a5ec; }
.ph-dot-green  { width:16px; height:16px; border-radius:50%; background:#16a34a; }
.ph-dot-orange { width:16px; height:16px; border-radius:50%; background:#f97316; }

.three-steps-row {
  display:flex; align-items:stretch; gap:0; flex-wrap:wrap; margin-top:40px;
}
.step-card {
  flex:1; min-width:220px; border:1px solid #e5e7eb;
  border-radius:14px; padding:28px 24px;
  background:#fff; position:relative;
}
.step-blue   { border-top:3px solid #00a5ec; }
.step-green  { border-top:3px solid #16a34a; }
.step-orange { border-top:3px solid #f97316; }
.step-indigo { border-top:3px solid #6366f1; }

.step-arrow {
  display:flex; align-items:center; padding:0 8px;
  color:#d1d5db; font-size:1.1rem; flex-shrink:0;
}
@media(max-width:768px){
  .three-steps-row { flex-direction:column; }
  .step-arrow { transform:rotate(90deg); justify-content:center; padding:8px 0; }
}
.step-num-badge { font-size:1.6rem; font-weight:800; margin-bottom:12px; line-height:1; }
.step-icon-wrap {
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; margin-bottom:14px;
}
.step-icon-blue   { background:#e6f6fd; color:#00a5ec; }
.step-icon-green  { background:#e6f9f0; color:#16a34a; }
.step-icon-orange { background:#fff3e6; color:#f97316; }
.step-title { font-size:1rem; font-weight:700; margin-bottom:8px; }
.step-desc  { font-size:.84rem; color:#6b7280; margin-bottom:14px; line-height:1.6; }
.step-checks { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.step-checks li { display:flex; align-items:center; gap:8px; font-size:.84rem; color:#374151; }
.step-checks li i { font-size:.8rem; }

/* ── CAREER OPPORTUNITIES / LEAD CARD ── */
.lead-card {
  display:flex; gap:20px; align-items:flex-start;
  padding:24px; border:1px solid #e5e7eb; border-radius:14px;
  background:#fff; height:100%;
}
.lead-photo { flex-shrink:0; width:80px; height:80px; border-radius:50%; overflow:hidden; }
.lead-photo img { width:100%; height:100%; object-fit:cover; object-position:top; }
.lead-name  { font-size:1.05rem; font-weight:700; color:#1a1a2e; margin-bottom:3px; }
.lead-title { font-size:.82rem; font-weight:600; color:#00a5ec; margin-bottom:10px; }
.lead-info p { font-size:.84rem; color:#6b7280; line-height:1.65; margin-bottom:8px; }
.lead-info p:last-child { margin-bottom:0; }

/* ── COURSE ARCHITECTURE — zigzag ── */
.ca-row {
  display:grid; grid-template-columns:1fr 1fr;
  gap:32px; align-items:center; margin-bottom:48px;
}
.ca-row:last-of-type { margin-bottom:0; }
.ca-row-reverse .ca-img-col   { order:2; }
.ca-row-reverse .ca-content-col { order:1; }
@media(max-width:768px){
  .ca-row { grid-template-columns:1fr; gap:20px; }
  .ca-row-reverse .ca-img-col,
  .ca-row-reverse .ca-content-col { order:unset; }
}
.ca-img-wrap {
  border-radius:16px; padding:48px 24px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:16px; text-align:center; position:relative; min-height:280px;
}
.ca-img-indigo { background:linear-gradient(135deg,#eef2ff 0%,#e0e7ff 100%); }
.ca-img-blue   { background:linear-gradient(135deg,#e6f6fd 0%,#dbeafe 100%); }
.ca-img-green  { background:linear-gradient(135deg,#e6f9f0 0%,#d1fae5 100%); }
.ca-phase-badge { position:absolute; top:16px; left:20px; font-size:2rem; font-weight:800; opacity:.2; line-height:1; }
.ca-img-icon   { font-size:4rem; opacity:.35; }
.ca-img-label  { font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:#6b7280; }
.ca-img-exit   { position:absolute; bottom:16px; background:rgba(0,0,0,.07); padding:5px 14px; border-radius:20px; font-size:.72rem; font-weight:700; color:#374151; display:flex; align-items:center; gap:5px; }
.ca-content-card { background:#fff; border:1px solid #e5e7eb; border-radius:14px; padding:28px; }
.ca-phase-tag  { display:inline-block; font-size:.65rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:4px 12px; border-radius:20px; margin-bottom:14px; }
.ca-content-title { font-size:1.1rem; font-weight:800; color:#1a1a2e; margin-bottom:10px; }
.ca-content-desc  { font-size:.87rem; color:#6b7280; line-height:1.7; margin-bottom:16px; }
.ca-tech-chips { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px; }
.ca-tech-chips span { font-size:.72rem; font-weight:600; padding:3px 10px; border-radius:12px; }
.ca-exit-banner { background:#f9fafb; border-radius:8px; padding:10px 14px; display:flex; align-items:flex-start; gap:8px; font-size:.82rem; color:#374151; }

/* ── GUIDED PROJECTS — 4-card row ── */
.proj-steps-row {
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
@media(max-width:1100px){ .proj-steps-row { grid-template-columns:repeat(2,1fr); } }
@media(max-width:576px) { .proj-steps-row { grid-template-columns:1fr; } }

/* ── CAREER SERVICES GRID ── */
.career-services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media(max-width:576px){ .career-services-grid { grid-template-columns:1fr; } }
.cs-item {
  display:flex; align-items:center; gap:16px;
  background:#fff; border:1px solid #e5e7eb;
  border-radius:10px; padding:18px 20px;
  font-size:.9rem; font-weight:500; color:#374151;
}
.cs-icon {
  width:44px; height:44px; border-radius:10px;
  background:#eef2ff; color:#6366f1;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}

/* ── PROGRAM FEE ── */
.fee-header {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px; margin-bottom:20px;
  background:linear-gradient(90deg,#6366f1,#818cf8);
  border-radius:10px 10px 0 0; padding:18px 24px;
}
.fee-header .ph-section-title { color:#fff; margin:0; }
.fee-emi { font-size:.88rem; color:rgba(255,255,255,.9); font-weight:500; }
.fee-emi strong { color:#fff; }
.fee-cards {}
.fee-card {
  display:flex; align-items:center; flex-wrap:wrap; gap:16px;
  border:1px solid #e5e7eb; border-radius:10px;
  background:#fff; padding:0; overflow:hidden;
}
.fee-card-left { display:flex; align-items:center; gap:16px; padding:24px; flex:0 0 200px; }
.fee-left-bar  { width:4px; height:56px; border-radius:4px; flex-shrink:0; }
.fee-type { font-size:.95rem; font-weight:700; color:#1a1a2e; }
.fee-when { font-size:.78rem; color:#9ca3af; margin-top:3px; }
.fee-card-mid { flex:1; padding:20px 24px; background:#fef9f6; border-left:1px solid #e5e7eb; border-right:1px solid #e5e7eb; }
.fee-amount { font-size:1.15rem; font-weight:800; color:#1a1a2e; }
.fee-incl   { font-size:.78rem; font-weight:400; color:#6b7280; }
.fee-old    { font-size:.88rem; text-decoration:line-through; color:#9ca3af; margin-top:2px; }
.fee-note   { font-size:.78rem; color:#9ca3af; margin-top:4px; }
.fee-card-right { padding:20px 24px; flex-shrink:0; }

/* ── DREAM JOB CTA ── */
.dreamjob-section { background:#fff; padding:60px 0; border-top:1px solid #e5e7eb; border-bottom:1px solid #e5e7eb; }
.dreamjob-illus { opacity:.9; }
.dreamjob-title { font-size:2rem; font-weight:800; color:#1a1a2e; line-height:1.25; margin-bottom:20px; }
.dreamjob-title span { color:#6366f1; }
.dreamjob-cohort {
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid #e5e7eb; border-radius:8px;
  padding:10px 16px; font-size:.86rem; color:#374151; background:#f9fafb;
}
.dreamjob-cohort i { color:#6366f1; }

/* ── SUCCESS STORIES ── */
.alumni-card { background:#fff; border:1px solid #e5e7eb; border-radius:14px; padding:24px; height:100%; }
.alumni-head { display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.alumni-head img { width:56px; height:56px; border-radius:50%; object-fit:cover; object-position:top; }
.alumni-name  { font-size:.95rem; font-weight:700; color:#1a1a2e; }
.alumni-role  { font-size:.78rem; color:#00a5ec; font-weight:600; margin-top:2px; }
.alumni-stars { color:#f59e0b; font-size:.85rem; margin-top:3px; }
.alumni-text p { font-size:.85rem; color:#6b7280; line-height:1.65; margin-bottom:6px; }
.alumni-text p:last-child { margin-bottom:0; }

/* ── HIRING COMPANIES ── */
.hiring-logos-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:10px; }
@media(max-width:992px){ .hiring-logos-grid { grid-template-columns:repeat(4,1fr); } }
@media(max-width:576px){ .hiring-logos-grid { grid-template-columns:repeat(3,1fr); } }
.hiring-logo-item {
  border:1px solid #e5e7eb; border-radius:8px;
  padding:12px 14px; font-size:.78rem; font-weight:700;
  color:#374151; background:#fff;
  display:flex; align-items:center;
  transition:box-shadow .2s;
}
.hiring-logo-item:hover { box-shadow:0 4px 12px rgba(0,0,0,.08); }

/* ── FAQ ── */
.ph-faq-item { border-bottom:1px solid #e5e7eb; padding:0; }
.ph-faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0; cursor:pointer;
  font-size:.95rem; font-weight:600; color:#1a1a2e;
  gap:12px; user-select:none;
}
.ph-faq-q:hover { color:#00a5ec; }
.ph-faq-icon { font-size:.8rem; flex-shrink:0; color:#9ca3af; transition:transform .2s; }
.ph-faq-a { display:none; padding:0 0 18px; font-size:.88rem; color:#6b7280; line-height:1.7; }
.ph-faq-a.is-open { display:block; }

/* ── ENQUIRY MODAL ── */
.enq-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,.55);
  z-index:9000; display:flex; align-items:center; justify-content:center; padding:16px;
}
.enq-box {
  background:#fff; border-radius:16px; width:100%; max-width:460px;
  box-shadow:0 24px 64px rgba(0,0,0,.22);
  position:relative; overflow:hidden; animation:enqSlideIn .25s ease;
}
@keyframes enqSlideIn {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
.enq-close {
  position:absolute; top:14px; right:16px; background:none; border:none;
  font-size:1.5rem; color:#9ca3af; cursor:pointer; line-height:1; transition:color .2s;
}
.enq-close:hover { color:#1a1a2e; }
.enq-header { background:linear-gradient(135deg,#6366f1 0%,#00a5ec 100%); padding:24px 28px 20px; color:#fff; }
.enq-header h3 { font-size:1.15rem; font-weight:800; margin:0 0 4px; color:#fff; }
.enq-header p  { font-size:.82rem; opacity:.85; margin:0; }
.enq-form { padding:22px 28px 24px; }
.enq-field { margin-bottom:14px; }
.enq-field label { display:block; font-size:.8rem; font-weight:700; color:#374151; margin-bottom:5px; }
.enq-field label span { color:#f97316; }
.enq-field input,
.enq-field select {
  width:100%; padding:10px 14px; border:1.5px solid #e5e7eb; border-radius:8px;
  font-size:.9rem; color:#1a1a2e; transition:border-color .2s; background:#fff;
}
.enq-field input:focus,
.enq-field select:focus { outline:none; border-color:#00a5ec; box-shadow:0 0 0 3px rgba(0,165,236,.12); }
.enq-submit {
  width:100%; padding:13px; background:#f97316; color:#fff;
  border:none; border-radius:8px; font-size:.92rem; font-weight:700;
  cursor:pointer; transition:background .2s;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.enq-submit:hover { background:#ea6c00; }
.enq-submit:disabled { opacity:.6; cursor:not-allowed; }

/* ── PAP MEGA MENU ── */
/*
 * KEY FIXES:
 * 1. top:100%  — flush with navbar bottom — zero gap so cursor never leaves hover zone
 * 2. padding-top:8px inside via ::before pseudo-bridge — keeps visual spacing
 * 3. ::before invisible bridge fills the 8px gap so mouse doesn't lose hover
 * 4. left:50% + transform centres the 720px panel under the nav button
 * 5. No border-bottom on .nav-drop-btn:hover
 */
.pap-mega-wrap {
  display: none;
  position: absolute;
  top: 100%;          /* flush — no gap */
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  border: 1px solid #e5e7eb;
  border-top: none;
  z-index: 900;
  overflow: hidden;
  /* invisible 8px bridge above the panel so cursor doesn't escape */
  margin-top: 0;
}
/* Extend the hover zone upward — pseudo-element covers the 0px gap */
.pap-mega-wrap::before {
  content: '';
  display: block;
  height: 0px;        /* no visible gap needed since top:100% is flush */
  width: 100%;
}
@keyframes papDropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
/* Shown/hidden by JS hover with delay — see header.php script */
/* .nav-item-drop:hover .pap-mega-wrap { display: block; } — handled by JS */
.pap-mega-header { background:linear-gradient(135deg,#6366f1 0%,#00a5ec 100%); padding:16px 22px; }
.pap-mega-title  { font-size:.88rem; font-weight:800; color:#fff; }
.pap-mega-sub    { font-size:.76rem; color:rgba(255,255,255,.75); margin-top:2px; }
.pap-mega-grid   { display:grid; grid-template-columns:1fr 1fr; gap:2px; padding:10px; background:#f9fafb; }
.pap-mega-item {
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:8px; background:#fff;
  text-decoration:none; font-size:.82rem; font-weight:600; color:#374151;
  transition:background .15s,color .15s; border:1px solid transparent;
}
.pap-mega-item:hover { background:#f5f3ff; color:#6366f1; border-color:#e0e7ff; }
.pap-mega-active  { background:#eef2ff; color:#6366f1; border-color:#c7d2fe; }
.pap-item-icon {
  width:32px; height:32px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:.82rem; flex-shrink:0;
}
.pap-item-name  { flex:1; line-height:1.35; }
.pap-item-arrow { font-size:.65rem; color:#d1d5db; transition:transform .15s,color .15s; flex-shrink:0; }
.pap-mega-item:hover .pap-item-arrow { transform:translateX(3px); color:#6366f1; }
.pap-mega-footer { padding:12px 16px; border-top:1px solid #e5e7eb; background:#fff; text-align:center; }
.pap-footer-btn {
  display:inline-flex; align-items:center; gap:8px;
  background:#f97316; color:#fff; padding:9px 24px;
  border-radius:8px; font-size:.82rem; font-weight:700;
  text-decoration:none; transition:background .2s;
}
.pap-footer-btn:hover { background:#ea6c00; color:#fff; }
@media(max-width:800px){
  .pap-mega-wrap  { width:96vw; left:2vw; transform:none; }
  .pap-mega-grid  { grid-template-columns:1fr; }
}

/* ── MOBILE PAP LINKS ── */
.mob-pap-link {
  display:flex !important; align-items:center; gap:10px;
  padding:9px 20px !important; font-size:.85rem; color:#374151;
}
.mob-pap-icon {
  width:28px; height:28px; border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem; flex-shrink:0;
}

/* ── ABOUT PAGE — FEATURE CARD ── */
.feature-card {
  border:1px solid #e5e7eb; border-radius:14px;
  padding:28px; background:#fff;
  transition:box-shadow .2s;
}
.feature-card:hover { box-shadow:0 8px 24px rgba(0,0,0,.08); }
.feature-icon {
  width:52px; height:52px; border-radius:12px;
  background:#eef2ff; color:#6366f1;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; margin-bottom:16px;
}

/* ── CERT CARD ── */
.cert-4-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:24px; }
@media(max-width:992px){ .cert-4-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:576px){ .cert-4-grid { grid-template-columns:1fr; } }
.cert-card {
  border:1px solid #e5e7eb; border-radius:14px; background:#fff;
  overflow:hidden; cursor:pointer;
  transition:box-shadow .2s,transform .2s;
  display:flex; flex-direction:column;
}
.cert-card:hover { box-shadow:0 8px 28px rgba(0,0,0,.10); transform:translateY(-3px); }
.cert-card-img { position:relative; overflow:hidden; height:160px; }
.cert-card-img img { width:100%; height:100%; object-fit:cover; }
.cert-card-body { padding:16px; flex:1; }
.cc-title { font-size:.95rem; font-weight:700; color:#1a1a2e; margin-bottom:4px; }
.cc-sub   { font-size:.82rem; color:#6b7280; line-height:1.5; }
.cc-footer { padding:12px 16px; border-top:1px solid #e5e7eb; display:flex; align-items:center; justify-content:space-between; }

/* ── EDUCATOR CARD ── */
.edu-4-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:24px; }
@media(max-width:992px){ .edu-4-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:576px){ .edu-4-grid { grid-template-columns:1fr; } }
.edu-card-new {
  border:1px solid #e5e7eb; border-radius:14px; background:#fff;
  padding:0; overflow:hidden; text-align:center;
  transition:box-shadow .2s; display:flex; flex-direction:column;
}
.edu-card-new:hover { box-shadow:0 8px 24px rgba(0,0,0,.09); }
.edu-photo { width:100%; aspect-ratio:1; overflow:hidden; }
.edu-photo img { width:100%; height:100%; object-fit:cover; object-position:top; }
.edu-info { padding:16px; }
.edu-name    { font-size:.95rem; font-weight:700; color:#1a1a2e; margin-bottom:3px; }
.edu-company { font-size:.78rem; color:#00a5ec; font-weight:600; margin-bottom:4px; }
.edu-role    { font-size:.78rem; color:#6b7280; }

/* ── HERO SLIDER ── */
.hero-slider { position:relative; overflow:hidden; }
.hero-slide  { display:none; }
.hero-slide.is-active { display:block; }
.slide-cert  { background:linear-gradient(135deg,#0f172a 0%,#1e3a5f 100%); padding:64px 0; color:#fff; }
.slide-place { background:linear-gradient(135deg,#065f46 0%,#0f172a 100%); padding:64px 0; color:#fff; }
.hero-slide-content h1 { font-size:2.4rem; font-weight:800; line-height:1.2; color:#fff; margin-bottom:12px; }
.hs-highlight { color:#00a5ec; }
.hs-sub { font-size:1rem; color:rgba(255,255,255,.8); margin-bottom:24px; }
.hs-actions { margin-top:28px; display:flex; gap:12px; flex-wrap:wrap; }
.hs-btn-primary { display:inline-block; background:#f97316; color:#fff; padding:13px 28px; border-radius:8px; font-weight:700; font-size:.95rem; transition:background .2s; }
.hs-btn-primary:hover { background:#ea6c00; color:#fff; }
.hs-btn-green   { display:inline-block; background:#16a34a; color:#fff; padding:13px 28px; border-radius:8px; font-weight:700; font-size:.95rem; transition:background .2s; }
.hs-btn-green:hover { background:#15803d; color:#fff; }
.hs-stats { display:flex; gap:24px; flex-wrap:wrap; margin-top:28px; }
.hs-stat { display:flex; flex-direction:column; }
.hs-stat strong { font-size:1.4rem; font-weight:800; color:#fff; }
.hs-stat span   { font-size:.75rem; color:rgba(255,255,255,.65); margin-top:2px; }
.hs-img { max-height:340px; object-fit:cover; border-radius:12px; opacity:.9; }
.hs-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,.15); color:#fff;
  border:none; cursor:pointer; width:40px; height:40px;
  border-radius:50%; font-size:.85rem;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s; backdrop-filter:blur(4px);
}
.hs-arrow:hover { background:rgba(255,255,255,.3); }
.hs-prev { left:16px; }
.hs-next { right:16px; }
.hs-dots { position:absolute; bottom:14px; left:50%; transform:translateX(-50%); display:flex; gap:8px; }
.hs-dot {
  width:8px; height:8px; border-radius:50%; border:none; cursor:pointer;
  background:rgba(255,255,255,.4); transition:background .2s;
}
.hs-dot.is-active { background:#fff; }

/* ── SECTION LABEL (reusable) ── */
.section-label {
  font-size:.72rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:#00a5ec;
  display:block; margin-bottom:8px;
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float { position:fixed; bottom:28px; right:28px; z-index:9999; display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
.wa-float-btn {
  width:56px; height:56px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(37,211,102,.45); text-decoration:none;
  transition:transform .25s,box-shadow .25s; position:relative; flex-shrink:0;
}
.wa-float-btn:hover { transform:scale(1.1); box-shadow:0 6px 24px rgba(37,211,102,.55); }
.wa-float-btn svg { width:30px; height:30px; fill:#fff; }
.wa-float-btn::before {
  content:''; position:absolute; inset:-4px; border-radius:50%;
  border:3px solid rgba(37,211,102,.5); animation:wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform:scale(1);   opacity:1; }
  70%  { transform:scale(1.4); opacity:0; }
  100% { transform:scale(1.4); opacity:0; }
}
.wa-float-label {
  background:#fff; color:#128C7E; font-family:sans-serif;
  font-size:13px; font-weight:700; padding:6px 14px;
  border-radius:100px; box-shadow:0 2px 12px rgba(0,0,0,.12);
  white-space:nowrap; pointer-events:none; opacity:0;
  transform:translateX(8px); transition:opacity .2s,transform .2s;
}
.wa-float:hover .wa-float-label { opacity:1; transform:translateX(0); }
@media(max-width:575px){
  .wa-float { bottom:18px; right:18px; }
  .wa-float-btn { width:50px; height:50px; }
  .wa-float-btn svg { width:26px; height:26px; }
  .wa-float-label { display:none; }
}