/* ================================
   THEME VARIABLES
   Easy to change colors later
================================ */
:root {
  --primary: #145982; /* Red accent */
  --primary-hover: #2084b9;
  --dark-bg: #111;
  --dark-bg-alt: #1a1a1a;
  --text-light: #f1f1f1;
  --text-muted: #b5b5b5;
  --card-bg: #145982;
  --border-color: #145982;
  --transition: 0.35s ease;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*body {
  background: var(--dark-bg);
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}*/

h1, h2, h3, h4 {
  font-family: "Merriweather", serif;
  font-weight: 700;
}

img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* Utility */
.section {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding: 80px 0;
}

/* =======================
   HERO SECTION
======================= */
.hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  overflow: hidden;
  animation: fadeIn 1.2s ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}

.hero .content {
  position: relative;
  max-width: 700px;
  animation: slideUp 1.1s ease forwards;
  z-index: 999;
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =======================
   BUTTONS
======================= */
.btn {
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
}

/* =======================
   GRID + CARD STYLES
======================= */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

/* Card Image Section */
.card img {
  border-radius: 14px;
  transition: var(--transition);
}

.card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: 16px 0;
  color:#fff
}

/* =======================
   ABOUT / GOVERNANCE TEXT
   Responsive Lists
======================= */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  list-style: none;
}

.features-list li {
  background: var(--dark-bg-alt);
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition);
}

.features-list li:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

/* =======================
   CARD CAROUSEL WRAPPER
======================= */
.carousel-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
}

.carousel-item {
  min-width: 300px;
}

/* You can use SwiperJS, Slick, Glidejs etc */
.carousel-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .section {
    padding: 50px 0;
  }
}
/* Navigation Tabs */
.program-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.program-tabs button {
    background: #1a1a1a;
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .35s ease;
    font-size: 0.9rem;
    color: #fff;
}

.program-tabs button:hover,
.program-tabs button.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 12px rgba(255, 0, 60, 0.6);
    transform: translateY(-3px);
}

/* Program Section */
.program-group {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(25px);
    transition: all .7s ease;
}

.program-group.visible {
    opacity: 1;
    transform: translateY(0);
}

.pg-title {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--primary);
    border-left: 5px solid var(--primary);
    padding-left: 12px;
}

/* Cards Grid */
.program-grid {
    display: grid;
    gap: 1.5rem;
}

/* 3 Cards Desktop */
@media(min-width:900px) {
    .program-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-card {
    background: #145982;
    border: 1px solid #145982;
    padding: 1.4rem;
    border-radius: 12px;
    transition: 0.35s ease;
    position: relative;
}

.program-card h3 {
    color: #fff;
    font-size: 16px !important;
    margin-bottom: 0.6rem;
}

.program-card p {
    color: #fff;
    font-size: 14px !important;
    opacity: .75;
    line-height: 1.45rem;
}
.program-card ul {
    color: #fff;
    font-size: 12px !important;
    opacity: .75;
    line-height: 1.45rem;
    list-style-position: inside;
}

.program-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(255,0,60,0.25);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(to bottom right, #160007, #000);
    border-radius: 20px;
    margin: 4rem auto;
}

.cta-section h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 750px;
    margin: 0 auto 2rem;
    color: #eee;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-buttons .btn {
    padding: 14px 32px;
    font-weight: bold;
    border-radius: 40px;
    transition: 0.3s ease-in-out;
}

.primary-btn {
    background: var(--primary);
    color: #fff;
}

.primary-btn:hover {
    background: transparent;
    border: 2px solid var(--primary);
}

.outline-btn {
    border: 2px solid var(--primary);
    color: #fff;
}

.outline-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ——— Entrance Animations ——— */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.7s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}