:root {
  --orange: #ff7b00;
  --orange-dark: #e56d00;
  --warm-bg: #fff7f0;  /* warm cream */
  --warm-section: #fff0e0; /* light peach */
  --text-dark: #2c2c2c;
}

/* Body */
body {
  background-color: var(--warm-bg);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #fff9f4 !important; /* slightly warm white */
  box-shadow: 0 2px 10px rgba(255, 123, 0, 0.08);
}
.navbar-nav .nav-link {
  margin: 0 12px;
  color: var(--orange) !important;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
  background: var(--orange);
  color: #fff !important;
}
.navbar-nav .nav-item.active .nav-link {
  background: var(--orange);
  color: #fff !important;
}

/* Hero */
#hero {
  background: linear-gradient(135deg, #fffaf5, #ffe9d6);
}
#hero h1 {
  color: var(--orange-dark);
}
#hero p {
  color: #5a3c2c;
}

/* Features */
.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}
.card {
  border: none;
  border-radius: 16px;
  background: #fff9f4;
  box-shadow: 0 6px 15px rgba(255, 123, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 123, 0, 0.2);
}

/* Stats Section */
#stats {
  background: linear-gradient(135deg, #ff9f5c, #ff7b00);
  color: #fff;
}
#stats h3 {
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* CTA */
#cta {
  background: var(--warm-section);
  border-top: 1px solid #ffd8b2;
  border-bottom: 1px solid #ffd8b2;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: #fff;
}
footer a {
  color: #ffe0c2;
  transition: all 0.3s ease;
}
footer a:hover {
  color: #fff;
}

.module-card {
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.card-header {
  cursor: pointer;
}
.card-header h5 {
  font-weight: 600;
}
.card-body ul {
  margin-left: 1.2rem;
  list-style-type: disc;
}
.legal-section {
  background: #fff;
  border-left: 5px solid #e56d00;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.legal-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.legal-section h2 {
  font-size: 1.6rem;
  border-bottom: 2px solid #ffe0bf;
  padding-bottom: 8px;
}
.legal-section p {
  line-height: 1.7;
  text-align: justify;
  color: #444;
}
.active-link {
  color: #000f00 !important;
  font-weight: 600;
  text-decoration: underline;
}


.important-dates-section {
  background: radial-gradient(circle at top left, #4b6aff, #001b88 40%, #280079 80%);
  color: #ffffff;
}

.important-dates-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  /* Optional: if you use a custom font for headings, apply here */
  /* font-family: 'Poppins', sans-serif; */
}
.program-objectives-section {
  background: radial-gradient(circle at top left, rgba(90, 90, 255, 0.6), rgba(130, 50, 255, 0.6), rgba(20, 20, 180, 0.7));
  color: #000;
}

.program-objectives-title {
  font-size: 2.7rem;
  font-weight: 700;
}

.objective-card {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #111;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
}
