html {
  scroll-behavior: smooth;
}

/* ===============================
   🌐 Base Navbar (Desktop Default)
   =============================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #ff4500, #ff5e00);
  padding: 0px 40px;
  font-family: 'Segoe UI', sans-serif;
  height: 70px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  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: #FFD700;
  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;
  }

  /* Tooltip for small screens */
  .nav-links li a::after {
    content: attr(title);
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
  }
  .nav-links li a:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(2px);
  }
}

/* ===============================
   📱 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: 45px;
  }

  .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: 10000;
  /* ✅ 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 */
  }
}















/*endregion  */
.index--section {
  width: 100%;
  position: relative;
  z-index: 1;
}


.mySwiper {
  margin-top: 70px;
  width: 100%;
  height: calc(45vh - 70px);
  overflow: hidden;
  border-radius: 0 !important;
}

/* Style each slide */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa; /* Light gray or any color you prefer */
}

/* Image inside slides */ 
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}

/* Pagination bullets */
.swiper-pagination-bullet {
  background: #999;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #007bff;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  font-weight: bold;
  transition: transform 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2);
}





/* 🌟 Modern Welcome Section */
.welcome-intro {
  background: linear-gradient(135deg, #004aad, #ff6b00); /* Academic Blue → Orange */
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* ✨ Optional animated overlay for depth */
.welcome-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}

.welcome-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

/* 🏫 Headline */
.welcome-intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

/* 📘 Paragraph */
.welcome-intro p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  font-family: "Segoe UI", sans-serif;
  opacity: 0.95;
  margin: 0 auto;
  max-width: 750px;
}

/* ==============================
   📱 Responsive Enhancements
   ============================== */

/* Tablets */
@media (max-width: 1024px) {
  .welcome-intro {
    padding: 60px 20px;
  }
  .welcome-intro h1 {
    font-size: 2.2rem;
  }
  .welcome-intro p {
    font-size: 1.1rem;
  }
}

/* Phones */
@media (max-width: 768px) {
  .welcome-intro {
    padding: 50px 15px;
  }
  .welcome-intro h1 {
    font-size: 1.8rem;
  }
  .welcome-intro p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .welcome-intro {
    padding: 40px 12px;
  }
  .welcome-intro h1 {
    font-size: 1.5rem;
  }
  .welcome-intro p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}





/* ✅ MAIN WRAPPER */
.wrp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 10px 20px;
  background: #fff8f3; /* warm neutral background */
  font-family: 'Poppins', sans-serif;
}

/* 🧱 Card Containers */
.about.card {
  background: #fff3ed;
  border-radius: 16px;
  padding: 10px;
  width: 70%;
  min-width: 320px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 77, 0, 0.08);
}

.about.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 77, 0, 0.15);
}

/* 🧭 Headings */
.about h3 {
  color: #ff4500; /* orangered */
  font-size: 1.5rem;
  margin-bottom: 10px;
  border-left: 6px solid #ff7b00;
  padding-left: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 📝 Paragraphs */
.about p, 
.about li {
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
  text-align: justify;
}

/* Inner Sections */
.inner-about {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.inners {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  border-left: 5px solid transparent;
}

.inners:hover {
  background: #fff7f2;
  border-left: 5px solid #ff7b00;
}

/* 🔢 Goals Numbering */
.inners.coreValues ol {
  counter-reset: goal-counter;
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.inners.coreValues li {
  counter-increment: goal-counter;
  margin-bottom: 12px;
  padding-left: 40px;
  position: relative;
  line-height: 1.6;
  color: #333;
  font-size: 1rem;
}

.inners.coreValues li::before {
  content: counter(goal-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff4d4d;
  font-weight: bold;
  font-size: 1rem;
}

/* 🌞 Highlight Box */
.core-box {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: linear-gradient(90deg, #ff4d4d, #ff914d);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  line-height: 35px;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}

/* 📱 Responsive Design */
@media (max-width: 900px) {
  .about.card {
    width: 100%;
  }

  .inners {
    flex: 1 1 100%;
  }

  .about h3 {
    font-size: 1.2rem;
  }
}















/* 🌟 Modern Responsive Title */
.title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 3rem); /* 🔥 Responsive font scaling */
  font-weight: 700;
  color: #ff4500;
  margin: clamp(20px, 5vw, 40px) auto;
  position: relative;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #ff0000, #ff7b00);
  -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 */
}

.title::after {
  content: "";
  position: absolute;
  width: clamp(60px, 15vw, 90px); /* 🔥 scales with screen size */
  height: 4px;
  background: linear-gradient(90deg, #ff0000, #ff7b00);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🧩 Optional: Add spacing adjustments for smaller screens */
@media (max-width: 600px) {
  .title {
    margin-top: 20px;
    letter-spacing: 1px;
  }
}



/* 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: #ff5722; /* 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: #bf360c;
  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: 350px;
    border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

.swiper-slide2 h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  padding: 0 30px;
  text-align: justify;
}

.swiper-slide2 p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  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: #ff5722; 
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.site-btn:hover {
  background-color: #bf360c;

}



.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: orangered;
  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 */
    object-fit: contain; 
    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: 1000px;
  margin: 0 auto;
  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 #ff5722;
  padding-bottom: 8px;
}

.news-achievements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-achievements li {
  margin: 0;
}

.news-achievements li a {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #ff5722;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-achievements li:last-child a {
  border-bottom: none;
}

.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;
}

.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;
}

.news-achievements li a:hover .thumb {
  transform: scale(1.1);
}

/* 📱 Phones */
@media (max-width: 600px) {
  .news-achievements {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .news-achievements .column {
    flex: 1 1 100%;
    padding: 15px;
  }

  .news-achievements h2 {
    font-size: 1.2em;
  }

  .news-achievements li a {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-achievements .thumb {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    margin-right: 0;
  }
}

/* 📱 Tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  .news-achievements {
    gap: 15px;
    padding: 18px;
  }

  .news-achievements .column {
    flex: 1 1 48%;
  }

  .news-achievements h2 {
    font-size: 1.3em;
  }

  .news-achievements .thumb {
    width: 90px;
    height: 90px;
  }
}






/* resources */
.resources-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 20px;
}

.resource-card {
  border: 2px solid #ff5722;
  border-radius: 10px;
  padding: 20px;
  background-color: #fffaf5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #d84315;
}

.resource-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.resource-card li {
  margin: 8px 0;
  font-size: 1rem;
}

.resource-card a {
  color: #ff5722;
  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);
}




/* programs */

.our-program-section {
    max-width: 1400px; /* Increased width */
    margin: 10px auto;
    /* padding: 30px; */
    font-family: 'Segoe UI', sans-serif;
}

.our-program-title {
    font-size: 2.5rem; /* Bigger title */
    font-weight: bold;
    color: orangered;
    text-align: center;
    /* margin-bottom: 30px; */
    margin: 0 auto;
    border-bottom: 4px solid orangered;
    display: inline-block;
    padding-bottom: 8px;
}

.our-program-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.our-program-item {
    background: #fff8f4;
    border: 1px solid #ffd2b3;
    border-left: 8px solid orangered; /* Thicker left border */
    padding: 20px; /* More padding */
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.our-program-item:hover {
    background: #ffe3d3;
    transform: translateY(-3px);
}

/* 🔹 Text styling stays consistent */
.our-program-name {
    font-size: 1.5rem; /* Larger program name */
    font-weight: bold;
    color: #cc3300;
    margin-bottom: 8px;
}

.our-program-definition {
    font-size: 1.1rem; /* Bigger paragraph text */
    color: #333;
    line-height: 1.6;
}

.no-program {
    text-align: center;
    font-style: italic;
    color: #888;
}

/* 🔹 Make entire card clickable */
.our-program-link {
    text-decoration: none;
    color: inherit;
}

.our-program-link:hover .our-program-name {
    text-decoration: underline;
    color: orangered;
}

.short-name {
    font-weight: normal;
    font-size: 1.1rem;
    color: #888;
}

.program-duration,
.entry-requirements {
    font-size: 1rem; /* Slightly bigger */
    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: orangered;
    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);
}