/* ===================================
   ICAHM COURSE PAGE
=================================== */

:root{
  --primary:#0f172a;
  --secondary:#1e293b;
  --gold:#d4af37;
  --gold-light:#f5d76e;
  --light:#f8fafc;
  --white:#ffffff;
  --text:#475569;
  --border:#e2e8f0;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
  line-height:1.8;
}

/* ===================================
   HERO SECTION
=================================== */

.course-hero{
  position:relative;
  padding:120px 0;
  background:linear-gradient(135deg,#08101f,#16263f);
  overflow:hidden;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at top right,
  rgba(212,175,55,.15),
  transparent 40%);
}

.hero-tag{
  display:inline-block;
  padding:10px 20px;
  background:rgba(212,175,55,.15);
  color:var(--gold);
  border:1px solid rgba(212,175,55,.3);
  border-radius:50px;
  font-size:14px;
  font-weight:600;
}

.course-hero h1{
  font-size:3.8rem;
  font-weight:800;
  margin:20px 0;
  line-height:1.2;
}

.course-hero p{
  font-size:18px;
  color:rgba(255,255,255,.85);
  max-width:650px;
}

.hero-buttons{
  margin-top:35px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.hero-image{
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,.35);
  transition:.4s;
}

.hero-image:hover{
  transform:translateY(-8px);
}

/* ===================================
   BUTTONS
=================================== */

.btn-gold{
  background:linear-gradient(
  135deg,
  var(--gold),
  var(--gold-light)
  );
  color:#000;
  font-weight:600;
  border:none;
  padding:14px 35px;
  border-radius:50px;
  transition:.3s;
}

.btn-gold:hover{
  transform:translateY(-3px);
  color:#000;
}

.btn-outline-light{
  border-radius:50px;
  padding:14px 35px;
}

/* ===================================
   QUICK INFO
=================================== */

.quick-info{
  margin-top:-60px;
  position:relative;
  z-index:5;
}

.info-card{
  background:#fff;
  padding:35px;
  text-align:center;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.3s;
}

.info-card:hover{
  transform:translateY(-6px);
}

.info-card h3{
  color:var(--gold);
  font-size:2rem;
  font-weight:700;
}

.info-card p{
  margin-top:10px;
  font-weight:500;
  color:#64748b;
}

/* ===================================
   SECTIONS
=================================== */

.section{
  padding:100px 0;
}

.section-title{
  margin-bottom:40px;
}

.section-title h2{
  color:var(--primary);
  font-size:2.8rem;
  font-weight:700;
  margin-bottom:15px;
}

.section-title p{
  color:#64748b;
}

/* ===================================
   OVERVIEW
=================================== */

.overview-box{
  background:#fff;
  padding:45px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.overview-box p{
  margin:0;
  font-size:17px;
}

/* ===================================
   HIGHLIGHTS
=================================== */

.highlight-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.feature-card{
  background:#fff;
  border-radius:18px;
  padding:30px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.3s;
  height:100%;
}

.feature-card:hover{
  transform:translateY(-8px);
}

.feature-card h5{
  margin:0;
  font-size:18px;
  font-weight:600;
  color:var(--primary);
}

/* ===================================
   CURRICULUM
=================================== */

.curriculum-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.curriculum-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.curriculum-box li{
  padding:16px 0;
  border-bottom:1px solid var(--border);
  position:relative;
  padding-left:35px;
}

.curriculum-box li:last-child{
  border-bottom:none;
}

.curriculum-box li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--gold);
  font-weight:700;
}

/* ===================================
   CAREERS
=================================== */

.career-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.career-box{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.3s;
}

.career-box:hover{
  transform:translateY(-8px);
}

.career-box h5{
  color:var(--primary);
  font-weight:700;
  margin-bottom:12px;
}

.career-box p{
  margin:0;
  color:#64748b;
}

/* ===================================
   FUTURE SCOPE
=================================== */

.future-box{
  background:#fff;
  padding:45px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.salary-card{
  margin-top:30px;
  background:linear-gradient(
  135deg,
  var(--primary),
  var(--secondary)
  );
  color:#fff;
  padding:30px;
  border-radius:18px;
}

.salary-card h4{
  color:var(--gold);
  margin-bottom:10px;
}

/* ===================================
   RECRUITERS
=================================== */

.recruiter-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
}

.recruiter-card{
  background:#fff;
  padding:30px 20px;
  border-radius:18px;
  text-align:center;
  font-weight:600;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:.3s;
}

.recruiter-card:hover{
  transform:translateY(-6px);
  color:var(--gold);
}

/* ===================================
   FAQ
=================================== */

.accordion-item{
  border:none;
  margin-bottom:15px;
  border-radius:15px !important;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.accordion-button{
  font-weight:600;
}

.accordion-button:not(.collapsed){
  background:#fff8e1;
  color:#000;
}

/* ===================================
   CTA
=================================== */

.cta-section{
  background:linear-gradient(
  135deg,
  var(--primary),
  #1e293b
  );
  color:#fff;
  padding:100px 0;
}

.cta-section h2{
  font-size:3rem;
  font-weight:700;
  margin-bottom:20px;
}

.cta-section p{
  color:rgba(255,255,255,.85);
  max-width:700px;
  margin:auto auto 30px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

  .course-hero{
    text-align:center;
    padding:90px 0;
  }

  .course-hero h1{
    font-size:3rem;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-image{
    margin-top:40px;
  }

}

@media(max-width:768px){

  .section{
    padding:70px 0;
  }

  .course-hero h1{
    font-size:2.2rem;
  }

  .section-title h2{
    font-size:2rem;
  }

  .cta-section h2{
    font-size:2rem;
  }

  .overview-box,
  .future-box,
  .curriculum-box{
    padding:25px;
  }

  .info-card{
    padding:25px;
  }

}