/* nav */

.navbar {
  display: flex;
  align-items: center;
  justify-content: center; /* pushes first logo left, second logo right */
  background: linear-gradient(135deg, #f9d65c, #f6b93b);
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
  height: 70px;
  gap: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0 70px; /* centers the nav links between logos */
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  /* color: #FFD700; */
  color: blue;

}

.logo img {
  height: 100%;
  width: 100%;
  margin-top: 8px;
}



/* ==========================
   Tablets (max-width: 1024px)
   ========================== */
@media (max-width: 1024px) {
  .navbar {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px;
    height: auto;
    z-index: 1000;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    margin: 0;
    text-align: center;
    z-index: 100;
    /* margin-bottom: 10px; */
  }

  .nav-links li a {
    font-size: 0.95rem; /* slightly smaller font */
  }

  .logo img {
    height: 50px;
  }
}

/* ==========================
   Phones (max-width: 768px)
   ========================== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    height: auto;
  }

  /* Hamburger button */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }

  .hamburger div {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
  }

  .nav-links {
    position: absolute;
    top: 365px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f9d65c, #f6b93b);
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
    display: none; /* hide by default */
    text-align: left;
    padding-left: 10px;
    /* z-index: 100; */
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    font-size: 0.9rem;
  }

  .logo img {
    height: 45px;
  }
}

/* ==========================
   Small Phones (max-width: 480px)
   ========================== */
@media (max-width: 480px) {
  .nav-links li a {
    font-size: 0.85rem;
  }

  .logo img {
    height: 40px;
  }

  .hamburger {
    width: 25px;
    height: 20px;
  }

  .hamburger div {
    height: 2.5px;
  }
}




/*endregion  */
.index--section {
  width: 100%;
  position: relative;
  z-index: 1;
}

/* .welcome-section{
  margin-top: 10px;
} */
/* Make Swiper full width and center aligned */ 
.mySwiper {
  margin-top: 70px;
  width: 100%;
  /* height: 350px; */
  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; 
  /* object-fit: contain; */
  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: #007bff; */
  color: white;
  font-weight: bold;
  transition: transform 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2);
}






#organizational-unit-data-top {
    width: 100%;
    height: auto;
    text-align: center;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#organizational-unit-data-top a {
    display: inline-block;
    padding: 1.2rem 1.5rem;
    transition: 500ms ease;
    text-decoration: none;
    color: #4d5765;
    font-size: 12px;
    font-family: "Jost", sans-serif;
    transition: background-color 0.6s ease;
}

#organizational-unit-data-top a.active,
#organizational-unit-data-top a:hover {
    background-color: #4d576547;
}

#organizational-unit-data-background {
    width: 100%;
}

/*
    +------------------------------------------------------------------------------+
    |                                                                              |
    |   +-------------------------------+ +-----+  +-----+                         |
    |   |                               | |     |  |     |                         |
    |   +-------------------------------+ +-----+  +-----+                         |
    |                                                                              |
    +------------------------------------------------------------------------------+
*/
#organizational-unit-data-bottom {
    width: 100vw;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    list-style: none;
}

/*
    +------------------------------------------------------------------------------+
    |             // HERE                                                          |
    |   +-------------------------------+ +-----+  +-----+                         |
    |   |                               | |     |  |     |                         |
    |   +-------------------------------+ +-----+  +-----+                         |
    |                                                                              |
    +------------------------------------------------------------------------------+
*/
#organizational-unit-data-bottom>li {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 10px;
}

/*
    +------------------------------------------------------------------------------+
    |                                                                              |
    |   +-------------------------------+ +-----+  +-----+                         |
    |   |           // HERE             | |     |  |     |                         |
    |   +-------------------------------+ +-----+  +-----+                         |
    |                                                                              |
    +------------------------------------------------------------------------------+
*/
#organizational-unit-data-bottom>li>a {
    text-decoration: none;
    font-weight: bolder;
    color: black;
}

/*
    +------------------------------------------------------------------------------+
    |                                         // HERE                              |
    |   +-------------------------------+ +-----+  +-----+                         |
    |   |                               | |     |  |     |                         |
    |   +-------------------------------+ +-----+  +-----+                         |
    |                                                                              |
    +------------------------------------------------------------------------------+
*/  
#organizational-unit-data-bottom-departments {
    display: flex;
    list-style: none;
    position:relative;
    align-items:center;
}

#organizational-unit-data-bottom-departments > div {
    position: absolute;
    top: 140%;
    z-index: 5;
    background-color: white;
    opacity:0%;
    pointer-events: none;
    transition: 250ms ease;
    display: flex;
    flex-direction: column;
}

#organizational-unit-data-bottom-departments > p{
    font-family: "Poppins";
}

#organizational-unit-data-bottom-departments > div.active{
    opacity:100%;
    pointer-events: all;
}

/*
    +------------------------------------------------------------------------------+
    |                                                                              |
    |   +-------------------------------+ +-----+  +-----+                         |
    |   |                               | | HERE|  | HERE|                         |
    |   +-------------------------------+ +-----+  +-----+                         |
    |                                                                              |
    +------------------------------------------------------------------------------+
*/
#organizational-unit-data-bottom-departments > div >  a {
    font-family: "Jost", sans-serif;
    text-decoration: none;
    padding: 10px 20px;
    color: #4d5765;
      background-color: white;
    display: inline-block;
    white-space:nowrap;
}

#organizational-unit-data-bottom-departments > div >  a:hover {
    color: #000;
}

@media screen and (orientation: portrait) {
    #organizational-unit-data-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #organizational-unit-data-background {
        /* position: absolute; */
        left: 0%;
        width: 210%;
        margin: unset;
        margin-left: -55%;
        /* transform: translateX(-26%); */
        overflow: hidden;
    }

    #organizational-unit-data-bottom {
        text-align: center;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    #organizational-unit-data-bottom-departments {
        gap: 0.5rem;
        flex-direction: column;
        width: 100%;
    }

    #organizational-unit-data-bottom>li {
        width: 100%;
        padding: unset;
    }

    #organizational-unit-data-bottom>li>a {
        padding: unset;
        width: 100%;
    }

    #organizational-unit-data-bottom>li>a,
    #organizational-unit-data-bottom-departments > div >  a {
        background-color: #4d576547;
        color: #2c333d;
        text-decoration: none;
        padding: 1rem;
        width: 100%;
    }
}

@media screen and (orientation: portrait) and (max-width: 250px) {
    #organizational-unit-data-top {
        grid-template-columns: 1fr;
    }

    #organizational-unit-data-top a {
        padding: 0.5rem 1.5rem;
    }
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .swiper {
    max-width: 100%;
  }
}



/* courses */

#organizational-unit-academic-programs {
    width: 70%;
    margin: 0 auto;
    list-style: none;
    padding: 5rem 0;
}

.organizational-unit-academic-programs__item {
    position: relative;
}

.organizational-unit-academic-programs__item > div {
    padding: 2rem;
    background-color: var(--white-color);
}

.organizational-unit-academic-programs__item__title {
    position: relative;
    z-index: 2;
    font-size: 1.7rem;
    font-weight: 300;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

@media screen and (orientation: portrait) {
    #organizational-unit-academic-programs {
        width: 100%;
    }

    .organizational-unit-academic-programs__item__title {
        font-size: 1.2rem;
    }
}

.organizational-unit-academic-programs__item__definition {
    position: absolute;
    z-index: 1;
    width: 100%;
    transition: 500ms ease;
    background-color: #cfe4fd;
    transform: translateY(-100%);
    height: 0%;
    opacity: 0%;
}

.organizational-unit-academic-programs__item__definition.active {
    position: relative;
    transform: translateY(0%);
    opacity: 100%;
}

/* welcome introduction */

/* welcome-introduction CBE */
.welcome-intro-cbe {
    background: linear-gradient(135deg, #f9d65c, #f6b93b); /* Soft yellow–gold gradient */
    color: #333; /* Dark text for readability */
    text-align: center;
    padding: 60px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    /* margin-bottom: 30px; */
    /* border-radius: 10px; */
}

/* Heading */
.welcome-intro-cbe h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Paragraph */
.welcome-intro-cbe p {
    max-width: 800px;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .welcome-intro-cbe {
        padding: 50px 20px;
        /* margin-bottom: 25px; */
        height: 27vh;
    }
    .welcome-intro-cbe h1 {
        font-size: 2.2rem;
    }
    .welcome-intro-cbe p {
        font-size: 1.1rem;
    }
}

/* Phones (max-width: 768px) */
@media (max-width: 768px) {
    .welcome-intro-cbe {
        padding: 40px 15px;
        margin-bottom: 20px;
    }
    .welcome-intro-cbe h1 {
        font-size: 1.8rem;
    }
    .welcome-intro-cbe p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
    .welcome-intro-cbe {
        padding: 30px 10px;
        margin-bottom: 15px;
    }
    .welcome-intro-cbe h1 {
        font-size: 1.5rem;
    }
    .welcome-intro-cbe p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}




/* vmg */
/* sticky notes about school like vision mission */
.wrp {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  /* padding: 30px; */
  gap: 30px;
  width: 100%;
  margin-top: 10px;
  /* z-index: 99; */
  /* background-color: #c70e0e; */
}

/* Academic-style sticky notes */
.wrp .about {
  position: relative;
  width: 80%;
  /* background: #fffde7;  */
   background: #fdf6e3;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: rotate(-1.5deg);
  font-family: 'Segoe UI', sans-serif;
  /* z-index: 99; */
}

.wrp .about:nth-child(even) {
  transform: rotate(1.5deg);
  /* background: #e8f0fe;  */
    background: #dce3ea; /* calm gray-blue for variation */
}

.wrp .about:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.25);
}

/* Headings */
.about h2 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
  font-size: 1.5rem;
  border-bottom: 2px dashed #999;
  padding-bottom: 8px;
}

/* Paragraphs */
.about p,
.inner p,
.inners p {
  text-align: justify;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 1rem;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

/* Inner sticky grid */
.inner-about {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  /* grid-template-rows: auto auto;  */
  gap: 15px;
  margin-top: 15px;
}

/* .inner-about {
  grid-template-columns: 1fr 1fr; 
}
.inners.vision   { grid-column: 1; grid-row: 1; }
.inners.mission  { grid-column: 1; grid-row: 2; }
.inners.coreValues { grid-column: 2; grid-row: 1 / span 2; } */

.inner-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Sticky notes inside */
.inner,
.inners {
  position: relative;
  /* background-color: #f1f8e9; soft olive green */
    background-color: #e6edea; /* sage/gray tone */
  padding: 15px;
  border-radius: 8px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  transform: rotate(-1deg);
}

.inner:nth-child(even),
.inners:nth-child(even) {
  /* background-color: #fbe9e7; muted tan or clay */
    background-color: #d7ccc8; /* muted mocha tone */
  transform: rotate(1.5deg);
}

.inner:hover,
.inners:hover {
  transform: translateY(-5px) rotate(0deg);
}

/* Section headings */
.inner h3,
.inners h3 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #37474f; /* dark slate */
  font-size: 1.1rem;
  text-decoration: underline;
}

/* Core values section */
.about .para {
  margin-bottom: 30px;
  font-size: 1rem;
  padding-bottom: 6px;
  color: #222;
}

/* Pushpin style */
.wrp .about::before,
.inner::before,
.inners::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-20deg); /* slanted pin */
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 30% 30%, #ff6666, #8b0000); /* deep red gradient */
  border-radius: 50%;
  box-shadow:
    inset -3px -3px 6px rgba(255, 255, 255, 0.4), /* glossy highlight */
    inset 2px 2px 6px rgba(0, 0, 0, 0.3),         /* inner shadow */
    0 4px 8px rgba(0, 0, 0, 0.35);                /* outer drop shadow */
  z-index: 3;
  border: 1px solid #6a0000;
}


.wrp .about::after,
.inner::after,
.inners::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%) rotate(-20deg);
  width: 3px;
  height: 12px;
  background: linear-gradient(to bottom, #aaa, #444); /* metallic shaft */
  border-radius: 1px;
  z-index: 2;
}
/* Specific height fix */
.inners.vision {
  grid-column: 1;
  grid-row: 1;
}

.inners.mission {
  grid-column: 1;
  grid-row: 2;
}

.inners.coreValues {
  grid-column: 2;
  grid-row: 1 / span 2; /* Span two rows */
}


/* Specific layout for vision/mission/core */
.inners.vision {
  grid-column: 1;
  grid-row: 1;
}
.inners.mission {
  grid-column: 1;
  grid-row: 2;
}
.inners.coreValues {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* ✅ Responsive Design */
@media screen and (max-width: 1024px) {
  /* .wrp{
    margin-top: 80px;
  } */
  .wrp .about {
    width: 100%;
    /* margin-top: 45px; */
  }
}

@media screen and (max-width: 768px) {
  .wrp {
    padding: 15px;
    gap: 20px;
  }

  .wrp .about {
    width: 100%;
    padding: 20px;
  }

  .about h2 {
    font-size: 1.3rem;
  }

  .about p {
    font-size: 0.95rem;
  }

  .inner-about {
    grid-template-columns: 1fr; /* stack inner notes */
  }

  /* ✅ Reset forced grid positions on mobile */
  .inners.vision,
  .inners.mission,
  .inners.coreValues {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .inner h3,
  .inners h3 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .about h2 {
    font-size: 1.1rem;
  }

  .about p {
    font-size: 0.9rem;
  }
}










.title {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    text-align: center;
    font-size: 50px; /* Desktop */
    margin-top: 30px;
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .title {
        font-size: 38px; /* smaller for tablets */
        margin-top: 25px;
    }
}

/* Phones (max-width: 768px) */
@media (max-width: 768px) {
    .title {
        font-size: 30px; /* smaller for phones */
        margin-top: 20px;
    }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
    .title {
        font-size: 24px; /* small screens */
        margin-top: 15px;
        padding: 0 10px; /* optional: prevent text overflow */
    }
}






/* academic courses swiper */
.academic-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 40px 300px 20px;
  /* padding: 0px 200px ; */
  /* max-width: 1450px; */
  /* background-color: red; */
  height: auto;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
}

/* Sidebar Styling */
.academic-sidebar {
  width: 350px;
}

.academic-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.academic-sidebar li {
  background-color: #f4c542; /* Soft golden yellow */
  color: #333; /* Dark text for readability */
  padding: 15px 20px;
  margin-bottom: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  /* font-weight: 500; */
}

.academic-sidebar li.active,
.academic-sidebar li:hover {
  background-color: #d4a017; /* Deeper golden for hover */
  color: white;
  font-weight: bold;
}

/* Swiper Content Styling */
.swiper.mySwiper2 {
  width: 70%;
  /* max-width: 900px; */
  height: auto;
}

.swiper-slide2 {
  /* background-color: #fffdf5; Light yellow-white background */
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Soft shadow */
}

.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; */
  padding: 0 30px;
  color: #d4a017; /* Golden heading */
  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: #d4a017; /* Golden button */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.site-btn:hover {
  background-color: #b98b0f; /* Darker gold hover */
}

.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%;
  /* margin-left: 10px; */
  /* transform: translateX(-50%); */
  z-index: 10;
  background-color: rgba(212, 160, 23, 0.9); /* semi-transparent gold */
  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;

  }

  .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;
  }
}




/* @media screen and (orientation: portrait) {
    #organizational-unit-academic-programs {
        width: 100%;
    }

    .organizational-unit-academic-programs__item__title {
        font-size: 1.2rem;
    }
} */







/* 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: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 20px;
}

.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;
}

.resource-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  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%;
  }
}



/* programs */

.our-program-section {
    max-width: 1400px;
    margin: 10px auto;
    font-family: 'Segoe UI', sans-serif;
}

.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;
}

.our-program-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.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);
}