/*    css for main items*/
.sw-container .container {
   max-width: 1300px;
}
   .hero-section {
   position: relative;
   display: flex;
   flex-direction: column;
   min-height: 80vh;
   width: 100%;
   background-color: #fff;
   overflow: hidden
   }
   .hero-slideshow {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 1
   }
   .hero-content {
   position: relative;
   z-index: 5;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
   padding: 0 7rem 0 9em;
   width: 60%;
   min-height: 80vh;
   color: #333;
   background: linear-gradient(90deg, #fff 70%, #fffc, #fff0)
   }
   .hero-title-container {
   margin-bottom: 1.5rem
   }
   .hero-title {
   font-size: 3.5rem;
   font-weight: 700;
   margin: 0;
   line-height: 1.5;
   background: linear-gradient(45deg, #000, #474747);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
   letter-spacing: .05em
   }
   .hero-subtitle {
   font-size: 1.8rem;
   font-weight: 300;
   letter-spacing: .2em;
   margin-top: .8rem;
   color: #2a5298
   }
   .hero-description {
   font-size: 1.2rem;
   line-height: 1.6;
   max-width: 90%;
   margin-bottom: 2rem;
   text-align: justify;
   opacity: .9;
   color: #444
   }
   .hero-tagline {
   font-style: italic;
   opacity: .8;
   max-width: 90%;
   border-left: 3px solid #2a5298;
   padding-left: 1rem;
   font-size: 1rem;
   color: #555
   }
   @media only screen and (min-width: 230px) and (max-width: 991px) {
    .owl-carousel {
        margin-top: 0%!important;
    }
}
   @media (max-width: 1024px) {
   .hero-content {
   width: 70%;
   padding: 0 3rem
   }
   .hero-title {
   font-size: 3.8rem
   }
   }
   @media (max-width: 768px) {
   .hero-section {
   flex-direction: column
   }

   .hero-content {
   width: 100%;
   order: 1;
   min-height: unset;
   padding: 4rem 2rem;
/*   background: #000000bf*/
   }
   .hero-slideshow {
   position: relative;
   order: 2;
   height: 50vh
   }
   .hero-title {
   font-size: 3rem
   }
   .hero-subtitle {
   font-size: 1.4rem
   }
   .hero-description {
   font-size: 1.1rem;
   max-width: 100%
   }
   }
   @media (max-width: 480px) {

   .hero-content {
   padding: 5rem 1.5rem 0rem
   }
   .hero-title {
   font-size: 2.5rem
   }
   .hero-subtitle {
   font-size: 1.2rem
   }
   .hero-description {
   font-size: 1rem
   }
   .hero-slideshow {
   height: 40vh
   }
   }
   .slide-image {
   width: 100%;
   height: 100%;
   object-fit: cover
   }
   .image-overlay {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   background: linear-gradient(180deg, #0006, #0009)
   }
   .main-content {
   max-width: 1360px;
   margin: 0 auto;
   padding: 4rem 1rem;
   background-color: var(--bg-color)
   }
   .program-header {
   margin-bottom: 6rem;
   text-align: center
   }
   .program-title {
   font-size: 3rem;
   color: var(--primary-color);
   margin-bottom: 1rem;
   opacity: 0;
   animation: fadeUp 1s ease forwards;
   font-weight: 500;
   letter-spacing: -.03em;
   line-height: 1.1;
   position: relative;
   display: inline-block;
   text-shadow: 1px 1px 0px rgba(0, 0, 0, .03)
   }
   .program-connection-diagram {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0;
   margin-top: 3rem;
   position: relative;
   padding: 3rem 0;
   max-width: 1100px;
   margin-left: auto;
   margin-right: auto
   }
   .connection-node {
   padding: 1.2rem 1.5rem;
   border-radius: 8px;
   background-color: #f8f8f8;
   color: var(--text-color);
   font-weight: 500;
   text-align: center;
   min-width: 220px;
   box-shadow: 0 4px 20px #0000000d;
   border: 1px solid rgba(0, 0, 0, .08);
   z-index: 3;
   position: relative;
   transition: transform .4s ease, box-shadow .4s ease
   }
   .connection-node:hover {
   transform: translateY(-5px);
   color: var(--primary-color);
   box-shadow: 0 8px 25px #0000001a
   }
   .main-node {
   color: var(--primary-color);
   font-size: 1.6rem;
   font-weight: 200;
   letter-spacing: .01em;
   padding: 1.2rem 2rem;
   margin-bottom: 0;
   background-color: #f8f8f8;
   z-index: 4
   }
   .main-node i {
   font-size: 2rem;
   margin-bottom: .5rem;
   color: #333;
   display: block
   }
   .sub-nodes {
   display: flex;
   gap: 2rem;
   justify-content: space-between;
   margin: 0;
   position: relative;
   z-index: 3;
   width: 100%;
   padding: 0 1rem
   }
   .sub-node {
   display: flex;
   flex-direction: column;
   align-items: center;
   font-size: 1.2rem;
   position: relative;
   padding: 1.2rem 1.5rem;
   transition: all .3s ease;
   flex: 1;
   max-width: 250px
   }
   .sub-node i {
   font-size: 1.8rem;
   margin-bottom: .5rem;
   color: #555
   }
   .sub-node span {
   display: block;
   font-size: .85rem;
   font-weight: 400;
   color: var(--text-light);
   margin-top: .3rem;
   letter-spacing: .03em
   }
   .service-node {
   color: var(--primary-color);
   font-weight: 500;
   padding: 1.2rem 1.5rem;
   margin-top: 0;
   background-color: #f8f8f8;
   z-index: 3
   }
   .service-node i {
   font-size: 1.8rem;
   margin-bottom: .5rem;
   color: #333;
   display: block
   }
   .service-node:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px #00000014
   }
   .connection-lines {
   position: relative;
   width: 2px;
   height: 60px;
   margin: 0 auto;
   background-color: #555
   }
   .connection-lines.reverse {
   height: 60px;
   background-color: #555
   }
   .line-container {
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   position: relative
   }
   .connection-line {
   width: 2px;
   height: 0%;
   background-color: #555;
   border-radius: 2px;
   z-index: 1;
   position: absolute;
   top: 0;
   left: 0
   }
   .horizontal-line-container {
   position: relative;
   width: 100%;
   height: 4px;
   margin: 1rem 0;
   overflow: visible
   }
   .horizontal-lines {
   display: flex;
   width: 100%;
   justify-content: space-between;
   position: relative;
   height: 4px
   }
   .horizontal-line {
   height: 4px;
   background-color: #555;
   width: 100%;
   transform-origin: center;
   transform: scaleX(0);
   position: absolute;
   top: 0;
   left: 0;
   border-radius: 2px
   }
   .program-description {
   text-align: center;
   margin-bottom: 5rem;
   padding: 4rem 1rem;
   background-color: var(--card-bg);
   border-radius: 0
   }
   .program-description h2 {
   color: var(--primary-color);
   margin-bottom: 2rem;
   font-size: 2rem;
   font-weight: var(--heading-font-weight);
   position: relative;
   display: inline-block;
   letter-spacing: -.01em
   }
   .program-description h2:after {
   content: "";
   position: absolute;
   width: 30px;
   height: 2px;
   background-color: var(--primary-color);
   bottom: -10px;
   left: 50%;
   transform: translate(-50%)
   }
   .program-description p {
   max-width: 100%;
   margin: 0 auto;
   font-size: 1.1rem;
   text-align: justify;
   color: var(--text-light);
   line-height: 1.8
   }
   .video-section {
   position: relative;
   max-width: 1280px;
   margin: 4rem auto;
   padding: 3rem 1rem;
   text-align: center;
   overflow: hidden
   }
   .video-section-heading {
   color: #333;
   font-size: 2.2rem;
   font-weight: 400;
   margin-bottom: 2rem;
   letter-spacing: .08em;
   position: relative;
   display: inline-block
   }
   .video-section-heading:after {
   content: "";
   position: absolute;
   width: 50px;
   height: 2px;
   background-color: var(--primary-color);
   bottom: -15px;
   left: 50%;
   transform: translate(-50%)
   }
   .video-section:before {
   content: "";
   position: absolute;
   top: -20px;
   left: 50%;
   transform: translate(-50%);
   width: 50px;
   height: 1px;
   background-color: #0000000d
   }
   .video-section-background {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #000000b3;
   backdrop-filter: blur(5px);
   -webkit-backdrop-filter: blur(5px);
   z-index: 9;
   opacity: 0;
   visibility: hidden;
   transition: opacity .4s ease, visibility .4s ease;
   pointer-events: none
   }
   .focused~.video-section-background {
   opacity: 1;
   visibility: visible
   }
   .video-grid {
   display: grid;
   grid-template-columns: repeat(8, 1fr);
   grid-template-rows: auto auto;
   grid-template-areas: "large-item large-item large-item large-item item-1 item-1 item-2 item-2""large-item large-item large-item large-item item-3 item-3 item-4 item-4""item-5 item-5 item-6 item-6 item-7 item-7 item-8 item-8";
   gap: .8rem;
   margin: 1rem auto;
   max-width: 1200px;
   position: relative;
   z-index: 10
   }
   .video-container {
   position: relative;
   border-radius: 6px;
   overflow: hidden;
   cursor: pointer;
   background-color: #000;
   aspect-ratio: 16/9;
   transition: transform .3s ease, box-shadow .3s ease;
   box-shadow: 0 6px 12px #0000001a
   }
   .video-container.large-item {
   grid-area: large-item;
   aspect-ratio: 16 / 12
   }
   .video-container.item-1 {
   grid-area: item-1;
   aspect-ratio: 3 / 4
   }
   .video-container.item-2 {
   grid-area: item-2;
   aspect-ratio: 3 / 4
   }
   .video-container.item-3 {
   grid-area: item-3;
   aspect-ratio: 4 / 3
   }
   .video-container.item-4 {
   grid-area: item-4;
   aspect-ratio: 4 / 3
   }
   .video-container.item-5 {
   grid-area: item-5;
   aspect-ratio: 16 / 9
   }
   .video-container.item-6 {
   grid-area: item-6;
   aspect-ratio: 16 / 9
   }
   .video-container.item-7 {
   grid-area: item-7;
   aspect-ratio: 16 / 9
   }
   .video-container.item-8 {
   grid-area: item-8;
   aspect-ratio: 16 / 9
   }
   .video-container:hover {
   transform: translateY(-8px);
   box-shadow: 0 15px 35px #0000001f
   }
   .main-video {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 5s ease, filter .4s ease
   }
   .video-container:hover .main-video {
   transform: scale(1.05);
   filter: brightness(1.05)
   }
   .video-overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   padding: 2.5rem 1.8rem 1.8rem;
   background: linear-gradient(to top, #000c, #0006, #0000);
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   opacity: 0;
   transition: opacity .4s ease, transform .4s ease;
   transform: translateY(10px);
   z-index: 2
   }
   .video-container:hover .video-overlay,
   .video-container.focused .video-overlay,
   .video-container:focus-within .video-overlay {
   opacity: 1;
   transform: translateY(0)
   }
   .video-grid .video-container {
   transform-origin: center;
   transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), box-shadow .4s ease
   }
   .video-grid .video-container:hover {
   transform: translateY(-10px) scale(1.05);
   z-index: 30
   }
   .video-title {
   color: #fff;
   font-size: 1.5rem;
   font-weight: 300;
   letter-spacing: .05em;
   text-shadow: 0 2px 4px rgba(0, 0, 0, .4);
   position: relative;
   padding-left: 12px
   }
   .video-title:before {
   content: "";
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 3px;
   height: 70%;
   background-color: #fff;
   border-radius: 2px
   }
   .mute-button {
   background: #fff3;
   border: none;
   color: #fff;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 2px 10px #0003;
   backdrop-filter: blur(5px);
   -webkit-backdrop-filter: blur(5px);
   transition: all .3s ease;
   border: 1px solid rgba(255, 255, 255, .1);
   position: relative
   }
   .mute-button:after {
   content: "";
   position: absolute;
   top: -5px;
   left: -5px;
   right: -5px;
   bottom: -5px;
   border-radius: 50%;
   background: transparent;
   z-index: -1;
   transition: background .3s ease
   }
   .mute-button:hover {
   background: #ffffff4d;
   box-shadow: 0 4px 12px #0000004d
   }
   .mute-button:focus {
   outline: none
   }
   .mute-button:focus:after {
   background: #ffffff1a
   }
   .mute-button i {
   font-size: 1.2rem;
   transition: transform .3s ease
   }
   .mute-button:hover i {
   transform: scale(1.1)
   }
   @keyframes pulse {
   0% {
   opacity: .6
   }
   50% {
   opacity: .8
   }
   to {
   opacity: .6
   }
   }
   .video-container.loading:after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #000;
   animation: pulse 1.5s infinite;
   z-index: 0
   }
   .loading-text {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   color: #fff;
   font-size: .9rem;
   font-weight: 300;
   letter-spacing: .1em;
   text-transform: uppercase;
   z-index: 1;
   opacity: .7
   }
   .sr-only {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border-width: 0
   }
   .projects-container {
   margin-top: 4rem
   }
   .project-nav-bar {
   display: flex;
   justify-content: center;
   gap: 3rem;
   margin-bottom: 3rem
   }
   .nav-item {
   padding: .8rem 0;
   background-color: transparent;
   color: var(--text-light);
   border-radius: 0;
   cursor: pointer;
   transition: all .3s ease;
   font-weight: 500;
   opacity: 0;
   animation: fadeIn .5s ease forwards;
   animation-delay: 1.5s;
   letter-spacing: .01em;
   position: relative;
   border-bottom: 1px solid transparent
   }
   .nav-item:nth-child(2) {
   animation-delay: 1.7s
   }
   .nav-item:nth-child(3) {
   animation-delay: 1.9s
   }
   .nav-item.active,
   .nav-item:hover {
   color: var(--primary-color);
   border-bottom: 1px solid var(--primary-color)
   }
   .project-section {
   display: none;
   padding: 4rem 3rem;
   border-radius: 0
   }
   .project-section.active {
   display: block
   }
   .project-section h2 {
   color: var(--primary-color);
   margin-bottom: 1.5rem;
   font-size: 1.8rem;
   font-weight: 600;
   letter-spacing: -.01em;
   position: relative;
   display: inline-block
   }
   .project-section h2:after {
   content: "";
   position: absolute;
   width: 30px;
   height: 2px;
   background-color: var(--primary-color);
   bottom: -8px;
   left: 0
   }
   .project-section p {
   margin-bottom: 2.5rem;
   font-size: 1.05rem;
   line-height: 1.8;
   color: var(--text-light);
   max-width: 100%
   }
   .events-container {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
   gap: 2.5rem;
   margin-top: 3rem
   }
   .event-card {
   background-color: #fff;
   border-radius: 12px;
   padding: 0;
   box-shadow: 0 6px 15px #00000008;
   transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
   opacity: 0;
   transform: translateY(20px);
   border: 1px solid rgba(0, 0, 0, .05);
   overflow: hidden;
   height: 100%;
   display: flex;
   flex-direction: column;
   transform-origin: center bottom
   }
   .project-section.active .event-card {
   animation: fadeUp .6s ease forwards;
   transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), box-shadow .4s ease, z-index .1s
   }
   .project-section.active .event-card:nth-child(1) {
   animation-delay: .2s
   }
   .project-section.active .event-card:nth-child(2) {
   animation-delay: .4s
   }
   .project-section.active .event-card:nth-child(3) {
   animation-delay: .6s
   }
   .event-card:hover {
   transform: translateY(-15px) scale(1.05);
   box-shadow: 0 20px 30px #0000001a;
   z-index: 10
   }
   .event-card-image {
   width: 100%;
   height: 200px;
   object-fit: cover;
   border-radius: 12px 12px 0 0;
   background-color: #f5f5f5;
   transition: all .4s ease
   }
   .event-card:hover .event-card-image {
   transform: scale(1.05)
   }
   .event-card-content {
   padding: 2rem;
   flex-grow: 1;
   display: flex;
   flex-direction: column
   }
   .event-date {
   display: inline-block;
   padding: .3rem 0;
   color: var(--text-light);
   font-size: .85rem;
   margin-bottom: 1.5rem;
   font-weight: 500;
   letter-spacing: .02em;
   border-bottom: 1px solid var(--line-color)
   }
   .event-card h3 {
   color: var(--primary-color);
   margin-bottom: 1rem;
   font-size: 1.3rem;
   font-weight: 600;
   letter-spacing: -.01em;
   line-height: 1.4
   }
   .event-card p {
   font-size: .95rem;
   margin-bottom: 0;
   color: var(--text-light);
   line-height: 1.7
   }
   .content-wrapper {
   opacity: 0;
   transform: translateY(20px);
   transition: opacity .8s ease, transform .8s ease
   }
   .content-wrapper h2 {
   font-weight: 500
   }
   .content-wrapper.visible {
   opacity: 1;
   transform: translateY(0)
   }
   @keyframes fadeIn {
   0% {
   opacity: 0
   }
   to {
   opacity: 1
   }
   }
   @keyframes fadeUp {
   0% {
   opacity: 0;
   transform: translateY(20px)
   }
   to {
   opacity: 1;
   transform: translateY(0)
   }
   }
   .d-md-none {
   display: none
   }
   @media (max-width: 768px) {
   .video-section {
   padding: 2rem .5rem;
   margin: 2rem auto
   }
   .video-grid {
   display: flex;
   flex-wrap: nowrap;
   overflow-x: auto;
   grid-template-columns: none;
   grid-template-areas: none;
   gap: .5rem;
   padding: .5rem;
   -webkit-overflow-scrolling: touch;
   scroll-snap-type: x mandatory;
   scrollbar-width: none
   }
   .video-grid::-webkit-scrollbar {
   display: none
   }
   .video-container {
   flex: 0 0 85%;
   margin-right: .5rem;
   scroll-snap-align: start;
   max-width: none;
   min-width: 250px;
   aspect-ratio: 16/9
   }
   .video-container.large-item {
   flex: 0 0 90%
   }
   .video-container.item-1,
   .video-container.item-2,
   .video-container.item-3,
   .video-container.item-4,
   .video-container.item-5,
   .video-container.item-6,
   .video-container.item-7,
   .video-container.item-8 {
   grid-column: auto;
   grid-row: auto
   }
   }
   @media (max-width: 480px) {
   .video-section {
   padding: 1.5rem 0
   }
   .video-grid {
   padding: 0 .5rem
   }
   .video-container {
   flex: 0 0 80%;
   min-width: 220px
   }
   .video-section-heading {
   font-size: 1.8rem;
   margin-bottom: 1.5rem
   }
   }
   @media (max-width: 768px) {
   .video-section:after {
   content: "";
   position: absolute;
   right: 10px;
   top: 50%;
   width: 30px;
   height: 30px;
   background: #fffc;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 2px 6px #0003;
   z-index: 20;
   animation: pulseRight 1.5s infinite;
   opacity: .7;
   pointer-events: none
   }
   .video-section:after {
   content: "→";
   font-size: 16px;
   font-weight: 700;
   color: #333
   }
   @keyframes pulseRight {
   0% {
   transform: translate(0) translateY(-50%);
   opacity: .7
   }
   50% {
   transform: translate(5px) translateY(-50%);
   opacity: 1
   }
   to {
   transform: translate(0) translateY(-50%);
   opacity: .7
   }
   }
   }
   @media (min-width: 769px) {
   .sub-nodes:before {
   content: "";
   position: absolute;
   height: 4px;
   background-color: #555;
   top: 50%;
   left: 5%;
   right: 5%;
   transform: translateY(-50%) scaleX(0);
   z-index: 1;
   border-radius: 2px;
   transform-origin: center;
   animation: lineGrow 1.5s ease-in-out forwards;
   animation-delay: 1.5s
   }
   @keyframes lineGrow {
   0% {
   transform: translateY(-50%) scaleX(0)
   }
   to {
   transform: translateY(-50%) scaleX(1)
   }
   }
   .connection-line,
   .horizontal-line-container,
   .mobile-node-space {
   display: none
   }
   }
   @media (max-width: 768px) {
   .sub-nodes:before {
   display: none
   }
   }
   .program-cards-section {
   padding: 0 1rem 2rem;
   margin-bottom: 3rem;
   position: relative;
   z-index: 1
   }
   .section-heading {
   margin-bottom: 3rem;
   font-weight: 500;
   color: var(--primary-color);
   font-size: 2.5rem;
   position: relative;
   display: block;
   width: 100%;
   max-width: 100%;
   text-align: center
   }
   .section-heading:after {
   content: "";
   position: absolute;
   width: 60px;
   height: 3px;
   background-color: var(--primary-color);
   bottom: -15px;
   left: 50%;
   transform: translate(-50%)
   }
   .program-card {
   background-color: #fff;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 10px 25px #0000000d;
   transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
   cursor: pointer;
   height: 100%;
   display: flex;
   flex-direction: column;
   border: 1px solid rgba(0, 0, 0, .05);
   min-width: 260px;
   flex: 1
   }
   .program-card-image-container {
   position: relative;
   width: 100%;
   height: 200px;
   overflow: hidden
   }
   .program-card-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .5s ease
   }
   .program-card:hover .program-card-image {
   transform: scale(1.1)
   }
   .program-card-content {
   padding: 1.8rem;
   flex-grow: 1;
   display: flex;
   flex-direction: column
   }
   .program-card-title {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: .5rem;
   color: var(--primary-color)
   }
   .program-card-subtitle {
   font-size: 1.1rem;
   font-weight: 500;
   margin-bottom: 1rem;
   color: var(--text-light);
   opacity: .9
   }
   .program-card-description {
   font-size: .95rem;
   line-height: 1.6;
   text-align: justify;
   margin-bottom: 1.5rem;
   color: var(--text-light);
   flex-grow: 1
   }
   .program-card-date {
   font-size: .85rem;
   font-weight: 500;
   color: var(--text-light);
   padding-top: 1rem;
   border-top: 1px solid rgba(0, 0, 0, .08)
   }
   @media (max-width: 992px) {
   .program-cards-container {
   grid-template-columns: repeat(2, 1fr);
   gap: 1.2rem
   }
   }
   .modal-container {
   position: fixed;
   width: 100vw;
   height: 100vh;
   top: 0;
   left: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 2000;
   pointer-events: none
   }
   .modal-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-color: #000000b3;
   z-index: 2000;
   -webkit-backdrop-filter: blur(5px);
   backdrop-filter: blur(5px);
   pointer-events: auto
   }
   .program-modal {
   position: fixed !important;
   top: 50% !important;
   left: 50% !important;
   transform: translate(-50%, -50%) !important;
   background-color: #fff;
   border-radius: 15px;
   padding: 3rem;
   width: 95%;
   max-width: 1100px;
   max-height: 85vh;
   overflow-y: auto;
   z-index: 2001;
   box-shadow: 0 20px 50px #0003;
   margin: 0 !important;
   display: block;
   pointer-events: auto;
   scrollbar-width: thin;
   scrollbar-color: rgba(0, 0, 0, .2) transparent
   }
   .program-modal::-webkit-scrollbar {
   width: 8px
   }
   .program-modal::-webkit-scrollbar-track {
   background: transparent
   }
   .program-modal::-webkit-scrollbar-thumb {
   background-color: #0003;
   border-radius: 10px;
   border: 2px solid transparent
   }
   .modal-close-btn {
   position: absolute;
   top: 1.5rem;
   right: 1.5rem;
   background: none;
   border: none;
   font-size: 1.5rem;
   color: var(--text-light);
   cursor: pointer;
   transition: all .2s ease;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center
   }
   .modal-close-btn:hover {
   background-color: #0000000d;
   color: var(--primary-color);
   transform: rotate(90deg)
   }
   .program-modal-header {
   margin-bottom: 2.5rem;
   border-bottom: 1px solid rgba(0, 0, 0, .1);
   padding-bottom: 1.5rem
   }
   .program-modal-title {
   font-size: 2.2rem;
   font-weight: 600;
   color: var(--primary-color);
   margin-bottom: .5rem
   }
   .program-modal-subtitle {
   font-size: 1.4rem;
   font-weight: 500;
   color: var(--text-light);
   margin-bottom: 1.5rem
   }
   .program-modal-description {
   font-size: 1rem;
   line-height: 1.7;
   margin-bottom: 1.5rem;
   color: var(--text-light)
   }
   .program-modal-date {
   font-size: .9rem;
   font-weight: 500;
   color: var(--text-light)
   }
   .program-modal-events {
   margin-top: 2rem
   }
   .events-title {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 0.5rem;
   color: var(--primary-color);
   position: relative;
   display: inline-block
   }
   .events-title:after {
   content: "";
   position: absolute;
   width: 40px;
   height: 2px;
   background-color: var(--primary-color);
   bottom: -10px;
   left: 0
   }
   .modal-events-container {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 2rem
   }
   .modal-event-card {
   background-color: #f9f9f9;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 5px 15px #00000008;
   transition: all .3s ease;
   border: 1px solid rgba(0, 0, 0, .05);
   display: flex;
   flex-direction: column;
   height: 100%
   }
   .modal-event-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 20px #00000014
   }
   .modal-event-image {
   width: 100%;
   height: 200px;
   object-fit: cover
   }
   .modal-event-content {
   padding: 1.5rem;
   position: relative;
   display: flex;
   flex-direction: column;
   flex-grow: 1
   }
   .modal-event-date {
   font-size: .85rem;
   color: var(--text-light);
   margin-bottom: .8rem;
   font-weight: 500
   }
   .modal-event-title {
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--primary-color);
   margin-bottom: .8rem;
   line-height: 1.4
   }
   .modal-event-description {
   font-size: .9rem;
   line-height: 1.6;
   color: var(--text-light);
   margin-bottom: 3.5rem
   }
   .modal-body .report-link-button {
   display: inline-flex;
   align-items: center;
   gap: .5rem;
   background-color: #2a5298;
   color: #fff;
   padding: .6rem 1rem;
   border-radius: 6px;
   text-decoration: none;
   font-size: .9rem;
   font-weight: 500;
   transition: all .3s ease;
   box-shadow: 0 2px 5px #0000001a;
   border: none;
   cursor: pointer;
   position: absolute;
   bottom: 1.5rem;
   left: 1.5rem;
   z-index: 10
   }
   .report-link-button i {
   font-size: 1rem
   }
   .report-link-button:hover {
   background-color: #9bc1ff;
   transform: translateY(-2px);
   box-shadow: 0 4px 8px #00000026
   }
   .report-link-button:active {
   transform: translateY(0);
   box-shadow: 0 2px 3px #0000001a
   }
   @media (max-width: 1400px) {
   .main-content {
   max-width: 1360px
   }
   }
   @media (max-width: 992px) {
   .main-content {
   max-width: 1360px
   }
   }
   @media (max-width: 768px) {
   .main-content {
   max-width: 1360px;
   padding: 2rem 0rem
   }
   .program-cards-container {
   grid-template-columns: 1fr;
   gap: 2rem
   }
   .program-card {
   min-width: 300px
   }
   .program-modal {
   width: 95%;
   padding: 2rem 1.5rem;
   max-height: 90vh
   }
   .program-modal-title {
   font-size: 1.8rem
   }
   .program-modal-subtitle {
   font-size: 1.2rem
   }
   .modal-events-container {
   grid-template-columns: 1fr
   }
   .section-heading {
   font-size: 2rem
   }
   .program-card-title {
   font-size: 1.3rem
   }
   }
   @media (max-width: 480px) {
   .program-cards-container {
   grid-template-columns: 1fr;
   gap: 1.5rem
   }
   .program-card {
   min-width: 260px
   }
   .program-modal {
   padding: 1.5rem 1rem
   }
   .program-modal-title {
   font-size: 1.5rem
   }
   .section-heading {
   font-size: 1.6rem
   }
   }
   .media-modal-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-color: #000000d9;
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   z-index: 9999;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   visibility: hidden;
   transition: opacity .4s ease, visibility .4s ease
   }
   .media-modal-overlay.active {
   opacity: 1;
   visibility: visible
   }
   .media-modal-content {
   background: #fff;
   border-radius: 8px;
   box-shadow: 0 5px 30px #0000004d;
   max-width: 90%;
   max-height: 90vh;
   overflow: auto;
   position: relative;
   transition: all .3s ease;
   opacity: 0;
   transform: scale(.9);
   display: flex;
   justify-content: center;
   align-items: center
   }
   .media-modal-overlay.active .media-modal-content {
   opacity: 1;
   transform: scale(1)
   }
   .media-modal-content img,
   .media-modal-content video {
   width: 100%;
   max-height: 90vh;
   object-fit: contain;
   display: block
   }
   .media-modal-close {
   position: absolute;
   top: 20px;
   right: 20px;
   width: 44px;
   height: 44px;
   background-color: #ffffff26;
   border: none;
   color: #fff;
   font-size: 1.5rem;
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 10001;
   backdrop-filter: blur(5px);
   -webkit-backdrop-filter: blur(5px);
   box-shadow: 0 5px 15px #0003;
   border: 1px solid rgba(255, 255, 255, .1);
   transition: all .3s ease
   }
   .media-modal-close:hover {
   background-color: #ffffff40;
   transform: rotate(90deg)
   }
   @media (max-width: 1200px) {
   .video-grid {
   grid-template-columns: repeat(6, 1fr);
   grid-template-areas: "large-item large-item large-item large-item item-1 item-1""large-item large-item large-item large-item item-2 item-2""item-3 item-3 item-4 item-4 item-5 item-5""item-6 item-6 item-7 item-7 item-8 item-8"
   }
   .video-container.large-item {
   aspect-ratio: 16 / 10
   }
   }
   @media (min-width: 769px) and (max-width: 992px) {
   .video-grid {
   grid-template-columns: repeat(4, 1fr);
   grid-template-areas: "large-item large-item large-item large-item""item-1 item-1 item-2 item-2""item-3 item-3 item-4 item-4""item-5 item-5 item-6 item-6""item-7 item-7 item-8 item-8";
   gap: 12px
   }
   }
   @media (max-width: 768px) {
   .video-section {
   padding: 0 1.5rem;
   margin-bottom: 3rem;
   max-width: 90%
   }
   .video-grid {
   grid-template-columns: 1fr 1fr;
   grid-template-areas: "large-item large-item""item-1 item-2""item-3 item-4";
   gap: 10px
   }
   .media-modal-close {
   top: 15px;
   right: 15px;
   width: 40px;
   height: 40px;
   font-size: 1.2rem
   }
   }
   @media (max-width: 480px) {
   .video-section {
   padding: 0 1rem;
   margin-bottom: 2.5rem;
   max-width: 100%
   }
   .video-grid {
   grid-template-columns: 1fr;
   grid-template-areas: "large-item""item-1""item-2""item-3""item-4";
   gap: 10px
   }
   .video-container.large-item,
   .video-container.item-1,
   .video-container.item-2,
   .video-container.item-3,
   .video-container.item-4 {
   aspect-ratio: 16 / 9
   }
   }
   @media (max-width: 1200px) {
   .program-cards-container {
   grid-template-columns: repeat(2, 1fr)
   }
   .program-card {
   min-width: 280px
   }
   }
   @media (max-width: 992px) {
   .program-cards-container {
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem
   }
   }
   @media (max-width: 768px) {
   .program-cards-container {
   grid-template-columns: 1fr;
   gap: 1.5rem
   }
   .program-card {
   min-width: 100%
   }
   .video-section {
   padding: 0;
   margin-bottom: 3rem
   }
   .video-grid {
   grid-template-columns: 1fr 1fr;
   grid-template-areas: "large-item large-item""item-1 item-2""item-3 item-4";
   gap: 6px
   }
   }
   @media (max-width: 480px) {
   .video-grid {
   grid-template-columns: 1fr;
   grid-template-areas: "large-item""item-1""item-2""item-3""item-4"
   }
   }
   .section-heading,
   .program-title,
   .program-subtitle,
   .video-section-heading,
   .program-description h2 {
   width: 100%;
   max-width: 100%
   }
   .program-subtitle {
   font-size: 1.2rem;
   color: var(--text-light);
   max-width: 800px;
   margin: 0 auto 4rem;
   text-align: justify;
   font-weight: 400;
   line-height: 1.6;
   letter-spacing: .01em
   }
   .photo-slideshow-container {
   width: 100%;
   position: relative;
   overflow: hidden;
   border-radius: 8px;
   box-shadow: 0 4px 12px #0000001a;
   margin: 2rem auto;
   max-width: 900px;
   aspect-ratio: 16/9
   }
   .slideshow-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block
   }
   .slideshow-indicators {
   position: absolute;
   bottom: 20px;
   width: 100%;
   display: flex;
   justify-content: center;
   gap: 10px;
   z-index: 10
   }
   .indicator {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background-color: #ffffff80;
   cursor: pointer;
   transition: background-color .3s ease
   }
   .indicator.active {
   background-color: #fff;
   transform: scale(1.2)
   }
   .program-cards-container {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
   margin: 0rem auto;
   max-width: 1300px;
   padding: .5rem
   }
   .program-card {
   min-width: 260px
   }
   @media (max-width: 992px) {
   .program-cards-container {
   grid-template-columns: repeat(2, 1fr);
   gap: 1.2rem
   }
   .photo-slideshow-container {
   max-width: 90%
   }
   }
   @media (max-width: 576px) {
   .program-cards-container {
   grid-template-columns: 1fr;
   gap: 1rem
   }
   }
   .footer {
   color: #fff;
   width: 100%;
   margin-top: 6rem;
   position: relative;
   overflow: hidden;
   background: linear-gradient(135deg, #1a1a1a, #333)
   }
   .footer-wave-container {
   position: absolute;
   top: -140px;
   left: 0;
   width: 100%;
   height: 140px;
   overflow: hidden;
   line-height: 0;
   transform: rotate(180deg)
   }
   .footer-wave {
   width: 100%;
   height: 100%;
   fill: #1a1a1a
   }
   .footer-content {
   display: flex;
   justify-content: space-between;
   max-width: 1400px;
   margin: 0 auto;
   padding: 5rem 3rem 3rem;
   flex-wrap: wrap;
   gap: 3rem;
   position: relative;
   z-index: 1
   }
   .footer-logo-section {
   flex: 1;
   min-width: 250px;
   display: flex;
   flex-direction: column;
   align-items: flex-start
   }
   .footer-logo {
   width: 100%;
   max-width: 180px;
   filter: brightness(1.2);
   margin-bottom: 1.5rem
   }
   .footer-tagline {
   font-size: 1rem;
   color: #fffc;
   margin: 0;
   font-weight: 300;
   letter-spacing: .02em;
   line-height: 1.6
   }
   .footer-contacts-section {
   flex: 2;
   min-width: 300px
   }
   .footer-address-section {
   flex: 1.5;
   min-width: 250px
   }
   .footer-heading {
   font-size: 1.5rem;
   margin-bottom: 1.8rem;
   font-weight: 400;
   position: relative;
   display: inline-block;
   letter-spacing: .03em;
   color: #fff
   }
   .footer-heading:after {
   content: "";
   position: absolute;
   bottom: -8px;
   left: 0;
   width: 40px;
   height: 2px;
   background: linear-gradient(90deg, #fff, #ffffff80)
   }
   .contact-cards-container {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   width: 100%;
   max-width: 1300px;
   margin: 0 auto
   }
   .contact-card {
   background-color: #fff;
   border-radius: .75rem;
   overflow: hidden;
   box-shadow: 0 4px 12px #0000000f;
   transition: transform .3s ease, box-shadow .3s ease;
   display: flex;
   flex-direction: row;
   align-items: center;
   padding: .75rem;
   opacity: 0;
   transform: translateY(20px);
   animation: slideIn .5s forwards
   }
   .contact-card:hover {
   transform: translateY(-3px);
   box-shadow: 0 6px 16px #0000001a
   }
   .contact-image-container {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   overflow: hidden;
   flex-shrink: 0;
   border: 3px solid #f3f4f6
   }
   @media (max-width: 768px) {
   .contact-image-container {
   width: 60px;
   height: 60px
   }
   .contact-name {
   font-size: 1rem
   }
   .contact-social-link.email {
   width: 36px;
   height: 36px
   }
   }
   @media (max-width: 480px) {
   .contact-card {
   flex-direction: column;
   padding: 1rem;
   text-align: center
   }
   .contact-image-container {
   margin-bottom: .75rem
   }
   .contact-content {
   flex-direction: column;
   gap: .75rem;
   padding: 0
   }
   }
   .contact-title {
   font-size: 1rem;
   font-weight: 400;
   margin-bottom: 1.5rem;
   color: var(--text-light);
   padding-bottom: 1rem;
   position: relative
   }
   .contact-title:after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translate(-50%);
   width: 40px;
   height: 2px;
   background-color: var(--primary-color)
   }
   .contact-social-link.facebook {
   background-color: #3b5998
   }
   .contact-social-link.instagram {
   background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
   }
   @media (max-width: 1200px) {
   .contact-cards-container {
   grid-template-columns: repeat(5, 1fr);
   gap: 1.2rem;
   padding: 0 1.5rem
   }
   .contact-image-container {
   height: 160px
   }
   }
   @media (max-width: 992px) {
   .contact-cards-container {
   grid-template-columns: repeat(3, 1fr);
   gap: 1rem
   }
   }
   @media (max-width: 768px) {
   .contact-cards-container {
   grid-template-columns: repeat(2, 1fr);
   padding: 0 1rem;
   gap: 1rem
   }
   .contact-image-container {
   height: 180px
   }
   }
   .media-gallery-section {
   max-width: 100%;
   padding: 1rem 0;
   margin: 0rem auto 2rem;
   position: relative;
   width: 100%
   }
   .media-gallery-heading {
   margin-bottom: 3rem;
   font-size: 2.5rem;
   font-weight: 500
   }
   .media-gallery-container {
   display: flex;
   flex-direction: row;
   max-width: 1400px;
   width: 95%;
   margin: 0 auto;
   background-color: #fff;
   border-radius: 12px;
   box-shadow: 0 8px 30px #0000000f;
   overflow: hidden;
   min-height: 550px
   }
   .media-tabs {
   width: 20%;
   min-width: 200px;
   padding: 2rem 0;
   background-color: #f5f5f5;
   border-right: 1px solid rgba(0, 0, 0, .08);
   display: flex;
   flex-direction: column
   }
   .media-tab {
   padding: 1rem 1.5rem;
   font-size: 1rem;
   font-weight: 500;
   text-align: left;
   background: transparent;
   border: none;
   cursor: pointer;
   transition: all .3s ease;
   border-left: 3px solid transparent;
   color: var(--text-light)
   }
   .media-tab.active {
   background-color: #fff;
   color: var(--primary-color);
   font-weight: 600;
   border-left: 3px solid var(--primary-color)
   }
   .media-tab:hover:not(.active) {
   background-color: #0000000d
   }
   .media-tab-description {
   padding: 1.5rem;
   margin-top: 1rem;
   color: var(--text-light);
   font-size: .9rem;
   line-height: 1.5
   }
   .media-content {
   width: 80%;
   padding: 2rem;
   overflow-y: auto
   }
   .media-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
   gap: 1.5rem;
   width: 100%
   }
   .media-item {
   position: relative;
   cursor: pointer;
   border-radius: 8px;
   overflow: hidden;
   transition: transform .3s ease, box-shadow .3s ease;
   box-shadow: 0 4px 15px #0000001a;
   height: 200px
   }
   .media-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px #00000026
   }
   .media-item-inner {
   position: relative;
   width: 100%;
   height: 100%;
   overflow: hidden
   }
   .media-item img,
   .media-item video {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .5s ease;
   position: relative;
   z-index: 1
   }
   .media-item:hover img,
   .media-item:hover video {
   transform: scale(1.05)
   }
   .media-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #000000b3;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   opacity: 0;
   transition: all .3s ease;
   transform: translateY(10px);
   color: #fff;
   text-align: center;
   z-index: 2
   }
   .media-item:hover .media-overlay {
   opacity: 1;
   transform: translateY(0)
   }
   .media-title {
   font-size: 1.1rem;
   font-weight: 600;
   margin-bottom: .5rem;
   color: #fff
   }
   .media-description {
   font-size: .9rem;
   color: #ffffffe6;
   line-height: 1.4
   }
   .preview-video {
   object-fit: cover
   }
   .play-icon {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: 3rem;
   color: #fff;
   text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
   opacity: .8;
   transition: all .3s ease
   }
   .media-item:hover .play-icon {
   transform: translate(-50%, -50%) scale(1.1);
   opacity: 1;
   text-shadow: 0 4px 8px rgba(0, 0, 0, .5)
   }
   .award-description {
   font-size: .8rem;
   opacity: .9;
   margin-top: .5rem
   }
   @media (max-width: 992px) {
   .media-gallery-container {
   flex-direction: column;
   min-height: auto
   }
   .media-tabs {
   width: 100%;
   min-width: auto;
   border-right: none;
   border-bottom: 1px solid rgba(0, 0, 0, .08);
   padding: 1rem 0;
   flex-direction: row;
   overflow-x: auto;
   justify-content: flex-start
   }
   .media-tab {
   border-left: none;
   border-bottom: 3px solid transparent;
   padding: .8rem 1.2rem;
   white-space: nowrap
   }
   .media-tab.active {
   border-left: none;
   border-bottom: 3px solid var(--primary-color)
   }
   .media-tab-description {
   display: none
   }
   .media-content {
   width: 100%;
   padding: 1.5rem
   }
   }
   @media (max-width: 768px) {
   .media-grid {
   grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
   gap: 1rem
   }
   .media-item {
   height: 160px
   }
   }
   @media (max-width: 576px) {
   .media-gallery-container {
   width: 98%
   }
   .media-grid {
   grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
   gap: .8rem
   }
   .media-item {
   height: 140px
   }
   .media-title {
   font-size: .9rem
   }
   }
   .awards-grid,
   .photos-grid {
   max-height: 500px;
   overflow-y: auto;
   padding-right: 10px
   }
   .awards-grid::-webkit-scrollbar,
   .photos-grid::-webkit-scrollbar {
   width: 8px
   }
   .awards-grid::-webkit-scrollbar-track,
   .photos-grid::-webkit-scrollbar-track {
   background: #0000000d;
   border-radius: 4px
   }
   .awards-grid::-webkit-scrollbar-thumb,
   .photos-grid::-webkit-scrollbar-thumb {
   background: #0003;
   border-radius: 4px
   }
   .awards-grid::-webkit-scrollbar-thumb:hover,
   .photos-grid::-webkit-scrollbar-thumb:hover {
   background: #0000004d
   }
   .media-navigation {
   position: absolute;
   top: 50%;
   width: 100%;
   display: flex;
   justify-content: space-between;
   pointer-events: none;
   z-index: 10002
   }
   @media (max-width: 768px) {
   .media-nav-button {
   width: 26px;
   height: 26px;
   margin: 0 8px
   }
   .media-nav-button i {
   font-size: .8rem
   }
   }
   @media (max-width: 480px) {
   .media-nav-button {
   width: 24px;
   height: 24px;
   margin: 0 6px
   }
   }
   .media-navigation.bottom-nav {
   position: absolute;
   bottom: 20px;
   top: auto;
   left: 0;
   width: 100%;
   display: flex;
   justify-content: center;
   gap: 1rem
   }
   .media-nav-button.prev {
   margin-right: 5px
   }
   .media-nav-button.next {
   margin-left: 5px
   }
   .text-left {
   text-align: left
   }
   .text-left:after {
   left: 0;
   transform: none
   }
   .initiatives-section,
   .service-learning-section {
   padding: 4rem 0;
   margin-top: 2rem;
   width: 100%;
   position: relative
   }
   .initiatives-content,
   .service-learning-content {
   background-color: #f8f8f8;
   border-radius: 15px;
   padding: 3rem;
   margin-top: 2rem;
   box-shadow: 0 10px 25px #00000008;
   border-left: 5px solid #2a5298
   }
   .placeholder-text {
   color: #888;
   font-style: italic;
   font-size: 1.2rem;
   text-align: left
   }
   @media (max-width: 768px) {
   .initiatives-content,
   .service-learning-content {
   padding: 2rem
   }
   .placeholder-text {
   font-size: 1rem
   }
   }
   .publications-section {
   padding: 2rem 1rem;
   margin-top: 0rem;
   width: 100%;
   position: relative
   }
   .publications-content {
   margin-top: 2rem
   }
   .publications-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
   gap: 2rem
   }
   .publication-item {
   background-color: #f8f8f8;
   border-radius: 15px;
   padding: 2rem;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   border-left: 5px solid #2a5298;
   box-shadow: 0 10px 25px #0000000d;
   transition: transform .3s ease, box-shadow .3s ease;
   height: 100%
   }
   .publication-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 30px #0000001a
   }
   .publication-info {
   margin-bottom: 1.5rem
   }
   .publication-title {
   font-size: 1.3rem;
   font-weight: 600;
   margin-bottom: .8rem;
   color: #333;
   line-height: 1.4
   }
   .publication-description {
   font-size: 1rem;
   color: #666;
   line-height: 1.5
   }
   .publication-button {
   display: inline-flex;
   align-items: center;
   gap: .5rem;
   background-color: #2a5298;
   color: #fff;
   padding: .8rem 1.5rem;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 500;
   font-size: 1rem;
   transition: all .3s ease;
   align-self: flex-start;
   box-shadow: 0 4px 10px #0000001a;
   border: none;
   cursor: pointer;
   margin-top: auto
   }
   .publication-button:hover {
   background-color: #5784da;
   transform: translateY(-3px);
   box-shadow: 0 6px 15px #ffffff26
   }
   .publication-button i {
   font-size: 1.1rem
   }
   @media (max-width: 768px) {
   .publications-grid {
   grid-template-columns: 1fr;
   gap: 1.5rem
   }
   .publication-item {
   padding: 1.5rem
   }
   .publication-title {
   font-size: 1.2rem
   }
   .publication-button {
   width: 100%;
   justify-content: center
   }
   }
   .diagram-section {
   padding: 4rem 0;
   margin: 3rem 0;
   width: 100%;
   position: relative;
   max-width: 100%
   }
   .diagram-container {
   display: flex;
   flex-direction: column;
   align-items: center;
   margin-top: 2rem;
   background-color: #f8f8f8;
   border-radius: 15px;
   padding: 2rem;
   box-shadow: 0 10px 25px #0000000d
   }
   .connection-diagram-image {
   max-width: 70%;
   height: auto;
   cursor: pointer;
   transition: transform .3s ease
   }
   @media (max-width: 768px) {
   .connection-diagram-image {
   max-width: 90%
   }
   }
   .diagram-caption {
   margin-top: 1.5rem;
   text-align: center;
   max-width: 800px;
   color: #555;
   line-height: 1.6
   }
   .diagram-caption p {
   margin: .5rem 0
   }
   .diagram-caption i {
   font-size: .9rem;
   color: #777
   }
   .diagram-container-simple {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 2rem;
   width: 100%
   }
   .connection-diagram-image {
   max-width: 90%;
   height: auto;
   cursor: pointer;
   transition: transform .3s ease
   }
   .connection-diagram-image:hover {
   transform: scale(1.02)
   }
   @media (max-width: 768px) {
   .connection-diagram-image {
   max-width: 100%
   }
   }
   .featured-initiative-section {
   padding: 0 1rem 2rem;
/*   margin-bottom: 2rem;*/
   position: relative
   }
   .featured-card {
   width: 100%;
   background-color: #fff;
   border-radius: 12px;
   box-shadow: 0 4px 20px #00000014;
   overflow: hidden;
   margin-bottom: 2rem;
   display: flex;
   flex-direction: column;
   transition: transform .3s ease, box-shadow .3s ease;
   align-items: center;
   }
   .featured-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 30px #0000001f
   }
   .featured-card-image-container {
   width: 100%;
   height: 300px;
   overflow: hidden
   }
   .featured-card-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .5s ease
   }
   .featured-card:hover .featured-card-image {
   transform: scale(1.05)
   }
   .featured-card-content {
   padding: 1.5rem
   }
   .featured-card-title {
   font-size: 1.6rem;
   font-weight: 700;
   color: #333;
   margin-bottom: 1rem
   }
   .featured-card-description {
   font-size: 1rem;
   line-height: 1.6;
   color: #555;
   margin-bottom: 1rem
   }
   @media (min-width: 768px) {
   .featured-card {
   flex-direction: row
   }
   .featured-card-image-container {
   width: 40%;
   height: auto
   }
   .featured-card-content {
   width: 60%;
   padding: 2rem
   }
   }
   .service-learning-section {
   padding: 0 1rem 2rem;
/*   margin-top: -1.5rem;*/
   margin-bottom: 2rem;
   position: relative;
   z-index: 1
   }
   .service-learning-header {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
/*   margin-bottom: 1.5rem;*/
   position: relative;
   width: 100%;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto
   }
   .arrows-wrapper {
   display: flex;
   justify-content: center;
   width: 100%;
   margin-bottom: 1rem
   }
   .arrows-container {
   display: flex;
   align-items: center;
   justify-content: center
   }
   .arrow,
   .arrow.small {
   width: 70px;
   height: 70px
   }
   .arrow-left {
   transform: rotate(180deg);
   margin-right: 50px
   }
   .arrow-right {
   transform: rotate(0);
   margin-left: 50px
   }
   .service-learning-header .section-heading {
   margin-top: 0
   }
   .single-card-container {
   display: flex;
   justify-content: center;
   width: 100%
   }
   .service-learning-card {
   width: 100%;
   max-width: 60%
   }
   @media (max-width: 992px) {
   .arrows-wrapper {
   padding: 0 10px
   }
   .arrows-container {
   height: 45px;
   gap: 5px
   }
   .arrow {
   width: 45px;
   height: 45px
   }
   .arrow.small {
   width: 35px;
   height: 35px
   }
   }
   @media (max-width: 768px) {
   .service-learning-header {
   flex-wrap: wrap
   }
   .arrows-container {
   display: none
   }
   .service-learning-card {
   max-width: 100%
   }
   }
   .play-icon-overlay {
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #0000004d
   }
   .service-learning-header,
   .initiatives-header {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
/*   margin-bottom: 1.5rem;*/
   position: relative;
   width: 100%;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto
   }
   .service-learning-header .section-heading,
   .initiatives-header .section-heading {
   margin-top: 0
   }
   .program-modal-evidences {
/*   border-top: 1px solid rgba(0, 0, 0, .1)*/
   }
   .evidences-title {
   font-size: 1.8rem;
   font-weight: 600;
   margin-bottom: 2rem;
   color: var(--primary-color);
   position: relative;
   display: inline-block
   }
   .evidences-title:after {
   content: "";
   position: absolute;
   width: 50px;
   height: 2px;
   background-color: var(--primary-color);
   bottom: -10px;
   left: 0
   }
   .evidence-region-section {
   margin-bottom: 3rem;
   background-color: #f9f9f9;
   border-radius: 12px;
   padding: 2rem;
   box-shadow: 0 5px 15px #00000008;
   transition: all .3s ease;
   border: 1px solid rgba(0, 0, 0, .05);
   position: relative;
   overflow: hidden
   }
   .evidence-region-section:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 5px;
   height: 100%;
   background: linear-gradient(to bottom, var(--primary-color), rgba(42, 82, 152, .4))
   }
   .evidence-region-section:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px #00000014
   }
   .evidence-region-title {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 1rem;
   color: var(--text-color);
   
   }
   .evidence-region-description {
   font-size: 1rem;
   line-height: 1.6;
   margin-bottom: 1.5rem;
   color: var(--text-light)
   }
   .evidence-media-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
   gap: 1.5rem;
   margin-bottom: 1.5rem
   }
   .evidence-media-item {
   cursor: pointer;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 4px 8px #0000001a;
   transition: all .3s ease;
/*   height: 180px;*/
   position: relative
   }
   .evidence-media-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 16px #00000026
   }
   .evidence-image-container,
   .evidence-video-container {
   width: 100%;
   height: 100%;
   position: relative;
   overflow: hidden
   }
   .evidence-image-container img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .5s ease
   }
   .evidence-media-item:hover .evidence-image-container img {
   transform: scale(1.1)
   }
   .evidence-video-placeholder {
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: #000;
   width: 100%;
   height: 100%
   }
   .evidence-video-placeholder i {
   font-size: 3rem;
   color: #fff;
   opacity: .8;
   transition: all .3s ease
   }
   .evidence-media-item:hover .evidence-video-placeholder i {
   opacity: 1;
   transform: scale(1.1);
   text-shadow: 0 0 15px rgba(255, 255, 255, .5)
   }
   .evidence-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #0000004d;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: opacity .3s ease
   }
   .evidence-media-item:hover .evidence-overlay {
   opacity: 1
   }
   .evidence-overlay i,
   .evidence-overlay span {
   color: #fff;
   font-size: 1.5rem;
   text-shadow: 0 2px 4px rgba(0, 0, 0, .5)
   }
   .evidence-documents {
   background-color: #fff;
   border-radius: 8px;
   padding: 1.5rem;
   box-shadow: 0 4px 10px #0000000d;
   margin-top: 1rem
   }
   .evidence-documents-title {
   font-size: 1.2rem;
   font-weight: 600;
   margin-bottom: 1rem;
   color: var(--text-color);
   position: relative;
   display: inline-block
   }
   .evidence-documents-title:after {
   content: "";
   position: absolute;
   width: 40px;
   height: 2px;
   background-color: var(--primary-color);
   bottom: -5px;
   left: 0
   }
   .evidence-documents-list {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
   gap: .8rem
   }
   .evidence-document-link {
   display: flex;
   align-items: center;
   gap: .8rem;
   padding: .8rem 1rem;
   background-color: #f3f3f3;
   border-radius: 6px;
   text-decoration: none;
   color: var(--text-color);
   font-weight: 500;
   transition: all .3s ease;
   border: 1px solid rgba(0, 0, 0, .05)
   }
   .evidence-document-link:hover {
   background-color: #e8e8e8;
   transform: translate(5px);
   border-left: 3px solid var(--primary-color)
   }
   .media-navigation {
   position: absolute;
   bottom: 20px;
   left: 0;
   width: 100%;
   display: flex;
   justify-content: center;
   gap: 1rem;
   z-index: 10002
   }
   .media-nav-button {
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: #ffffff40;
   border: 1px solid rgba(255, 255, 255, .4);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   pointer-events: auto;
   transition: all .2s ease;
   box-shadow: 0 2px 8px #00000026;
   backdrop-filter: blur(4px);
   -webkit-backdrop-filter: blur(4px);
   margin: 0 12px
   }
   .media-nav-button:hover {
   background: #fff6;
   transform: scale(1.05);
   box-shadow: 0 3px 10px #0003
   }
   .media-nav-button i {
   font-size: .9rem
   }
   @media (max-width: 768px) {
   .evidence-media-grid {
   grid-template-columns: repeat(2, 1fr)
   }
   .evidence-region-section {
   padding: 1.5rem
   }
   .evidence-region-title {
   font-size: 1.3rem
   }
   .media-nav-button {
   width: 26px;
   height: 26px;
   font-size: 1.2rem
   }
   }
   @media (max-width: 480px) {
   .evidence-media-grid {
   grid-template-columns: 1fr
   }
   .evidence-media-item {
   height: 200px
   }
   .evidence-region-section {
   padding: 1.2rem
   }
   .evidences-title {
   font-size: 1.5rem
   }
   }
   .media-counter {
   color: #fff;
   background-color: #00000080;
   padding: 4px 8px;
   border-radius: 12px;
   font-size: .75rem;
   font-weight: 500;
   margin: 0 5px;
   backdrop-filter: blur(5px);
   -webkit-backdrop-filter: blur(5px);
   box-shadow: 0 2px 6px #0003;
   border: 1px solid rgba(255, 255, 255, .2);
   min-width: 32px;
   text-align: center;
   display: inline-block
   }
   .media-modal-content {
   background: transparent;
   border-radius: 8px;
   max-width: 90%;
   max-height: 90vh;
   overflow: auto;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center
   }
   .media-modal-content img {
   max-width: 100%;
   max-height: 85vh;
   object-fit: contain;
   border-radius: 6px;
   box-shadow: 0 5px 30px #0006
   }
   .media-modal-content video {
   max-width: 100%;
   max-height: 85vh;
   object-fit: contain;
   border-radius: 6px;
   box-shadow: 0 5px 30px #0006
   }
   @media (max-width: 768px) {
   .evidence-documents-list {
   grid-template-columns: 1fr
   }
   }
   .evidence-document-link i {
   color: #e74c3c;
   font-size: 1.2rem;
   min-width: 24px
   }
   .contact-section {
   padding: 2rem 0;
   margin: 1rem 0;
   width: 100%;
   position: relative
   }
   .contact-cards-container {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
   gap: 1.5rem;
   width: 100%;
   margin: 0 auto;
   padding: 0 1rem
   }
   .contact-card {
   background-color: #fff;
   border-radius: .75rem;
   overflow: hidden;
   box-shadow: 0 4px 12px #0000000f;
   transition: transform .3s ease, box-shadow .3s ease;
   display: flex;
   flex-direction: row;
   align-items: center;
   padding: 1rem;
   opacity: 0;
   transform: translateY(20px);
   animation: slideIn .5s forwards;
   height: 100%
   }
   .contact-card:nth-child(1) {
   animation-delay: .1s
   }
   .contact-card:nth-child(2) {
   animation-delay: .2s
   }
   .contact-card:nth-child(3) {
   animation-delay: .3s
   }
   .contact-card:nth-child(4) {
   animation-delay: .4s
   }
   .contact-card:nth-child(5) {
   animation-delay: .5s
   }
   .contact-card:nth-child(6) {
   animation-delay: .6s
   }
   .contact-card:nth-child(7) {
   animation-delay: .7s
   }
   @keyframes slideIn {
   to {
   opacity: 1;
   transform: translateY(0)
   }
   }
   .contact-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 20px #0000001a
   }
   .contact-image-container {
   width: 160px;
   height: 160px;
   border-radius: 50%;
   overflow: hidden;
   flex-shrink: 0;
   border: 3px solid #f3f4f6;
   box-shadow: 0 4px 10px #00000014
   }
   .contact-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .5s ease
   }
   .contact-card:hover .contact-image {
   transform: scale(1.05)
   }
   .contact-content {
   padding: 0 1rem;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   flex-grow: 1
   }
   .contact-name {
   font-size: 1.1rem;
   font-weight: 600;
   color: #333;
   margin: 0
   }
   .contact-social-links {
   display: flex;
   gap: .5rem
   }
   .contact-social-link.email {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background-color: #2a5298;
   color: #fff;
   transition: all .3s ease
   }
   .contact-social-link:hover {
   transform: translateY(-3px);
   background-color: #5784da
   }
   @media (max-width: 1200px) {
   .contact-cards-container {
   grid-template-columns: repeat(3, 1fr);
   gap: 1.2rem
   }
   }
   @media (max-width: 992px) {
   .contact-cards-container {
   grid-template-columns: repeat(2, 1fr);
   gap: 1rem
   }
   .contact-image-container {
   width: 70px;
   height: 70px
   }
   }
   @media (max-width: 768px) {
   .contact-cards-container {
   grid-template-columns: repeat(2, 1fr);
   gap: 1rem
   }
   .contact-image-container {
   width: 60px;
   height: 60px
   }
   .contact-name {
   font-size: 1rem
   }
   .contact-social-link.email {
   width: 36px;
   height: 36px
   }
   }
   @media (max-width: 576px) {
   .contact-cards-container {
   grid-template-columns: 1fr;
   gap: 1rem
   }
   }
   @media (max-width: 480px) {
   .contact-card {
   flex-direction: column;
   padding: 1.5rem;
   text-align: center
   }
   .contact-image-container {
   margin-bottom: 1rem;
   width: 90px;
   height: 90px
   }
   .contact-content {
   flex-direction: column;
   gap: .75rem;
   padding: 0
   }
   .contact-name {
   margin-bottom: .5rem
   }
   }
   .evidence-media-item:hover .evidence-overlay,
   .media-item:hover .media-overlay,
   .media-content .media-item:hover .media-overlay {
   opacity: 1;
   transform: translateY(0)
   }
   .image-fade-container {
   position: relative;
   width: 100%;
   height: 100%;
   overflow: hidden;
   border-radius: 0
   }
   .slide-image {
   width: 100%;
   height: 80vh;
   object-fit: cover;
   border-radius: 0
   }
   .left-fade-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 50%;
   height: 100%;
   background: linear-gradient(to right, rgba(255, 255, 255, .95), rgba(255, 255, 255, .8) 30%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, .3) 70%, transparent);
   z-index: 1
   }
   .slide-caption {
   position: absolute;
   bottom: 60px;
   left: 20px;
   color: #333;
   z-index: 2;
   text-shadow: 1px 1px 3px rgba(255, 255, 255, .7)
   }
   .slide-caption p {
   margin: 0;
   font-size: 1.2rem;
   font-weight: 600;
   letter-spacing: .05em
   }
   .slide-indicators {
   position: absolute;
   bottom: 20px;
   left: 20px;
   display: flex;
   gap: 8px;
   z-index: 2
   }
   .indicator {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background-color: #2a529880;
   cursor: pointer;
   transition: all .3s ease
   }
   .indicator.active {
   background-color: #2a5298;
   transform: scale(1.2)
   }
   @media (max-width: 768px) {
   .slide-caption p {
   font-size: 1rem
   }
   .slide-caption {
   bottom: 50px
   }
   .indicator {
   width: 8px;
   height: 8px
   }
   .slide-image {
   width: 100%;
   height: 50vh;
   object-fit: cover;
   border-radius: 0
   }
   }
   .site-footer {
   width: 100%;
   background-color: #1a1a1a;
   padding: 1rem 0;
   margin-top: 4rem
   }
   .footer-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem
   }
   .footer-logo-section {
   flex: 1;
   display: flex;
   justify-content: flex-start
   }
   .footer-logo {
   height: 50px;
   width: auto
   }
   .footer-copyright {
   flex: 1;
   text-align: center;
   color: #ccc;
   font-size: .9rem
   }
   .footer-contact {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: flex-end;
   gap: .5rem
   }
   .footer-email,
   .footer-phone {
   display: flex;
   align-items: center;
   gap: .5rem;
   color: #ccc
   }
   .footer-email a,
   .footer-phone a {
   color: #ccc;
   text-decoration: none;
   transition: color .3s ease;
   font-size: .9rem
   }
   .footer-email a:hover,
   .footer-phone a:hover {
   color: #fff
   }
   .footer-email i,
   .footer-phone i {
   color: #666;
   font-size: .9rem
   }
   @media (max-width: 768px) {
   .footer-container {
   flex-direction: column;
   gap: 1rem;
   padding: 1rem
   }
   .footer-logo-section,
   .footer-copyright,
   .footer-contact {
   flex: none;
   width: 100%;
   text-align: center;
   align-items: center
   }
   .footer-logo-section {
   justify-content: center
   }
   .footer-logo {
   height: 40px
   }
   .footer-contact {
   margin-top: .5rem
   }
   }
   :root {
   font-family: Poppins, sans-serif;
   line-height: 1.7;
   font-weight: 400;
   letter-spacing: .01em;
   color-scheme: light;
   color: var(--text-color);
   background-color: var(--bg-color);
   font-synthesis: none;
   text-rendering: optimizeLegibility;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale
   }
   
   @media (min-width: 576px) {
   .modal-dialog {
   max-width: 1020px!important;
   margin: 1.75rem auto;
   }
   }
   .evidence-image-container a {
    padding: 0px!important;
}
   .lb-outerContainer {
  max-width: 600px !important;
  max-height: 85vh !important;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent!important;
}

/* Make the image responsive and fit nicely */
.lb-image {
  max-width: 100%;
  max-height: 75vh !important;
  height: auto;
  width: auto;
  object-fit: contain;
  border-radius: 8px!important;
  display: block;
  margin: 0 auto;
  border: none!important;
}

/* Navigation arrows below image */
.lb-data .lb-nav {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  gap: 40px;
}

.lb-prev, .lb-next {
  font-size: 24px;
  color: #fff !important;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
}

/* Show image count */
.lb-data .lb-number {
  display: block;
  text-align: center;
  color: #ccc;
  font-size: 14px;
  margin-top: 10px;
}

/* Close button at top right */
.lb-close {
  position: fixed !important;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff !important;
  z-index: 9999;
}
.lb-data .lb-details {
    width: 100%!important;
    float: left;
    text-align: center!important;
    line-height: 1.1em;
}

/* Custom for mobile horizontal scrolling tabs */
@media (max-width: 767.98px) {
  .media-tabs-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .col-md-3.bg-light.border-right {
    height: 90px!important;
}
  #mediaTab {
    flex-wrap: nowrap !important;
  }
  #mediaTab .nav-item {
    flex: 0 0 auto;
    margin-right: 10px;
  }
}
.shadow.rounded.overflow-hidden {
    background-color: #fff;
    border-radius: 15px !important;
    box-shadow: 0 10px 25px #0000000d;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .05);
    min-width: 260px;
    flex: 1;
}
.col-md-3.bg-light.border-right {
    height: 500px;
}
.col-md-9.bg-white.p-4 {
    height: 500px;
    overflow-y: scroll;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #333333;
    background-color: #e8e8e8;
    font-size: 16px;
}

.nav-pills .nav-link {
    border-radius: 0rem!important;
    font-size: 15px;
    padding: 1rem 1rem;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #0c0c0c!important;
    background-color: #d6d6d6!important;
}
.modal-body .evidence-document-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background-color: #2a5298;
    color: #fff;
    padding: .5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all .3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 10px #0000001a;
    border: none;
    cursor: pointer;
    margin-top: auto;
}
.evidence-document-link i {
    color: #ffffff;
    font-size: 1.2rem;
    min-width: 24px;
}



.section-title {
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: linear-gradient(90deg, #007bff, #00c6ff);
            bottom: -10px;
            left: 0;
        }
        
        .card-container {
            margin-bottom: 30px;
            height: 250px;
        }
        
        .custom-card {
            position: relative;
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            background-size: cover;
            background-position: center;
        }
        
        .custom-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,59,149,0.8) 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .custom-card:hover .card-overlay {
            background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,123,255,0.8) 100%);
        }
        
        .card-title {
            color: white;
            font-weight: 600;
            text-align: center;
            padding: 20px;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        .custom-card:hover .card-title {
            transform: scale(1.05);
        }
        
        .card-icon {
            position: absolute;
            bottom: 20px;
            right: 20px;
            color: white;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .custom-card:hover .card-icon {
            opacity: 1;
        }
        
        @media (max-width: 767.98px) {
            .card-container {
                height: 200px;
            }
            
            .card-title {
                font-size: 1.2rem;
            }
        }