#faculty-and-staff img {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  /* user-drag: none; */
  pointer-events: auto; /* still clickable if wrapped in links */
}

/*endregion  */
.index--section {
  width: 100%;
  position: relative;
  z-index: 1;
}

/* .welcome-section{
  margin-top: 10px;
} */ 
/* Make Swiper full width and center aligned */
.swiper {
  width: 100%;
  height: 350px;
  /* max-width: 1200px; */
  border-radius: 20px;
  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%;
  }
}

.nav-acc {
  display: flex;
  justify-content: center;
  gap: 30px;
/* background-color: #A52A2A; Brownish red */
background-color: #cc3700; /* DarkRed */

  /* background-color: #004080; */
  padding: 15px 0;
}

.nav-acc a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s, transform 0.2s;
}

.nav-acc a:hover {
  color: #ffcc00;
  transform: scale(1.05);
}


  .back-link {
    display: inline-block;
    margin: 20px 0;
    text-decoration: none;
    color: #1877f2;
    font-weight: 600;
  }






/* faculty and staff */


/* Section container */
.faculty-title {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Segoe UI', sans-serif;
}

.faculty-title h2 {
  font-size: 2.5em;
  color: #cc3300;
  margin-bottom: 10px;
}

.faculty-subtitle {
  font-size: 1.1em;
  color: #444;
  font-style: italic;
  margin-top: 0;
}

#faculty-and-staff {
  padding: 30px 20px;
  /* background: linear-gradient(to right, #fff5e5, #ffe5e5); */
   /* soft orange-red */
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

#faculty-and-staff h2 {
  font-size: 2em; 
  color: #cc3300;
  margin-bottom: 30px;
}

/* Grid layout */
#faculty-and-staff-data {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Individual faculty card */
.faculty-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease;
}

.faculty-card:hover {
  transform: translateY(-5px);
}

/* Faculty image */
.faculty-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.faculty-card:hover img {
  transform: scale(1.05);
}

/* Overlay info box */
.faculty-info {
  position: absolute;
  /* bottom: 0; */
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.4); 
  color: white;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(100%); /* hidden below */
}

/* Show when the entire card is hovered */
.faculty-card:hover .faculty-info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* slide up */
  bottom: -40%;
}


/* On hover, darken background slightly */
.faculty-card:hover .faculty-info {
  background: rgba(0, 0, 0, 0.6);
}

.faculty-name {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 5px;
}

.faculty-position {
  font-size: 1em;
  font-style: italic;
  margin: 0;
}

/* Make sure image fits nicely */
.faculty-card img {
  max-height: 320px;
  object-fit: cover;
}

.faculty-desc {
  font-size: 0.95em;
  line-height: 1.4;
}

/* Responsive for smaller devices */
@media screen and (max-width: 600px) {
  #faculty-and-staff h2 {
    font-size: 1.5em;
  }

  .faculty-info {
    padding: 15px 10px;
  }

  .faculty-name {
    font-size: 1.1em;
  }

  .faculty-desc {
    font-size: 0.9em;
  }
}








/* curriculum */

/* Layout wrapper to place sidebar and content side-by-side */
.layout-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px;
}

/* Sidebar for Curriculum */
.popup-container {
  width: 500px;
  /* background-color: #f2f2f2; */
  padding: 20px;
  /* box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05); */
}

.btn-show-image {
  /* background-color: #eaeaea; */
  border: none;
  width: 100%;
  font-size: large;
  padding: 12px 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  /* transition: background-color 0.3s ease, color 0.3s ease; */
  color: #000000; /* default font color */
  /* margin-bottom: 10px; */
  background-color: #3399ff;
}

/* Hover effect */
.btn-show-image:hover {
  color: #ffffff;            /* white font */
}


/* Also style icon inside button when hovered */
.btn-show-image:hover i {
  color: #ffffff;            /* white icon on hover */
}


/* Main BSCS content */
.bscs-section {
  /* background: linear-gradient(to bottom right, #ffe5d9, #ffe0e0); soft orange to soft red */
  padding: 40px 20px;
}

.bscs-container {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.bscs-container h2 {
  color: #cc3300; /* warm red-orange */
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

.bscs-container p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.bscs-container .intro {
  font-weight: 500;
  font-size: 1.15em;
  text-align: center;
  margin-bottom: 25px;
  color: #4a2c2a;
}

.bscs-container .highlight-call {
  font-weight: bold;
  color: #cc3300;
  text-align: center;
  font-size: 1.1em;
   background-color: #ffe5d9; /*matching the gradient tones */
  padding: 15px;
  border-left: 5px solid #cc3300;
  border-radius: 5px;
}





/* vmg */


.wrp {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  /* padding: 30px; */
  gap: 30px;
  width: 100%;
  /* margin-top: 50px; */
  /* background-color: #f5f5f5; clean light background */
}

/* Academic-style sticky notes */
.wrp .about {
  position: relative;
  /* width: 45%; */
   width: 80%;
  /* background: #fffde7;  */
   background: #ff4f4f;
  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;
}

.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: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.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;
}



.title{
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    text-align: center;
    font-size:50px;
    margin-top: 50px;
}











/* highlights */

.highlights-section {
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #ffe5d9, #ffe0e0); /* soft orange to red */
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  /* margin-bottom: 40px; */
}

.highlights-section h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #cc3300; /* Burnt orange-red */
}

.highlights-section .intro {
  text-align: center;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #4a2c2a;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Force 3 equal columns */
  justify-items: center; /* Center items in each column */
  gap: 25px;
  max-width: 1600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

.highlight-box {
  width: 100%;
  max-width: 600px; /* Adjust width to fit 3 per row nicely */
  background: #ffffff;
  border-left: 6px solid #cc3300;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.highlight-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.highlight-box h3 {
  margin-top: 0;
  color: #cc3300;
  font-size: 1.3em;
}

.highlight-box p {
  margin: 10px 0 0;
  font-size: 1.05em;
  line-height: 1.6;
}




/* 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);
}































