.edp-section,
.edp-section *,
.edp-section *::before,
.edp-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ════════════════════════════════
   SECTION — white/light bg
════════════════════════════════ */
.edp-section {
  width: 100%;
  background: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  color: #0f172a;
  overflow: hidden;
}

/* ════════════════════════════════
   HERO BANNER
   Left text | Right decorative arc
════════════════════════════════ */
#edp-hero {
  position: relative;
  background: linear-gradient(118deg, #eef4ff 0%, #f0f4ff 50%, #e8edff 100%);
  border-bottom: 1px solid #dde5f4;
  overflow: hidden;
  padding: 64px 0 0;
  margin-top: 40px;
}

/* Big arc shape top-right (like Coursera) */
#edp-hero-arc {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(99, 102, 241, 0.08)
  );
  border: 2px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
  z-index: 0;
}

/* Second smaller arc */
#edp-hero-arc2 {
  position: absolute;
  top: 40px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 99, 235, 0.07);
  pointer-events: none;
  z-index: 0;
}

#edp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 44px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: flex-end;
  min-height: 340px;
  margin-top: 59px;
}

/* ── LEFT text ── */
#edp-hero-left {
  padding-bottom: 52px;
  opacity: 0;
  animation: edp-from-left 0.85s cubic-bezier(0.22, 0.68, 0, 1.1) forwards 0.1s;
}

/* Eyebrow badge */
#edp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 20px;
}

/* Blinking live dot */
#edp-live-dot {
  width: 7px;
  height: 7px;
  background: #2563eb;
  border-radius: 50%;
  animation: edp-blink 1.6s ease-in-out infinite;
}

/* Main heading */
#edp-hero-h1 {
  /* font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 16px; */

  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  opacity: 0;
  animation: gov-fadeUp 0.7s 0.5s ease both;
  margin-top: 12px;
  font-family: serif;
}

/* Subtext */
#edp-hero-sub {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.74;
  max-width: 500px;
  margin-bottom: 28px;
  font-weight: 400;
  font-family: sans-serif;
}

/* Stats pill row */
#edp-stat-pills {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.edp-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #dde5f4;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  color: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

.edp-stat-pill strong {
  color: #eb9c25;
  font-weight: 800;
}

.edp-stat-pill svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── RIGHT visual ── */
#edp-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 320px;
  opacity: 0;
  animation: edp-from-right 0.9s cubic-bezier(0.22, 0.68, 0, 1.1) forwards 0.3s;
}

/* Big blue half-circle */
#edp-big-circle {
  position: absolute;
  bottom: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;

  background: linear-gradient(145deg, #ffc107, #faaf0c);

  z-index: 1;
}

/* Floating icon tiles */
.edp-float-tile {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.edp-float-tile svg {
  width: 28px;
  height: 28px;
}

#edp-tile-1 {
  top: 24px;
  left: 24px;
  animation: edp-float-up 3s ease-in-out infinite;
}

#edp-tile-2 {
  top: 80px;
  right: -20px;
  animation: edp-float-up 3s ease-in-out infinite 1.2s;
}

#edp-tile-3 {
  bottom: 60px;
  left: -10px;
  animation: edp-float-up 3s ease-in-out infinite 2s;
}

/* Stats chip below circle */
#edp-hero-chip {
  position: absolute;
  bottom: 16px;
  left: -20px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 13px;
  color: #1e293b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  z-index: 5;
  font-weight: 500;
}

#edp-hero-chip strong {
  color: #faaf0c;
  font-weight: 800;
}

/* ════════════════════════════════
   GOAL BAR — 4 blue action buttons
   (Coursera style top filter)
════════════════════════════════ */
#edp-goal-bar {
  background: #fff;
  border-bottom: 1.5px solid #e8edf5;
  padding: 16px 0;
}

#edp-goal-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#edp-goal-label {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  margin-right: 6px;
  font-family: sans-serif;
}

/* Goal buttons */
.edp-gbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}

.edp-gbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
  filter: brightness(1.1);
}

.edp-gbtn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Each button a slightly different blue shade */
#edp-gb1 {
  background: #faaf0c;
}

#edp-gb2 {
  background: #faaf0c;
}

#edp-gb3 {
  background: #faaf0c;
}

#edp-gb4 {
  background: #faaf0c;
}

/* ════════════════════════════════
   MAIN CONTENT
════════════════════════════════ */
#edp-main {
  max-width: 1342px;
  margin: 0 auto;
  padding: 60px 4px 84px;
}

/* ── Section label ── */
.edp-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #faaf0c;
  margin-bottom: 8px;
}

/* ── Section heading ── */
.edp-heading {
  /* font-family: "Playfair Display", Georgia, serif; */
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  font-family: ui-sans-serif;
}

/* ── Section description ── */
.edp-desc {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 32px;
  font-family: sans-serif;
}

/* ── Block spacing ── */
.edp-block {
  margin-bottom: 64px;
}

/* ════════════════════════════════
   KEY FOCUS AREAS
   4 cards — Coursera degree style
════════════════════════════════ */
#edp-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

@media (max-width: 960px) {
  #edp-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  #edp-focus-grid {
    grid-template-columns: 1fr;
  }
}

/* Focus card */
.edp-fc {
  background: #fff;
  border: 1.5px solid #e8edf5;
  border-radius: 14px;
  overflow: hidden;
  cursor: default;
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease;

  /* scroll-reveal start */
  opacity: 1;
  transform: translateY(26px);
}

.edp-fc.edp-in {
  opacity: 1;
  transform: translateY(0);
  transition-property: opacity, transform, box-shadow, border-color;
}

.edp-fc:hover {
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.13);
  transform: translateY(-5px) !important;
  border-color: #93c5fd;
}

/* Card image strip */
.edp-fc-img {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Animated shimmer overlay on hover */
.edp-fc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.edp-fc:hover .edp-fc-img::after {
  transform: translateX(100%);
}

/* Image background colours */
.edp-img-crm {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.edp-img-adm {
  background: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 100%);
}

.edp-img-bio {
  background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
}

.edp-img-ups {
  background: linear-gradient(135deg, #3b0764 0%, #9333ea 100%);
}

.edp-fc-img svg {
  width: 56px;
  height: 56px;
  opacity: 0.85;
}

/* Card body */
.edp-fc-body {
  padding: 16px 16px 20px;
}

/* Provider row */
.edp-prov-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.edp-prov-badge {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.edp-prov-badge svg {
  width: 14px;
  height: 14px;
}

.edp-prov-name {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.edp-fc-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 6px;
}

.edp-fc-tagline {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* "Learn more" link row */
.edp-learn-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #faaf0c;
}

.edp-learn-row svg {
  width: 14px;
  height: 14px;
}

.edp-card-type {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 2px;
}

/* ════════════════════════════════
   TARGET CLIENTS
   Two-column chip layout
════════════════════════════════ */
#edp-clients-wrap {
  background: #faaf0c3d;
  border: 1.5px solid #dde5f4;
  border-radius: 18px;
  padding: 36px 36px;

  /* scroll-reveal */
  opacity: 1;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

#edp-clients-wrap.edp-in {
  opacity: 1;
  transform: translateY(0);
}

#edp-clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 640px) {
  #edp-clients-grid {
    grid-template-columns: 1fr;
  }
}

/* Group heading */
.edp-cg-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.edp-cg-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.edp-cgi-blue {
  background: rgba(37, 99, 235, 0.1);
}

.edp-cgi-indigo {
  background: rgba(99, 102, 241, 0.1);
}

.edp-cg-icon svg {
  width: 18px;
  height: 18px;
}

.edp-cg-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1e293b;
  font-family: sans-serif;
}

/* Chips */
.edp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.edp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.2s ease;
}

.edp-chip-b {
  background: #fff;
  border: 1.5px solid #faaf0c;
  color: #000000;
}

.edp-chip-b:hover {
  background: #eff6ff;
  border-color: #020303;
  transform: translateY(-2px);
}

.edp-chip-i {
  background: #fff;
  border: 1.5px solid #faaf0c;
  color: #212529;
}

.edp-chip-i:hover {
  background: #eef2ff;
  border-color: #818cf8;
  transform: translateY(-2px);
}

.edp-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.edp-dot-blue {
  background: #faaf0c;
}

.edp-dot-indigo {
  background: #faaf0c;
}

/* ════════════
   ANIMATIONS
════════════ */
@keyframes edp-from-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes edp-from-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes edp-float-up {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes edp-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* ── Responsive ── */
@media (max-width: 880px) {
  #edp-hero-inner {
    grid-template-columns: 1fr;
  }

  #edp-hero-right {
    display: none;
  }

  #edp-main {
    padding: 40px 20px 60px;
  }

  #edp-goal-inner {
    padding: 0 20px;
  }

  #edp-clients-wrap {
    padding: 24px 20px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .edp-section * {
    animation: none !important;
    transition:
      opacity 0.01s,
      transform 0.01s !important;
  }

  .edp-fc,
  #edp-clients-wrap,
  #edp-hero-left,
  #edp-hero-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ------------------------------------------ */

/* Student image ko upar lane ke liye */
#edp-center-img {
  position: absolute;
  bottom: 0;
  max-height: 170%;
  /* Image container se bahar na jaye */
  object-fit: contain;
  z-index: 2;
  /* Blue circle (z-index: 1) se upar rakhne ke liye */
  pointer-events: none;
  /* Taaki floating tiles par click ho sake */
}

/* ////////////////////////////////////////////////////////////////////////////////////// */
/* Grid Container */
#edp-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

/* Card Main Style */
.edp-fc {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

/* Top Banner Image Container */
.edp-fc-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background-color: #f8fafc;
}

/* Actual Banner Images */
.edp-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Body Content */
.edp-fc-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Provider/Badge Row */
.edp-prov-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* Icon Badges */
.edp-prov-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* Badge Images inside Provider */
.edp-badge-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.edp-prov-name {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}

/* Typography */
.edp-fc-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;

  font-family: ui-sans-serif;
}

.edp-fc-tagline {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 16px 0;
  flex-grow: 1;
  font-family: sans-serif;
}

/* Lower Row Info & Icons */
.edp-learn-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #ffc107;
  font-weight: 500;
  margin-bottom: 16px;
}

/* Inline small icons for learn-row */
.edp-inline-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Footer Card Type Label */
.edp-card-type {
  align-self: flex-start;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
