html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fafc;
}

/* ===============================
   🌐 Base Navbar (Desktop Default)
   =============================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f9d65c, #f6b93b);
  padding: 0px 40px;
  font-family: 'Segoe UI', sans-serif;
  height: 70px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* ✅ Logo */
/* .navbar .logo {
  display: flex;
  align-items: center;
} */
.navbar .logo img {

  height: 42px;
  position: absolute;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  top: 20%;
}

/* ✅ Menu Button (☰) */
.menu-button {
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}
.menu-button:hover {
  color: #FFD700;
  transform: scale(1.1);
}

/* 🔗 Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative; /* Needed for tooltip positioning */
}

.nav-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links li a:hover {
  color: #0b3d91;
  transform: scale(1.07);
}

/* ===============================
   💻 Small Desktop / Laptop
   =============================== */
@media (max-width: 1280px) {
  .navbar {
    padding: 10px 30px;
    height: 60px;
  }
  .navbar .logo img {
    height: 38px;
  }
  .menu-button {
    font-size: 1.7rem;
  }
  .nav-links {
    gap: 30px;
  }
}

/* ===============================
   📱 Tablets (Landscape / Portrait)
   =============================== */
@media (max-width: 1024px) {
  .navbar {
    padding: 10px 20px;
    height: 55px;
  }

  .navbar .logo img {
    height: 34px;
  }

  .nav-links {
    gap: 20px;
  }

  /* Hide text on tablets and smaller */
  .nav-links .link-text {
    display: none;
  }

  .nav-links i {
    font-size: 1.6rem;
  }


}

/* ===============================
   📱 Small Tablets / Large Phones
   =============================== */
@media (max-width: 768px) {
  .navbar {
    padding: 8px 15px;
    height: 50px;
  }

  .navbar .logo img {
    height: 30px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links i {
    font-size: 1.5rem;
  }

  .menu-button {
    font-size: 1.5rem;
  }
}

/* ===============================
   📞 Mobile Phones
   =============================== */
@media (max-width: 480px) {
  .navbar {
    padding: 6px 10px;
    height: 50px;
  }

  .navbar .logo img {
    height: 26px;
  }

  .nav-links {
    margin-left: 20px;
    gap: 12px;
  }

  .nav-links i {
    font-size: 1.3rem;
  }

  .menu-button {
    font-size: 1.4rem;
  }
}

/* ===============================
   💻 Desktop Visibility Rules
   =============================== */
@media (min-width: 1025px) {
  .nav-links .link-text {
    display: inline;
  }
  .nav-links i {
    display: inline;
  }
}



.fas.fa-bars {
  color: #fff;        /* make the icon white */
  font-size: 22px;    /* optional: adjust size */
  cursor: pointer;    /* optional: makes it clickable */
  transition: color 0.3s ease;
}

.fas.fa-bars:hover {
  color: #ffebcd;     /* optional: light cream on hover */
}

/* 🌐 Main Dropdown Menu Panel */
.menu-panel {
  position: fixed;
  top: 70px;
  right: 20px;
  left: auto;
  width: 360px;
  max-height: 93vh; /* ✅ scrollable limit */
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  height: auto;
  background: #002b5b;
  display: none;
  flex-direction: column;
  overflow-y: auto;      
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(-15px);
  transition: all 0.3s ease;
  z-index: 1000;
  /* ✅ Cross-browser scrollbar support */
  scrollbar-width: thin;                /* Firefox */
  scrollbar-color: rgba(255,255,255,0.08) #002b5b;     /* thumb + track colors */
}

/* When menu is shown */
.menu-panel.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  right: 0; 
}

/* 🔹 WebKit Scrollbar (Chrome, Edge, Safari) */
.menu-panel::-webkit-scrollbar {
  width: 8px;
}

.menu-panel::-webkit-scrollbar-track {
  background: #002b5b;
}

.menu-panel::-webkit-scrollbar-thumb {
  background-color: #ff5e00;
  border-radius: 4px;
  border: 2px solid #002b5b;
}

.menu-panel::-webkit-scrollbar-thumb:hover {
  background-color: #ff7f32;
}

/* 🔹 Menu List Container */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* 🔸 Top-Level Items */
.menu-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0;
}

/* 🔹 Menu Titles */
.menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 25px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.menu-title:hover {
  background: rgba(255,255,255,0.08);
  color: #FFD700;
}

/* 🔸 Simple Links */
.menu-item > a {
  display: block;
  padding: 14px 25px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.menu-item > a:hover {
  background: rgba(255,255,255,0.08);
  color: #FFD700;
}

/* 🔻 Submenu Section */
.submenu {
  list-style: none;
  margin: 0;
  padding-left: 0;
  background: #013869;
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.submenu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 35px;
  font-size: 0.95rem;
  color: #e0e0e0;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}

.submenu li a:hover {
  color: #FFD700;
  background: rgba(255,255,255,0.05);
}

/* Show submenu when parent has .open */
.menu-item.open .submenu {
  display: flex;
  max-height: 800px;
}

/* Small logo next to items */
.logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
}

/* ===============================
   🌐 Responsive Dropdown Panel
   =============================== */

/* Tablets (max 1024px) */
@media (max-width: 1024px) {
  .menu-panel {
    width: 280px;   /* narrower on tablets */
    top: 65px;
    right: 10px;
  }
}

/* Small Tablets / Large Phones (max 768px) */
@media (max-width: 768px) {
  .menu-panel {
    width: 240px;
    top: 60px;
    right: 5px;
  }
}

/* Mobile Phones (max 480px) */
@media (max-width: 480px) {
  .menu-panel {
    z-index: 1000;
    width: 100%;    /* full width on mobile */
    top: 45px;
    right: 0;
    border-radius: 0; /* optional, remove rounded corners */
  }
}





/* banner */
.banner-container {
    /* position: relative; */
  margin-top: 60px;
  width: 100%;
  height: 40vh; /* 🔥 use fixed height instead of min-height */
  display: flex;              /* 🔥 enable centering */
  align-items: center;        /* vertical center */
  justify-content: center;    /* optional: horizontal center */
  background:
    /* linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.1)), */
    url('/images/cbe-banner.jfif') center/cover no-repeat;

}
/* Animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* mvc */

/* MVC SECTION */
.mvc-section {
  padding: 40px 5%;
  background: #f9fafc;
}

/* TITLE */
.mvc-section h2 {
  font-size: 38px;
  color: #0b3d91;
  margin-bottom: 30px;
  text-align: center;
}

/* GRID */
.mvc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px; /* 🔥 improved from 60% */
  margin: 0 auto;
}

/* CARD */
.mvc-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: 0.4s ease;
}

.mvc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* TITLE INSIDE CARD */
.mvc-card h3 {
  color: #0b3d91;
  margin-bottom: 15px;
  font-size: 22px;
}

/* TEXT */
.mvc-card p {
  color: #555;
  line-height: 1.8;
  font-size: 18px;
  text-align: justify;
}

/* CORE BOX */
.core-box {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: #004080;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin-right: 12px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .mvc-section {
    padding: 50px 5%;
  }

  .mvc-section h2 {
    font-size: 32px;
  }

  .mvc-card {
    padding: 30px 25px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .mvc-section h2 {
    font-size: 28px;
  }

  .mvc-grid {
    grid-template-columns: 1fr; /* 🔥 stack cards */
    gap: 15px;
  }

  .mvc-card {
    padding: 25px 20px;
  }

  .mvc-card h3 {
    font-size: 20px;
  }

  .mvc-card p {
    font-size: 15px;
  }
}

/* =========================
   SMALL PHONE (very small screens)
========================= */
@media (max-width: 414px) {
  .mvc-section {
    padding: 40px 4%;
  }

  .mvc-section h2 {
    font-size: 24px;
  }

  .mvc-card {
    padding: 20px 15px;
  }

  .mvc-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* script for animation */
.mvc-card,
.card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.mvc-card.show,
.policy-card.show,
.card.show {
  opacity: 1;
  transform: translateY(0);
}





/* quality policy */
/* SECTION */
.quality-policy{
  padding: 10px 20px;
  /* background: linear-gradient(135deg,#f5f7fb,#eef2f9); */
  /* background:#f4f7ff; */
  background: #f9fafc;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.policy-container{
  max-width: 1200px;
  margin:auto;
  text-align:center;
}

/* TITLE */
.policy-title{
  font-size: 40px;
  font-weight: 700;
  color:#1e3a8a;
  margin-bottom:30px;
}

/* INTRO */
.policy-intro{
  max-width:1100px;
  margin:auto;
  font-size:18px;
  line-height:1.6;
  color:#444;
  margin-bottom:20px;
}

/* COMMITMENT TITLE */
.commit-title{
  font-size:26px;
  font-weight:600;
  margin-bottom:20px;
  color:#111;
}

/* GRID */
.policy-grid{
  display: grid;
  max-width: 1100px;
  margin: auto;
  grid-template-columns: repeat(2, 1fr); /* 3 columns */
  gap: 20px;
}

/* CARD */
.policy-card{
  background:white;
  padding:30px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  text-align:left;
  transition:0.3s;
  position:relative;
}

.policy-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* NUMBER BADGE */
.policy-number{
  width:45px;
  height:45px;
  border-radius:50%;
  background:#2563eb;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  margin-bottom:15px;
}

/* TEXT */
.policy-card p{
  color:#555;
  line-height:1.6;
  font-size:18px;
  text-align: justify;
}

/* FOOTER TEXT */
.policy-footer{
  margin-top:30px;
  font-size:18px;
  color:#666;
  max-width:750px;
  margin-left:auto;
  margin-right:auto;
}

/* =========================
   RESPONSIVE MEDIA QUERIES
========================= */
@media (max-width:414px){

/* SECTION */
.quality-policy{
  padding:40px 18px;
}

/* TITLE */
.policy-title{
  font-size:28px;
  margin-bottom:15px;
}

/* INTRO TEXT */
.policy-intro{
  font-size:15px;
  line-height:1.6;
  margin-bottom:25px;
  text-align:justify;
}

/* COMMITMENT TITLE */
.commit-title{
  font-size:20px;
  margin-bottom:25px;
}

/* GRID → STACK CARDS */
.policy-grid{
  grid-template-columns:1fr;
  gap:18px;
}

/* CARD */
.policy-card{
  padding:22px;
  border-radius:12px;
}

/* NUMBER BADGE */
.policy-number{
  width:38px;
  height:38px;
  font-size:14px;
}

/* CARD TEXT */
.policy-card p{
  font-size:14px;
  line-height:1.6;
}

/* FOOTER */
.policy-footer{
  font-size:15px;
  margin-top:35px;
}

}

@media (max-width:768px){
  .policy-grid{
    grid-template-columns:repeat(1,1fr);
  }
  .policy-intro, .policy-footer{
  font-size:16px;
  line-height:1.6;
  /* margin-bottom:20px; */
  padding: 0 20px;
  text-align:justify;
}
}






/* 🌟 Modern Responsive Title */
.title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 3rem); /* 🔥 Responsive font scaling */
  font-weight: 700;
  /* color: #ff4500; */
  margin: clamp(5px, 5vw, 40px) auto;
  position: relative;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: #1e3a8a;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 0.8s ease-in-out;
  line-height: 1.2;
  padding: 0 10px; /* 🧠 prevents text from touching edges on mobile */
}





/* academic courses swiper */
.academic-container {
  display: flex;
  flex-wrap: wrap; /* ✅ allows wrapping for smaller screens */
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 5%; /* ✅ responsive horizontal padding */
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  height: auto;
  min-height: fit-content;
  box-sizing: border-box;
  margin-bottom: 5px;

  /* 🌟 Smooth transition for height, padding, and gap */
  transition: all 0.4s ease-in-out;
}

/* 📱 Responsive layout for smaller screens */
@media (max-width: 992px) {
  .academic-container {
    padding: 20px 8%;
  }
}

@media (max-width: 768px) {
  .academic-container {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
  }
}


/* Sidebar Styling */
.academic-sidebar {
  width: 350px;
}

.academic-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
} 

.academic-sidebar li {
  background-color: #0b3d91; /* Orange-red base color */
  color: white;
  padding: 15px 20px;
  margin-bottom: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.academic-sidebar li.active,
.academic-sidebar li:hover {
  background-color: #2563eb;
  color: white;
  /* font-weight: bold; */
}


/* Swiper Content Styling */
.swiper.mySwiper2 {
  width: 70%;
  height: auto;
}

.swiper-slide2 {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.swiper-slide2 img {
  width: 100%;
  height: 250px;
  object-fit: cover; /* 🔥 keeps aspect ratio, fills container nicely */
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

.swiper-slide2 h2 {
  margin-top: 20px;
  font-size: 2rem;
  color: #0b3d91;
  margin-bottom: 10px;
  padding: 0 15px;
  text-align: justify;
}

.swiper-slide2 p {
  font-size:18px;
  line-height: 1.6;
  color: #555;
  padding: 0 30px 20px;
  text-align: justify;

}

.site-btn {
  display: inline-block;
  margin-left: 30px;
  margin-bottom: 30px;
  padding: 10px 25px;
  font-size: 16px;
  background-color: #0b3d91; 
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.site-btn:hover {
  background-color: #2563eb;

}



.academic-container {
  position: relative; /* relative container for absolute button */
}
/* Toggle Button */
.sidebar-toggle {
  display: none; /* hidden on desktop */
  position: absolute;
  top: 3px; /* distance from top of slide */
  left: 2%;
  z-index: 10;
  background-color: #1e3a8a;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}



/* ==========================
   Sidebar as Collapsible Nav
   ========================== */

/* Responsive for tablets */
/* Tablets */
@media (max-width: 1024px) {
  .academic-container {
    padding: 20px 40px;
    flex-direction: column;
    align-items: center;
  }

  .academic-sidebar {
    display: none; /* hide sidebar */
    width: 100%;
    max-width: 300px;
  }

  .academic-sidebar.show {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .swiper.mySwiper2 {
    width: 100%;
  }

  .swiper-slide2 img {
    width: 100%;
    height: auto;
    /* max-height: 400px; keeps proportion on tablets */
     height: clamp(200px, 40vw, 350px); /* 🔥 responsive height */
    object-fit: cover; 
    border-radius: 10px; /* optional, makes it look neat */
  }

  .sidebar-toggle {
    display: block;
  }
}

/* Phones */
@media (max-width: 600px) {
  .academic-container {
    padding: 15px;
    /* top: 150px; */
    /* position: relative; */
  }

  .academic-sidebar li {
    font-size: 0.9rem;
    padding: 15px 10px;
  }

   /* .swiper.mySwiper2 {
    width: 100%;
  } */
  .swiper-slide2 h2 {
  font-size: 1rem;
  width: 100%;
  text-align: left;
  padding-left: 15px;
  /* background-color: red; */
  }


  .swiper-slide2 p {
    font-size: 0.9rem;
    padding: 0 15px 15px;
  }

  .site-btn {
    margin-left: 15px;
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .sidebar-toggle {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .swiper-slide2 img {
    width: 100%;
    height: auto;
    max-height: 250px; /* fits small phones */
    object-fit: cover; /* crops neatly if too tall */
    border-radius: 8px;
  }
}



/* news */

.news-achievements {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  /* max-width: 1500px; */
  max-width: 1000px;
  margin: 0 auto;
  /* padding: 20px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  font-family: 'Segoe UI', sans-serif;
}

.news-achievements .column {
  flex: 1 1 45%;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
}

.news-achievements h2 {
  margin-top: 0;
  font-size: 1.5em;
  border-bottom: 1px solid #f4c542;
  padding-bottom: 8px;
}

.news-achievements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each news item */
.news-achievements li {
  margin: 0;
}

/* Make the whole row a link */
.news-achievements li a {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f4c542;

  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-achievements li:last-child a {
  border-bottom: none;
}

/* Hover effects on the entire row */
.news-achievements li a:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

/* Thumbnail (fixed size) */
.news-achievements .thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 12px;
  border: 2px solid white;
  transition: transform 0.3s ease;
}

/* Image zoom on hover */
.news-achievements li a:hover .thumb {
  transform: scale(1.1);
}



/* resources - yellow theme */
.resources-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px auto;
  padding: 20px;
  max-width: 50%;
}

.resource-card {
  border: 2px solid #f4c542; /* warm yellow border */
  border-radius: 10px;
  padding: 20px;
  background-color: #fffdf5; /* very light yellow-white background */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 280px; /* grow, shrink, min-width */
  max-width: 1fr;  /* behaves like your grid columns */
}

.resource-card h2 {
  text-align: center;
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #d4a017; /* darker golden yellow for contrast */
}

.resource-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.resource-card li {
  margin: 8px 0;
  font-size: 1rem;
}

.resource-card a {
  color: #c89d0f; /* soft golden yellow for links */
  text-decoration: none;
  font-weight: 500;
}

.resource-card a:hover {
  text-decoration: underline;
} 

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.two-col ul {
  display: flex;
  flex-wrap: wrap;       /* allow wrapping into rows */
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.two-col ul li {
  width: 50%;            /* two columns */
  margin: 6px 0;         /* spacing between items */
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .two-col ul li {
    width: 100%;
  }
  .resources-section{
    max-width: 100%;
  }
}



/* programs */
.our-program-section {
    max-width: 1400px;
    margin: 10px auto;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
    /* text-align: center; */
}

.our-program-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F9A825; /* Amber Yellow */
    text-align: center;
    margin: 0 auto;
    border-bottom: 4px solid #F9A825; /* Yellow underline */
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom:20px ;
}

.our-program-list {
    list-style: none;
    margin: 10px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 columns */
    gap: 20px; /* space between items */
}
@media (max-width: 768px) {
    .our-program-list {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

.our-program-item {
    background: #FFFDE7; /* Light pastel yellow */
    border: 1px solid #FFF59D; /* Softer yellow border */
    border-left: 8px solid #F9A825; /* Thicker yellow left border */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.our-program-item:hover {
    background: #FFF176; /* Bright yellow hover */
    transform: translateY(-3px);
}

.our-program-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F57F17; /* Darker mustard yellow for titles */
    margin-bottom: 8px;
}

.our-program-definition {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.no-program {
    text-align: center;
    font-style: italic;
    color: #666;
}

.our-program-link {
    text-decoration: none;
    color: inherit;
}

.our-program-link:hover .our-program-name {
    text-decoration: underline;
    color: #F9A825; /* Accent yellow */
}

.short-name {
    font-weight: normal;
    font-size: 1.1rem;
    color: #888;
}

.program-duration,
.entry-requirements {
    font-size: 1rem;
    color: #555;
    margin: 6px 0;
}

.career-list {
    margin: 6px 0;
    padding-left: 22px;
    font-size: 1rem;
    color: #333;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #F9A825; /* Yellow link */
    font-size: 1rem;
}





/* organizational chart */

.chart-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.chart-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chart-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #ccc;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.chart-image:hover {
    transform: scale(1.02);
}