.course-hero {
  background: #ffffff;
  padding: 60px 0;
  font-family: "Poppins", sans-serif;
}

.course-hero-wrapper {
  display: flex;
  align-items: stretch; /* KEY FIX */
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT */
.course-hero-left {
  width: 60%;
}

/* RIGHT */
.course-hero-right {
  width: 40%;
  display: flex;
  align-items: center;   /* vertical centering */
  justify-content: center;
}

/* Badge */
.course-badge {
  display: inline-flex;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 30px;
  background: #eef4ff;
  font-size: 14px;
  margin-bottom: 30px;
}

.course-badge strong {
  background: #387ef7;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Title */
.course-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 30px;
}

.wave-text {
  position: relative;
  display: inline-block;
  color: #387ef7;
  padding-bottom: 22px;
}

.wave-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 18px;
}

.wave-underline path {
  stroke: #387ef7;
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
}

/* Slider */
.course-slider {
  position: relative;
  height: 80px;
}

.slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slide-text {
  font-size: 18px;
}

.slide-text strong {
  color: #387ef7;
}

.slide-logo img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* FORM CARD */
.demo-card {
  width: 100%;
  max-width: 420px;
  min-height: 620px; /* HEIGHT BALANCE FIX */
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demo-header {
  position: relative;
  margin-bottom: 20px;
}

.demo-header span {
  color: #387ef7;
}

.demo-icon {
  position: absolute;
  right: 0;
  top: 0;
  background: #fff2e6;
  padding: 12px;
  border-radius: 12px;
}

.demo-card label {
  display: block;
  margin-top: 18px;
  font-weight: 500;
}

.demo-card input,
.demo-card select {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

.mobile-field {
  display: flex;
}

.mobile-field span {
  padding: 12px;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-right: none;
  border-radius: 8px 0 0 8px;
}

.mobile-field input {
  border-radius: 0 8px 8px 0;
}

.note {
  font-size: 12px;
  color: #6b7280;
}

.terms {
  font-size: 12px;
  margin: 18px 0;
}

.terms a {
  color: #387ef7;
  text-decoration: none;
}

.demo-card button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #1f2937;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

.demo-footer {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .course-hero-wrapper {
    flex-direction: column;
  }

  .course-hero-left,
  .course-hero-right {
    width: 100%;
  }
}

/*3 steps css*/
.career-steps-section {
  background: rgba(230, 230, 230, 0.3);
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

/* Badge */
.steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 25px;
}

.steps-badge .dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
}

/* Heading */
.steps-heading {
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 60px;
}

.steps-heading span {
  color: #387ef7;
}



/* Cards layout */
.steps-cards {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Individual card */
.step-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  text-align: left;
  flex: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Step number */
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
}

.step-number {
  background: #387ef7;
}


/* Card text */
.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* List */
.step-card ul {
  list-style: none;
  padding: 0;
}

.step-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #111827;
}

.step-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* CTA */
.steps-cta {
  margin-top: 60px;
}

.steps-btn {
  display: inline-block;
  
  color: #ffffff;
  padding: 16px 34px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: #387ef7;
  box-shadow: 0 10px 20px rgba(56,126,247,0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .steps-cards {
    flex-direction: column;
  }

  .steps-heading {
    font-size: 34px;
  }
}

/*placement Section*/
/* =========================
   PLACEMENTS SECTION
========================= */
.placements-section {
  background: linear-gradient(180deg, #0f172a, #111827);
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.placements-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.placements-heading {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 30px;
}

.placements-heading span {
  color: #387ef7;
}
.course-heading-data{
margin: 20px 0;
}


/* Slider */
.placements-slider {
  overflow: hidden;
}

.placements-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollSlider 35s linear infinite;
}

.placements-track:hover {
  animation-play-state: paused;
}

/* Card */
.placement-card {
  min-width: 320px;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* Card top */
.card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-top p {
  font-size: 13px;
  color: #cbd5f5;
}

.status {
  margin-left: auto;
  font-size: 13px;
  color: #60a5fa;
}

/* Salary badge */
.salary-badge {
  position: absolute;
  top: 12px;
  right: 20px;
  background: #387ef7;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* Company logo */
.company-logo {
  margin: 20px 0;
}

.company-logo img {
  height: 60px;
  width: 60px;
  border-radius: 10px;
  text-align: center;
}

/* Quote */
.quote {
  font-size: 15px;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 36px;
  color: #387ef7;
}

/* CTA */
.placements-cta {
  margin-top: 60px;
  text-align: center;
}

.placements-btn {
  display: inline-block;
  background: #387ef7;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(56,126,247,0.4);
}

/* Slider animation */
@keyframes scrollSlider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .placements-heading {
    font-size: 32px;
  }
}

/* Curriculum Section */
.curriculum-section {
  background: #f9fafb;
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

/* Badge */
.curriculum-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.curriculum-badge .dot {
  width: 10px;
  height: 10px;
  background: #387ef7;
  border-radius: 50%;
}

/* Heading */
.curriculum-heading {
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
}

.curriculum-heading span {
  color: #387ef7;
}

/* Subtext */
.curriculum-subtext {
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #4b5563;
}

/* Cards layout */
.curriculum-cards {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.curriculum-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  flex: 1;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Card header */
.card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.card-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.card-header span {
  font-size: 14px;
  color: #6b7280;
}

/* Number */
.card-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.card-number.blue {
  background: #387ef7;
}

.card-number.orange {
  background: #387ef7;
}

.card-number.purple {
  background: #387ef7;
}

/* List */
.curriculum-card ul {
  list-style: none;
  padding: 0;
}
.curriculum-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curriculum-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 40px rgba(56,126,247,0.18);
}

.curriculum-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #111827;
  transition: transform 0.2s ease;
}

.curriculum-card:hover ul li {
  transform: translateX(4px);
}

.curriculum-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .curriculum-cards {
    flex-direction: column;
  }
}
/* Tech Stack Section*/
.techstack-section {
  padding: 90px 20px;
  background: #f9fafb;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* Badge */
.techstack-badge {
  display: inline-block;
  background: rgba(56,126,247,0.15);
  color: #2563eb;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Heading */
.techstack-heading {
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.techstack-subtext {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 60px;
}

/* Cards Layout */
.techstack-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.tech-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: center;

  min-width: 0;
}

/* Hover */
.tech-card:hover {
  background: rgba(56,126,247,0.06);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(56,126,247,0.18);
}

/* Logo */
.tech-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Name */
.tech-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

/* Category */
.tech-card span {
  font-size: 12px;
  letter-spacing: 1px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
  .techstack-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .techstack-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* career path section */
.career-paths-section {
  background: linear-gradient(180deg, #0f172a, #111827);
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.career-paths-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.career-left {
  width: 55%;
}

/* Badge */
.career-badge {
  display: inline-block;
  background: rgba(56,126,247,0.15);
  color: #60a5fa;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Heading */
.career-heading {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.career-heading span {
  color: #60a5fa;
}

/* Subtext */
.career-subtext {
  font-size: 16px;
  color: #cbd5f5;
  max-width: 520px;
  margin-bottom: 40px;
}

/* Roles
.career-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.role-card {
  flex: 0 0 calc(50% - 10px);
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.role-card:hover {
  background: rgba(56,126,247,0.15);
  transform: translateY(-4px);
}

/* Icon */
.role-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(56,126,247,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-weight: 700;
} 
/* Roles */

.career-roles {
  display: grid;
  grid-template-columns: repeat(2,minmax(0, 1fr));
  gap: 16px;
}


.role-card {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.3s ease, background 0.3s ease;
  min-width: 0;
}


.role-card:hover {
  background: rgba(56,126,247,0.15);
  transform: translateY(-4px);
}

.role-points {
  font-size: 14px;
  line-height: 1.3;
  margin: 0;

  word-break: break-word;
  overflow-wrap: anywhere;
}



/* RIGHT */
.career-right {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Stat Card */
.stat-card {
  flex: 0 0 calc(50% - 10px);
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px 20px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
  background: rgba(56,126,247,0.18);
  transform: translateY(-6px);
}

.stat-card h3 {
  font-size: 36px;
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: #cbd5f5;
}

/* Responsive */
@media (max-width: 992px) {
  .career-paths-container {
    flex-direction: column;
  }

  .career-left,
  .career-right {
    width: 100%;
  }

  .career-heading {
    font-size: 34px;
  }
}

/* Final Section */
.final-cta-section {
  background: linear-gradient(135deg, #2563eb, #1e40af); /* BLUE */
  padding: 100px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.final-cta-content {
  max-width: 800px;
  margin: auto;
}

/* Badge */
.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 30px;
}

/* Heading */
.cta-heading {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Subtext */
.cta-subtext {
  font-size: 18px;
  color: #e0e7ff;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
  background: #ffffff;
  color: #1e40af;
  padding: 16px 34px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Secondary Button */
.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 34px;
  }

  .cta-subtext {
    font-size: 16px;
  }
}
/*6-Jan-2026-Changes*/
@media (max-width: 768px) {
    .course-title {
        width: 100%;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        text-align: center;
    }
    .course-hero{
      padding: 30px 0;
    }
}
@media (max-width: 576px) {
    .course-hero{
      padding: 30px 0;
    }
    .slide-text{
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      padding: 1.2rem;
    }
    .slide-logo img{
      margin-right: 1.2rem;
    }
    .steps-heading{
      font-size: 26px;
    }
    .placements-heading{
      font-size: 25px;
    }
    .course-heading-data{
      font-size: 20px;
    }
    .placements-section{
      padding: 45px 20px;
    }
    .techstack-section{
      padding: 30px 20px;
    }
    .career-heading{
      font-size: clamp(1.8rem, 3vw, 1.8rem);
    }
}
