/* ============================
PREMIUM CENTER HERO FIX
============================ */

.course-hero {
  position: relative;

  padding: 140px 20px 120px;

  background:
    linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.85)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2070");

  background-size: cover;

  background-position: center;

  color: white;

  text-align: center;

  display: flex;

  justify-content: center;

  align-items: center;
}

/* CONTAINER */

.hero-content {
  max-width: 900px;

  margin: auto;

  display: flex;

  flex-direction: column;

  align-items: center;
}

/* BADGE */

.hero-tag {
  background: #ef4444;

  padding: 8px 22px;

  border-radius: 30px;

  font-size: 14px;

  margin-bottom: 25px;
}

/* TITLE */

.course-hero h1 {
  font-size: 52px;

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 20px;

  max-width: 850px;
}

.course-hero h1 span {
  color: #ef4444;
}

/* DESCRIPTION */

.course-hero p {
  font-size: 18px;

  max-width: 650px;

  margin-bottom: 35px;

  opacity: 0.9;
}

/* BUTTONS */

.hero-buttons {
  display: flex;

  gap: 20px;

  justify-content: center;

  margin-bottom: 50px;

  flex-wrap: wrap;
}

.btn-primary {
  background: #ef4444;

  padding: 14px 32px;

  border-radius: 30px;

  color: white;

  text-decoration: none;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);

  padding: 14px 32px;

  border-radius: 30px;

  color: white;

  text-decoration: none;
}

/* STATS */

.hero-stats {
  display: flex;

  gap: 25px;

  justify-content: center;

  flex-wrap: wrap;

  width: 100%;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.08);

  padding: 20px 35px;

  border-radius: 12px;

  min-width: 180px;
}

.hero-stats h3 {
  font-size: 26px;
}

.hero-stats span {
  font-size: 14px;

  opacity: 0.8;
}

/* ======================
TABLET
====================== */

@media (max-width: 1024px) {
  .course-hero h1 {
    font-size: 42px;
  }
}

/* ======================
MOBILE
====================== */

@media (max-width: 768px) {
  .course-hero {
    padding: 110px 20px;
  }

  .course-hero h1 {
    font-size: 30px;
  }

  .course-hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;

    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;

    text-align: center;
  }

  .hero-stats {
    flex-direction: column;

    align-items: center;
  }

  .hero-stats div {
    width: 100%;

    max-width: 280px;
  }
}
/* WHY SECTION */

.why-section {
  padding: 100px 20px;

  background: #f8fafc;
}

.why-header {
  text-align: center;

  margin-bottom: 60px;
}

.why-badge {
  background: #e0e7ff;

  color: #2563eb;

  padding: 8px 18px;

  border-radius: 30px;

  font-weight: 600;

  display: inline-block;

  margin-bottom: 15px;
}

.why-header h2 {
  font-size: 40px;

  margin-bottom: 10px;
}

.why-header p {
  color: #64748b;
}

.why-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* CARD */

.why-card {
  background: white;

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  position: relative;

  overflow: hidden;
}

/* ICON */

.why-icon {
  font-size: 34px;

  width: 70px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  margin-bottom: 20px;

  animation: float 4s infinite;
}

/* HOVER EFFECT */

.why-card:hover {
  transform: translateY(-10px);
}

/* DIFFERENT COLORS */

.card-orange:hover {
  border: 2px solid #f97316;
}

.card-green:hover {
  border: 2px solid #22c55e;
}

.card-purple:hover {
  border: 2px solid #9333ea;
}

.card-blue:hover {
  border: 2px solid #2563eb;
}

.card-pink:hover {
  border: 2px solid #ec4899;
}

/* LIST */

.why-card ul {
  margin-top: 15px;
}

.why-card li {
  margin-bottom: 8px;

  color: #16a34a;
}

/* MOBILE */

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 28px;
  }
}
/* ===============================
CURRICULUM
================================ */

.curriculum {
  padding: 100px 20px;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 42px;
  margin-top: 20px;
}

.section-header h2 span {
  color: #db2d27;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.module-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: 0.3s;
}

.module-card:hover {
  transform: translateY(-10px);
}

/* COLORS */

.blue {
  border-color: #3b82f6;
}

.purple {
  border-color: #7c3aed;
}

.green {
  border-color: #16a34a;
}

.red {
  border-color: #dc2626;
}

.orange {
  border-color: #ea580c;
}

.dark {
  border-color: #111827;
}

.module-top {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.module-icon {
  font-size: 30px;
  background: #f1f5f9;
  padding: 20px;
  border-radius: 12px;
}

.module-card ul {
  margin: 20px 0;
}

.module-card li {
  margin-bottom: 10px;
}

.duration {
  background: #111827;
  color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
}

/* MOBILE */

@media (max-width: 768px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
TOOLS SLIDER
================================ */

.tools-section {
  padding: 80px 0;
  background: #fff;

  overflow: hidden;
}

.tools-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
}

.tools-slider {
  overflow: hidden;
  position: relative;
}

.tools-track {
  display: flex;
  gap: 60px;

  animation: scroll 25s linear infinite;

  width: max-content;
}

.tool img {
  height: 60px;

  opacity: 0.8;

  transition: 0.3s;
}

.tool img:hover {
  opacity: 1;

  transform: scale(1.1);
}

/* ANIMATION */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .tool img {
    height: 40px;
  }

  .tools-track {
    gap: 30px;
  }
}

/* CAREER SECTION */

.career-section {
  padding: 100px 20px;

  background: #f8fafc;
}

.section-header {
  text-align: center;

  margin-bottom: 60px;
}

.badge {
  background: linear-gradient(90deg, #2563eb, #7c3aed);

  color: #fff;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 14px;

  display: inline-block;

  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 36px;

  margin-bottom: 10px;
}

.section-header p {
  color: #64748b;
}

/* GRID */

.career-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* CARD */

.career-card {
  background: #fff;

  padding: 40px;

  border-radius: 16px;

  text-align: center;

  position: relative;

  overflow: hidden;

  transition: 0.4s;

  cursor: pointer;

  border: 2px solid transparent;
}

/* ICON */

.career-icon {
  font-size: 45px;

  margin-bottom: 15px;
}

/* SALARY */

.salary {
  font-size: 24px;

  font-weight: bold;

  color: #16a34a;

  margin-top: 20px;
}

.unlimited {
  color: #2563eb;
}

/* HOVER */

.career-hover {
  position: absolute;

  bottom: -100%;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(180deg, transparent, #020617);

  color: #fff;

  display: flex;

  flex-direction: column;

  justify-content: center;

  transition: 0.4s;

  font-size: 15px;

  padding: 20px;
}

.career-card:hover .career-hover {
  bottom: 0;
}

/* DIFFERENT BORDER COLORS */

.job:hover {
  border-color: #2563eb;
}

.freelance:hover {
  border-color: #16a34a;
}

.agency:hover {
  border-color: #7c3aed;
}

/* MOBILE */

@media (max-width: 768px) {
  .career-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }
}
/* CAREER STATS */
.career-stats {
  padding: 100px 20px;

  background: #f8fafc;

  text-align: center;
}

.stats-header h2 {
  font-size: 38px;

  margin-bottom: 10px;
}

.stats-header span {
  background: linear-gradient(90deg, #002a47, #db2d27);

  -webkit-background-clip: text;

  color: transparent;
}

.stats-header p {
  color: #64748b;

  margin-bottom: 60px;
}

.stats-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.stat-card {
  background: #fff;

  padding: 30px;

  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card h3 {
  font-size: 32px;

  color: #2563eb;
}

.stat-card p {
  margin-top: 8px;

  color: #64748b;
}

/* MOBILE */

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
// PLACEMENT SECTION
/* 
.placement-section {
  padding: 100px 20px;

  background: #ffffff;
}

.placement-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.placement-card {
  background: #fff;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.placement-card:hover {
  transform: translateY(-10px);
}

.placement-card img {
  width: 100%;

  height: 220px;

  object-fit: cover;
}

.placement-info {
  padding: 20px;
}

.placement-info h3 {
  margin-bottom: 5px;
}

.company {
  font-size: 14px;

  color: #64748b;

  display: block;

  margin: 5px 0;
}

.salary {
  margin-top: 10px;

  font-weight: bold;

  color: #16a34a;

  font-size: 18px;
}

/* MOBILE */

/* @media (max-width: 768px) {
  .placement-grid {
    grid-template-columns: 1fr;
  }
} */ 

/* TESTIMONIALS */
.testimonial-section {
  padding: 100px 20px;

  background: #f8fafc;
}

.testimonial-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.testimonial-card {
  background: #fff;

  padding: 30px;

  border-radius: 16px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.student-info {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 15px;
}

.student-info img {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  object-fit: cover;
}

.review {
  color: #475569;

  margin-bottom: 15px;
}

.rating {
  color: #f59e0b;

  font-size: 18px;
}

/* MOBILE */

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* FINAL CTA */
.final-cta {
  padding: 100px 20px;
  margin-top: 60px;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #020617, #1e3a8a);

  text-align: center;

  color: #fff;
}

.final-cta h2 {
  font-size: 38px;

  margin-bottom: 15px;
}

.final-cta p {
  margin-bottom: 40px;

  color: #cbd5e1;

  font-size: 18px;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

/* CALL */

.cta-call {
  background: linear-gradient(90deg, #2563eb, #7c3aed);

  padding: 18px 35px;

  border-radius: 50px;

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  font-size: 18px;

  transition: 0.3s;
}

.cta-call:hover {
  transform: scale(1.05);
}

/* WHATSAPP */

.cta-whatsapp {
  background: #16a34a;

  padding: 18px 35px;

  border-radius: 50px;

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  font-size: 18px;

  transition: 0.3s;
}

.cta-whatsapp:hover {
  transform: scale(1.05);
}

/* MOBILE */

@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 26px;
  }
}
