@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --gold: #FFAD00;
  --gold-light: #FFD166;
  --dark: #0C2B4B;
  --gray: #F5F5F5;
  --text: #333;
  --text-light: #666;
}

/* ── SECTION BASE ── */
.pl-section {
  padding: 80px 0;
}

.pl-section-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.pl-section-title span {
  color: var(--gold);
}

.pl-section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
}

.pl-gold-bar {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin-bottom: 16px;
  border-radius: 2px;
}

/* ── HERO BANNER ── */
.pl-hero {
  background: linear-gradient(135deg, #0C2B4B 0%, #1a3f6b 60%, #0C2B4B 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.pl-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 173, 0, 0.06);
  pointer-events: none;
}

.pl-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 173, 0, 0.04);
  pointer-events: none;
}

.pl-hero-badge {
  display: inline-block;
  background: rgba(255, 173, 0, 0.15);
  border: 1px solid rgba(255, 173, 0, 0.4);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pl-hero h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(32px, 5vw, 58px);
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}

.pl-hero h1 span {
  color: var(--gold);
}

.pl-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 32px;
}

.pl-hero-btn {
  display: inline-block;
  background: var(--gold);
  color: #111;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
  margin-right: 12px;
}

.pl-hero-btn:hover {
  background: var(--gold-light);
  color: #111;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,173,0,0.3);
}

.pl-hero-btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.pl-hero-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* ── SKILLS SECTION ── */
.pl-skills-bg {
  background: none;
}

.pl-skill-card {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.pl-skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.pl-skill-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,173,0,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.pl-skill-card h5 {
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

/* ── ROLES SECTION ── */
.pl-role-tag {
  display: inline-block;
  background: white;
  border: 1.5px solid #e0e0e0;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  margin: 6px;
  transition: all 0.2s;
  cursor: default;
}

.pl-role-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,173,0,0.25);
}

.pl-roles-intro {
  background: var(--dark);
  color: white;
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 32px;
}

.pl-roles-intro h4 {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
}

.pl-roles-intro p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ── COURSES SECTION ── */
.pl-courses-bg {
  background: none;
}

.pl-course-col {
  background: white;
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.pl-course-col:hover {
  transform: translateY(-4px);
}

.pl-course-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray);
}

.pl-course-col-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pl-course-col h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin: 0;
}

.pl-course-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid #f5f5f5;
}

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

.pl-course-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}



/* ── PLACEMENTS GRID ── */
.pl-placement-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.pl-placement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.pl-placement-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #f0a000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #111;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.pl-placement-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.pl-placement-degree {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.pl-placement-role {
  display: inline-block;
  background: rgba(255,173,0,0.12);
  color: #b07800;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── TESTIMONIALS ── */
.pl-testimonials-bg {
  background: var(--dark);
  width: 72%; 
  margin-left: auto;
  margin-right: auto;
  display: block; 
  border-radius: 24px; 
  overflow: hidden; 
}

.pl-testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px;
  height: 100%;
  transition: background 0.3s, transform 0.3s;
  position: relative;
}

.pl-testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.pl-testimonial-quote {
  font-family: 'EB Garamond', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.pl-testimonial-card p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.pl-testimonial-name {
  font-weight: 700;
  color: white;
  font-size: 15px;
  margin-bottom: 2px;
}

.pl-testimonial-role {
  font-size: 13px;
  color: var(--gold);
}

.pl-testimonial-degree {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ── CONTACT SECTION ── */
.pl-contact-card {
  background: white;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  height: 100%;
}

.pl-contact-card h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

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

.pl-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,173,0,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pl-contact-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.pl-contact-item a {
  color: var(--gold);
  text-decoration: none;
}

.pl-contact-item a:hover {
  text-decoration: underline;
}

.pl-contact-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.pl-coord-tag {
  display: inline-block;
  background: var(--gray);
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 3px;
}

/* ── STATS BAR ── */
.pl-stats-bar {
  background: var(--gold);
  padding: 32px 0;
}

.pl-stat-item {
  text-align: center;
  padding: 8px 16px;
}

.pl-stat-number {
  font-family: 'EB Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.pl-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(12,43,75,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pl-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(12,43,75,0.2);
  margin: auto;
}

/* ── DOWNLOAD CTA ── */
.pl-cta {
  background: linear-gradient(135deg, #0C2B4B, #1a3f6b);
  padding: 60px 0;
  text-align: center;
  width: 72%;           
  margin: 0 auto;       

  border-radius: 24px;  
  margin-top: 40px;
  margin-bottom: 40px;
}

.pl-cta h3 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: white;
  margin-bottom: 12px;
}

.pl-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 28px;
}

/* ── WOW ANIMATION OVERRIDES ── */
.pl-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pl-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .pl-section {
    padding: 48px 0;
  }

  .pl-hod {
    padding: 24px 20px;
  }

  .pl-hero {
    padding: 48px 0 40px;
  }

  .pl-hero-btn, .pl-hero-btn-outline {
    display: block;
    text-align: center;
    margin: 8px 0;
  }

  .pl-stat-divider {
    display: none;
  }

  .pl-role-tag {
    font-size: 13px;
    padding: 8px 14px;
  }

  
  
  /* Expand the containers on mobile so text isn't squished */
  .pl-testimonials-bg, 
  .pl-cta {
    width: 95%; 
    border-radius: 16px; /* Slightly smaller border radius for mobile */
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Make sure background decorative circles don't cause horizontal scrolling bugs */
  .pl-hero::before, 
  .pl-hero::after {
    display: none; 
  }
}