 /* ====== Base Styles ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

* {
   
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}.programmatic-section {
  padding: 80px 40px;
  background: #fefefe;
   
}

.programmatic-section .section-title {
  font-size: 2.2rem;
  color: #003366;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.programmatic-section .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #003366;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid Layout */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.program-card {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  background: #e6f2ff;
}

.program-card i {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 15px;
}

.program-card h3 {
  font-size: 1.1rem;
  color: #003366;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}


.program-components {
  padding: 80px 40px;
  background: #fefefe;
 
}

.program-components .section-title {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 30px;
  position: relative;
}

.program-components .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #003366;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Tabs Navigation */
.tabs-nav {
  display: flex;
  flex-wrap: wrap; /* wrap to multiple lines on small screens */
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
  padding-bottom: 5px;
}

.tab-btn {
  flex: 1 1 auto; /* allow shrinking */
  min-width: 120px; /* minimal width */
  padding: 6px 12px;
  font-size: 0.85rem;
  background: #f0f0f0;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
  background: #003366;
  color: #fff;
}

/* Tabs Content Cards */
.tabs-content {
  max-width: 1200px;
  margin: 0 auto;
}

.tab-content {
  display: none;
  animation: fadeIn 0.8s ease forwards;
}

.tab-content.active {
  display: block;
}

.card {
  background: #f9f9f9;
  padding: 20px 18px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card h3 {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 12px;
}

.card p, .card ul {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}

.card ul {
  padding-left: 20px;
  margin: 8px 0;
}

/* Scroll Animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .tabs-nav {
    gap: 6px;
  }
  .tab-btn {
    font-size: 0.75rem;
    padding: 5px 10px;
    min-width: 90px;
  }
  .card h3 {
    font-size: 1rem;
  }
  .card p, .card ul {
    font-size: 0.85rem;
  }
}

.cross-cutting-card {
  background: #fff; /* changed from gradient to white */
  color: #003366; /* main text color blue */
  padding: 30px 35px;
  border-radius: 25px;
  margin: 40px auto 0;
  max-width: 1200px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.1); /* lighter shadow for white background */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: slideUpFade 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.cross-cutting-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  display: inline-block;
  color: #003366; /* icon color blue */
}

.cross-cutting-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #003366; /* dark blue title */
}

.cross-cutting-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #02080f; /* blue text */
}

/* Bold phrases in darker blue */
.cross-cutting-card p strong {
  color: #003366; /* dark blue */
  font-weight: 700;
}

/* Hover Effect */
.cross-cutting-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Animation Keyframes */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cross-cutting-card {
    padding: 25px 20px;
  }

  .cross-cutting-card h3 {
    font-size: 1.2rem;
  }

  .cross-cutting-card p {
    font-size: 0.95rem;
  }

  .cross-cutting-card i {
    font-size: 1.6rem;
  }
}
