/**
* Template Name: Medicio
UMDPC
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #3fbbc0;
  text-decoration: none;
}

a:hover {
  color: #65c9cd;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2640b1;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2679b1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2679b1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #2679b1;
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
  max-height: 40px;
}

/**
* Renew License Button
*/
.renew-btn {
  margin-left: 25px;
  background: #2679b1;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.renew-btn:hover {
  background: #b12626;
  color: #fff;
}

@media (max-width: 768px) {
  .renew-btn {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}

/*--------------------------------------------------------------
# Main Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #626262;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #2679b1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #2679b1;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  appearance: none;
  -webkit-appearance: none;
  color: #555555;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  border: 0;
  outline: 0;
  background: transparent;
  transition: 0.5s;
}

.mobile-nav-toggle .menu-icon {
  pointer-events: none;
}

.mobile-nav-toggle.is-open {
  color: #fff;
  background: rgba(12, 64, 96, 0.96);
}

@media (max-width: 991px) {
  #header .container {
    position: relative;
    min-height: 64px;
    padding-right: 72px;
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 12px;
    width: 46px;
    height: 46px;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    line-height: 1;
    z-index: 1002;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 26px rgba(12, 64, 96, 0.18);
    pointer-events: auto;
    touch-action: manipulation;
  }

  .navbar ul {
    display: none;
  }

  .renew-btn {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile::before {
  content: "";
  position: absolute;
  inset: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: fixed;
  top: 14px;
  right: 12px;
  z-index: 1004;
}

body.mobile-nav-open {
  overflow: hidden;
  touch-action: none;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 74px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3fbbc0;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3fbbc0;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section/ home page
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
/* */
#hero .container {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: 20px;
  inline-size: 20%;
  border-top: 10px solid #1870b8;
  
  
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

#hero h2 {
  color: #2f2f2f;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

#hero p {
  margin: 0 auto 30px auto;
  color: #555555;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(63, 187, 192, 0.8);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: #3fbbc0;
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #3fbbc0;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: #ce352a;
}

#hero .btn-get-started:hover {
  background: #65c9cd;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .container {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 160vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
/* faq*/
.section-bg {
  background-color: #eaeaec;
}
/* committee & other organs*/
.section-bg2 {
  background-color: #dbe1e6;
}
/* downloads*/
.section-bg3 {
  background-color: #ebebf3;
}
/* cmembers*/
.section-bg4 {
  background-color: #d6dfe7;
}
/* pressrelease*/
.section-bg5 {
  background-color: #d4d9dd;
}
/* pressrelease2*/
.section-bg5 {
  background-color: #d4d9dd;
}

/* section title*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #3fbbc0;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #ecf8f9;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(39, 79, 190, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #3fbbc0;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #3fbbc0;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #3fbbc0;
  color: #fff;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  font-size: 28px;
  font-weight: 700;
}

.cta .cta-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #3fbbc0;
}

/*--------------------------------------------------------------
# Registrar Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ca3a3a;
}

.about .content p:last-child {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Mandate section /////
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #3fbbc0;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/* ............................................................
Functions of the council functions Section    //////
--------------------------------------------------------------*/
#functions {
  background: #ffffff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#functions .box {
  margin-bottom: 30px;
}

#functions .icon {
  float: left;
}

#functions .icon i {
  color: #3476ce;
  font-size: 36px;
  line-height: 0;
  transition: 0.5s;
}

#functions .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#functions .title a {
  color: #111;
}

#functions .box:hover .title a {
  color: #18d26e;
}

#functions .box:hover .description {
  color: #2679b1;
}

#functions .description {
  font-size: 16px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Departments/ Press Release  /////
--------------------------------------------------------------*/
.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  color: #555555;
  border-radius: 0;
  border-left: 5px solid #fff;
  cursor: pointer;
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.departments .nav-link:hover h4 {
  color: #3fbbc0;
}

.departments .nav-link.active {
  background: #f7fcfc;
  border-color: #3fbbc0;
}

.departments .nav-link.active h4 {
  color: #3fbbc0;
}

.departments .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

.departments .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #3fbbc0;
}

.departments .tab-pane p {
  color: #777777;
}

.departments .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



/*--------------------------------------------------------------
# Council Committee members //////
--------------------------------------------------------------*/
.committees {
  padding: 0;
}

.committees .content {
  padding: 60px 100px 0 100px;
}

.committees .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.committees .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.committees .content p {
  font-size: 15px;
  color: #848484;
}

.committees .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.committees .accordion-list {
  padding: 0 100px 60px 100px;
}

.committees .accordion-list ul {
  padding: 0;
  list-style: none;
}

.committees .accordion-list li+li {
  margin-top: 15px;
}

.committees .accordion-list li {
  padding: 20px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 4px;
}

.committees .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.committees .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.committees .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.committees .accordion-list .icon-show {
  display: none;
}

.committees .accordion-list a.collapsed {
  color: #343a40;
}

.committees .accordion-list a.collapsed:hover {
  color: #009961;
}

.committees .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.committees .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .committees .content,
  .committees .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .committees {
    /* img {
      padding-top: 30px;
    } */
  }

  .committees .content {
    padding-top: 30px;
  }

  .committees .accordion-list {
    padding-bottom: 30px;
  }
}



/*--------------------------------------------------------------
# downloads/downloads ///// download
--------------------------------------------------------------*/
.downloads {
  padding: 0;
}

.downloads .content {
  padding: 60px 100px 0 100px;
}

.downloads .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.downloads .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.downloads .content p {
  font-size: 15px;
  color: #848484;
}

.downloads .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.downloads .accordion-list {
  padding: 0 100px 60px 100px;
}

.downloads .accordion-list ul {
  padding: 0;
  list-style: none;
}

.downloads .accordion-list li+li {
  margin-top: 15px;
}

.downloads .accordion-list li {
  padding: 20px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 4px;
}

.downloads .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.downloads .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.downloads .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.downloads .accordion-list .icon-show {
  display: none;
}

.downloads .accordion-list a.collapsed {
  color: #343a40;
}

.downloads .accordion-list a.collapsed:hover {
  color: #009961;
}

.downloads .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.downloads .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .downloads .content,
  .downloads .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .downloads {
    /* img {
      padding-top: 30px;
    } */
  }

  .downloads .content {
    padding-top: 30px;
  }

  .downloads .accordion-list {
    padding-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Gallery  //////
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3fbbc0;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3fbbc0;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid #3fbbc0;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Med and Dental Schools /////
--------------------------------------------------------------*/
.school .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.school .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.school .content p {
  font-size: 15px;
  color: #6c757d;
}

.school .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.school .accordion-item:last-child {
  margin-bottom: 0;
}

.school .accordion-collapse {
  border: 0;
}

.school .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.school .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.school .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.school .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.school .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# jobs and Tenders /////
--------------------------------------------------------------*/
.jobs {
  padding: 60px 0;
}

.jobs .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
  border-radius: 10px;
}

.jobs .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.jobs .service-item .icon i {
  color: var(--color-default);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.jobs .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #eeeeee;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.jobs .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  transition: 0.3s;
}

.jobs .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.jobs .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.jobs .service-item:hover .icon:before {
  background: #00b6a1;
}

.jobs .service-item:hover h3 {
  border-color: var(--color-primary);
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d9f1f2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #3fbbc0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #32969a;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #3fbbc0;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #3fbbc0;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #3fbbc0;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #3fbbc0;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #65c9cd;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #eeeeee;
  padding: 0 0 30px 0;
  color: #555555;
  font-size: 14px;
}

#footer .footer-top {
  background: #f6f6f6;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #3fbbc0;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #65c9cd;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #3fbbc0;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #555555;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #3fbbc0;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3fbbc0;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #65c9cd;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Readmore/less Services
--------------------------------------------------------------*/

.card{
  width: 24rem;
  background: black;
  box-shadow: 0 0 15px;
  border-radius: 10px;
  
}

.card-body p{
  color: #fff;
  font-weight: bolder;
}
.card-body h3 {
  color: #fff;
  font-weight: bolder;

}
.card-body h2{
  color: #fff;
  font-weight: bold;
}
.card-body button {
  outline: none;
  padding: 10px 15px;
  font-weight: bolder;
}


/*--------------------------------------------------------------
# about us Section ///// edited
--------------------------------------------------------------*/
.about .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.about .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.about .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.about .card-title a {
  color: #473d3a;
}

.about .card-text {
  color: #4b4949;
}

.about .read-more a {
  color: #656262;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.about .read-more a:hover {
  text-decoration: underline;
}

.about .card:hover .card-body {
  background: #63a3ec;
}

.about .card:hover .read-more a,
.about .card:hover .card-title,
.about .card:hover .card-title a,
.about .card:hover .card-text {
  color: #fff;
}



/*--------------------------------------------------------------
# articles Section  /////test
--------------------------------------------------------------*/
#findings-and-resolutions {
  padding: 60px 0 30px 0;
}

#findings-and-resolutions .speaker {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#findings-and-resolutions .speaker .details {
  background: rgba(6, 12, 34, 0.76);
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  text-align: center;
  padding-top: 10px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#findings-and-resolutions .speaker .details h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

#findings-and-resolutions .speaker .details p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-style: italic;
}

#findings-and-resolutions .speaker .details .social {
  height: 40px;
}

#findings-and-resolutions .speaker .details .social i {
  line-height: 0;
  margin: 0 2px;
}

#findings-and-resolutions .speaker .details a {
  color: #fff;
}

#findings-and-resolutions .speaker .details a:hover {
  color: #f82249;
}

#findings-and-resolutions .speaker:hover .details {
  bottom: 0;
}

#articles-details {
  padding: 60px 0;
}

#articles-details .details h2 {
  color: #112363;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#articles-details .details .social {
  margin-bottom: 15px;
}

#articles-details .details .social a {
  background: #e9edfb;
  color: #112363;
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#articles-details .details .social a:hover {
  background: #f82249;
  color: #fff;
}

#articles-details .details .social a i {
  font-size: 16px;
  line-height: 0;
}

#articles-details .details p {
  color: #112363;
  font-size: 15px;
  margin-bottom: 10px;
}





/*--------------------------------------------------------------
# Council Members Section  /////
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: rgba(33, 38, 43, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: normal;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}


/* ...........................
whatisnew Section  /////// work in progress
--------------------------------*/

#whatisnew .whatisnew-content {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  padding: 49px 20px;
}

#whatisnew .whatisnew-content::before {
  color: #569ae7;
  content: "\f10e";
  display: inline-block;
  font: 70px/1 FontAwesome;
  position: absolute;
  right: 43px;
  text-align: left;
  top: -29px;
}

#whatisnew .top-top>h2 {
  font-family: "Roboto" sans-serif;
  font-size: 45px;
  color: red;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

#whatisnew .top-top>h4 {
  font: 700 12px Lato, sans-serif;
}

#whatisnew .top-top span {
  font-size: 12px;
  font-weight: 300;
  margin-left: 26px;
}

#whatisnew .btm-btm ul li {
  float: left;
  margin: 0 8px;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  background: #ddd none repeat scroll 0 0;
  cursor: pointer;
  height: 12px !important;
  width: 12px !important;
  border: 0;
  content: "";
}

#whatisnew .btm-btm .active {
  background: #569ae7;
}

.carousel-indicators {
  position: relative;
  bottom: 0;
  left: 0;
  bottom: 0 !important;
  z-index: 15;
  width: auto;
  padding-left: 0;
  margin: 30px auto 0 auto;
  margin-right: auto;
  text-align: center;
  list-style: none;
  margin-bottom: 0;
  display: inline-block;
}

.carousel-indicators li {
  margin: 0;
}

/* Press Release Section
--------------------------------*/
#pressrelease {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#pressrelease::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#pressrelease .container {
  position: relative;
  z-index: 10;
}

#pressrelease .pressrelease-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#pressrelease .pressrelease-col .img {
  position: relative;
}

#pressrelease .pressrelease-col .img img {
  border-radius: 4px 4px 0 0;
}

#pressrelease .pressrelease-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: #ca782b;
  border-radius: 50%;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pressrelease .pressrelease-col i {
  font-size: 28px;
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

#pressrelease .pressrelease-col:hover .icon {
  background-color: #fff;
}

#pressrelease .pressrelease-col:hover i {
  color: #1784dd;
}

#pressrelease .pressrelease-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#pressrelease .pressrelease-col h2 a {
  color: #000;
}

#pressrelease .pressrelease-col h2 a:hover {
  color: #187ed2;
}

#pressrelease .pressrelease-col p {
  font-size: 14px;
  line-height: 24px;
  color: #681708;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}


/*--------------------------------------------------------------
# Values(Flow chart
--------------------------------------------------------------*/
.values .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.values .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.values .card-title a {
  color: #473d3a;
}

.values .card-text {
  color: #4b4949;
}

.values .read-more a {
  color: #656262;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.values .read-more a:hover {
  text-decoration: underline;
}

.values .card:hover .card-body {
  background: #ff5821;
}

.values .card:hover .read-more a,
.values .card:hover .card-title,
.values .card:hover .card-title a,
.values .card:hover .card-text {
  color: #fff;
}




/* Press Release2 Section
--------------------------------*/
#pressrelease2 {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#pressrelease2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#pressrelease2 .container {
  position: relative;
  z-index: 10;
}

#pressrelease2 .pressrelease2-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#pressrelease2 .pressrelease2-col .img {
  position: relative;
}

#pressrelease2 .pressrelease-col .img img {
  border-radius: 4px 4px 0 0;
}

#pressrelease .pressrelease2-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: #ca782b;
  border-radius: 50%;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pressrelease2 .pressrelease2-col i {
  font-size: 28px;
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

#pressrelease2 .pressrelease2-col:hover .icon {
  background-color: #fff;
}

#pressrelease2 .pressrelease-col:hover i {
  color: #1784dd;
}

#pressrelease .pressrelease2-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#pressrelease2 .pressrelease2-col h2 a {
  color: #000;
}

#pressrelease2 .pressrelease2-col h2 a:hover {
  color: #187ed2;
}

#pressrelease2 .pressrelease2-col p {
  font-size: 14px;
  line-height: 24px;
  color: #681708;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

/*--------------------------------------------------------------
# Circulars and Notices Polish
--------------------------------------------------------------*/
#pressrelease,
#pressrelease2 {
  padding: 82px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(23, 105, 166, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 82%, rgba(201, 45, 36, 0.14), transparent 22rem),
    linear-gradient(135deg, #f7fbff 0%, #eef6fb 100%);
}

#pressrelease::before,
#pressrelease2::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 251, 0.72)),
    repeating-linear-gradient(135deg, rgba(23, 105, 166, 0.05) 0 1px, transparent 1px 18px);
  z-index: 0;
}

#pressrelease .container,
#pressrelease2 .container {
  position: relative;
  z-index: 2;
}

#pressrelease .section-title,
#pressrelease2 .section-title {
  margin-bottom: 36px;
}

#pressrelease .section-title h2,
#pressrelease2 .section-title h2 {
  color: var(--umdpc-blue-dark);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
}

#pressrelease .section-title h2::after,
#pressrelease2 .section-title h2::after {
  background: linear-gradient(90deg, var(--umdpc-red), var(--umdpc-blue));
}

#pressrelease .pressrelease-cols,
#pressrelease2 .pressrelease2-cols {
  row-gap: 28px;
}

#pressrelease .pressrelease-cols > [class*="col-"],
#pressrelease2 .pressrelease2-cols > [class*="col-"] {
  display: flex;
  animation: umdpc-update-card-rise 0.7s ease both;
}

#pressrelease .pressrelease-cols > [class*="col-"]:nth-child(2),
#pressrelease2 .pressrelease2-cols > [class*="col-"]:nth-child(2) {
  animation-delay: 0.08s;
}

#pressrelease .pressrelease-cols > [class*="col-"]:nth-child(3),
#pressrelease2 .pressrelease2-cols > [class*="col-"]:nth-child(3) {
  animation-delay: 0.16s;
}

#pressrelease .pressrelease-cols > [class*="col-"]:nth-child(4),
#pressrelease .pressrelease-cols > [class*="col-"]:nth-child(7) {
  animation-delay: 0.24s;
}

#pressrelease .pressrelease-cols > [class*="col-"]:nth-child(5),
#pressrelease .pressrelease-cols > [class*="col-"]:nth-child(8) {
  animation-delay: 0.32s;
}

#pressrelease .pressrelease-cols > [class*="col-"]:nth-child(6) {
  animation-delay: 0.40s;
}

#pressrelease .pressrelease-col,
#pressrelease2 .pressrelease2-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 105, 166, 0.12);
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(11, 49, 85, 0.10);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

#pressrelease .pressrelease-col::before,
#pressrelease2 .pressrelease2-col::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--umdpc-blue), var(--umdpc-red));
  z-index: 2;
}

#pressrelease2 .pressrelease2-col::before {
  background: linear-gradient(90deg, var(--umdpc-red), var(--umdpc-blue));
}

#pressrelease .pressrelease-col:hover,
#pressrelease2 .pressrelease2-col:hover {
  transform: translateY(-10px);
  border-color: rgba(23, 105, 166, 0.24);
  box-shadow: 0 28px 62px rgba(11, 49, 85, 0.18);
}

#pressrelease .pressrelease-col .img,
#pressrelease2 .pressrelease2-col .img {
  overflow: hidden;
  position: relative;
  min-height: 220px;
  background: #0b3155;
}

#pressrelease .pressrelease-col .img::after,
#pressrelease2 .pressrelease2-col .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 49, 85, 0.54));
  opacity: 0.82;
  transition: opacity 0.3s ease;
}

#pressrelease .pressrelease-col:hover .img::after,
#pressrelease2 .pressrelease2-col:hover .img::after {
  opacity: 0.55;
}

#pressrelease .pressrelease-col .img img,
#pressrelease2 .pressrelease2-col .img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.5s ease;
}

#pressrelease .pressrelease-col:hover .img img,
#pressrelease2 .pressrelease2-col:hover .img img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

#pressrelease .pressrelease-col .icon,
#pressrelease2 .pressrelease2-col .icon {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: auto;
  width: 54px;
  height: 54px;
  z-index: 3;
  background: linear-gradient(135deg, var(--umdpc-red), var(--umdpc-blue));
  border: 3px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 28px rgba(11, 49, 85, 0.24);
}

#pressrelease2 .pressrelease2-col .icon {
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
}

#pressrelease .pressrelease-col .icon a,
#pressrelease2 .pressrelease2-col .icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

#pressrelease .pressrelease-col i,
#pressrelease2 .pressrelease2-col i {
  color: #fff;
  font-size: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
}

#pressrelease .pressrelease-col:hover .icon,
#pressrelease2 .pressrelease2-col:hover .icon {
  background: #fff;
}

#pressrelease .pressrelease-col:hover i {
  color: var(--umdpc-blue);
  transform: rotate(-8deg) scale(1.12);
}

#pressrelease2 .pressrelease2-col:hover i {
  color: var(--umdpc-red);
  transform: rotate(8deg) scale(1.12);
}

#pressrelease .pressrelease-col h2,
#pressrelease2 .pressrelease2-col h2 {
  order: 3;
  margin: auto 22px 24px;
  padding: 0;
  text-align: left;
  font-size: 0;
}

#pressrelease .pressrelease-col h2 a,
#pressrelease2 .pressrelease2-col h2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 26px rgba(23, 105, 166, 0.18);
}

#pressrelease2 .pressrelease2-col h2 a {
  background: linear-gradient(135deg, var(--umdpc-red), var(--umdpc-blue-dark));
}

#pressrelease .pressrelease-col h2 a::after,
#pressrelease2 .pressrelease2-col h2 a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  transition: transform 0.25s ease;
}

#pressrelease .pressrelease-col h2 a:hover,
#pressrelease2 .pressrelease2-col h2 a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue-dark), var(--umdpc-blue));
}

#pressrelease .pressrelease-col h2 a:hover::after,
#pressrelease2 .pressrelease2-col h2 a:hover::after {
  transform: translateX(4px);
}

#pressrelease .pressrelease-col p,
#pressrelease2 .pressrelease2-col p {
  flex: 1;
  margin: 0;
  padding: 24px 22px 18px;
  color: var(--umdpc-blue-dark);
  font-size: 15px;
  line-height: 1.7;
}

#pressrelease .pressrelease-col p strong,
#pressrelease2 .pressrelease2-col p strong {
  color: inherit;
  font-weight: 900;
}

@keyframes umdpc-update-card-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  #pressrelease,
  #pressrelease2 {
    padding: 58px 0 46px;
  }

  #pressrelease .pressrelease-col .img,
  #pressrelease2 .pressrelease2-col .img,
  #pressrelease .pressrelease-col .img img,
  #pressrelease2 .pressrelease2-col .img img {
    min-height: 190px;
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #pressrelease .pressrelease-cols > [class*="col-"],
  #pressrelease2 .pressrelease2-cols > [class*="col-"],
  #pressrelease .pressrelease-col,
  #pressrelease2 .pressrelease2-col,
  #pressrelease .pressrelease-col .img img,
  #pressrelease2 .pressrelease2-col .img img {
    animation: none;
    transition: none;
  }
}




#more {display: none;}

/*--------------------------------------------------------------
# Facilities DataTable Section
--------------------------------------------------------------*/
.facility-search {
  padding: 60px 0;
}

.facility-search-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(39, 79, 190, 0.08);
  margin-bottom: 20px;
}

.facility-search-meta {
  font-size: 15px;
  color: #555555;
}

.facility-table-wrap {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(39, 79, 190, 0.08);
  overflow-x: auto;
}

.facility-table {
  margin-bottom: 0 !important;
}

.facility-table thead th {
  background: #2679b1;
  color: #ffffff;
  border-color: #2679b1 !important;
  white-space: nowrap;
  vertical-align: middle;
}

.facility-table tbody td {
  vertical-align: middle;
}

#facilitiesDataTable_wrapper .dataTables_filter,
#facilitiesDataTable_wrapper .dataTables_length {
  margin-bottom: 15px;
}

#facilitiesDataTable_wrapper .dataTables_filter input,
#facilitiesDataTable_wrapper .dataTables_length select {
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 6px 10px;
  box-shadow: none;
}

#facilitiesDataTable_wrapper .dataTables_filter input:focus,
#facilitiesDataTable_wrapper .dataTables_length select:focus {
  border-color: #2679b1;
  outline: none;
}

#facilitiesDataTable_wrapper .dataTables_paginate .paginate_button {
  padding: 0 !important;
  margin-left: 4px !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

#facilitiesDataTable_wrapper .dataTables_paginate .page-link {
  color: #2679b1;
}

#facilitiesDataTable_wrapper .dataTables_paginate .active .page-link {
  background-color: #2679b1;
  border-color: #2679b1;
  color: #ffffff;
}

#facilitiesDataTable_wrapper .dataTables_info {
  padding-top: 12px !important;
}

@media (max-width: 768px) {
  .facility-search-box,
  .facility-table-wrap {
    padding: 15px;
  }

  #facilitiesDataTable_wrapper .row > div {
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Modern Visual Polish
--------------------------------------------------------------*/
:root {
  --umdpc-blue: #1769a6;
  --umdpc-blue-dark: #0b3155;
  --umdpc-red: #c92d24;
  --umdpc-teal: #19a9ad;
  --umdpc-soft: #f4f8fb;
  --umdpc-ink: #183047;
  --umdpc-muted: #657789;
  --umdpc-radius: 22px;
  --umdpc-shadow: 0 18px 45px rgba(11, 49, 85, 0.12);
  --umdpc-shadow-soft: 0 12px 30px rgba(11, 49, 85, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(25, 169, 173, 0.10), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 42%, #ffffff 100%);
  color: var(--umdpc-ink);
  text-rendering: optimizeLegibility;
}

a {
  color: var(--umdpc-blue);
}

a:hover {
  color: var(--umdpc-red);
}

#topbar {
  background: linear-gradient(90deg, var(--umdpc-blue-dark), var(--umdpc-blue));
  letter-spacing: 0.01em;
}

#header {
  border-bottom: 1px solid rgba(23, 105, 166, 0.08);
  box-shadow: 0 14px 38px rgba(10, 49, 85, 0.10);
}

#header .logo a {
  color: var(--umdpc-blue-dark);
  letter-spacing: 0.04em;
}

.navbar a,
.navbar a:focus {
  color: #334e68;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--umdpc-blue);
}

.renew-btn,
#hero .btn-get-started,
.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, var(--umdpc-red), #f06f3d);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(201, 45, 36, 0.28);
  color: #fff;
  font-weight: 700;
}

.renew-btn:hover,
#hero .btn-get-started:hover,
.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, #a8201b, var(--umdpc-red));
  color: #fff;
  transform: translateY(-2px);
}

#hero {
  background: var(--umdpc-blue-dark);
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 32, 56, 0.74), rgba(8, 32, 56, 0.24) 46%, rgba(8, 32, 56, 0.50)),
    radial-gradient(circle at 18% 70%, rgba(25, 169, 173, 0.30), transparent 24rem);
  pointer-events: none;
  z-index: 1;
}

#hero .carousel-control-prev,
#hero .carousel-control-next,
#hero .carousel-indicators,
#hero .container {
  z-index: 2;
}

#hero .carousel-item {
  align-items: center;
}

#hero .container {
  width: min(560px, calc(100% - 40px));
  inline-size: auto;
  margin: 130px auto 0 8%;
  padding: 34px;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 8px solid var(--umdpc-red);
  border-top: 0;
  border-radius: var(--umdpc-radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

#hero h3 {
  color: var(--umdpc-blue-dark);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 16px;
}

#hero p {
  color: #3f5368;
  font-size: 17px;
  margin: 0 0 24px 0;
}

#hero .btn-get-started {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  backdrop-filter: blur(8px);
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: var(--umdpc-red);
  color: #fff;
}

.section-title h2 {
  color: var(--umdpc-blue-dark);
  letter-spacing: 0.03em;
}

.section-title h2::after {
  width: 76px;
  height: 4px;
  left: calc(50% - 38px);
  background: linear-gradient(90deg, var(--umdpc-red), var(--umdpc-teal));
  border-radius: 999px;
}

.section-title p {
  color: var(--umdpc-muted);
  font-size: 17px;
}

section {
  position: relative;
}

.section-bg,
.section-bg2,
.section-bg3,
.section-bg4,
.section-bg5 {
  background:
    linear-gradient(135deg, rgba(23, 105, 166, 0.06), rgba(25, 169, 173, 0.08)),
    #f7fbfd;
}

.card,
.box,
.icon-box,
.member,
.speaker,
.facility-search-box,
.facility-table-wrap {
  border-radius: var(--umdpc-radius);
  box-shadow: var(--umdpc-shadow-soft);
}

.card,
.member,
.speaker,
.facility-search-box,
.facility-table-wrap {
  border: 1px solid rgba(23, 105, 166, 0.08);
}

.card,
.member,
.speaker,
.contact .info-box,
.contact .php-email-form {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover,
.member:hover,
.speaker:hover,
.contact .info-box:hover,
.contact .php-email-form:hover {
  transform: translateY(-4px);
  box-shadow: var(--umdpc-shadow);
}

.contact {
  background:
    radial-gradient(circle at 88% 14%, rgba(240, 111, 61, 0.18), transparent 18rem),
    linear-gradient(135deg, #f8fcff 0%, #eef7fb 100%);
}

.contact-grid {
  align-items: stretch;
}

.contact .info-box {
  height: 100%;
  padding: 32px 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: var(--umdpc-radius);
  box-shadow: var(--umdpc-shadow-soft);
}

.contact .info-box i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-teal));
  border: 0;
  box-shadow: 0 12px 24px rgba(23, 105, 166, 0.22);
}

.contact .info-box h3 {
  color: var(--umdpc-blue-dark);
  margin-top: 16px;
}

.contact .info-box p {
  color: #516579;
}

.contact .php-email-form {
  height: 100%;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: var(--umdpc-radius);
  box-shadow: var(--umdpc-shadow);
}

.contact-form-heading {
  margin-bottom: 22px;
}

.contact-form-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--umdpc-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-heading h3 {
  color: var(--umdpc-blue-dark);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border: 1px solid #d9e6ef;
  border-radius: 14px;
  color: var(--umdpc-ink);
  background: #f9fcfe;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--umdpc-blue);
  box-shadow: 0 0 0 4px rgba(23, 105, 166, 0.12);
  background: #fff;
}

.contact .php-email-form button[type=submit] {
  padding: 14px 34px;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#footer {
  background: var(--umdpc-blue-dark);
  color: rgba(255, 255, 255, 0.76);
}

#footer .footer-top {
  background:
    radial-gradient(circle at 12% 20%, rgba(25, 169, 173, 0.24), transparent 18rem),
    linear-gradient(135deg, #0b3155 0%, #082238 100%);
}

#footer .footer-top h4,
#footer .footer-top .footer-info h3 {
  color: #fff;
}

#footer .footer-top .footer-info p,
#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.76);
}

#footer .footer-top .footer-links ul a:hover,
#footer .footer-top .footer-links ul i {
  color: #7fe0df;
}

#footer .footer-top .social-links a,
#footer .footer-top .footer-newsletter form input[type=submit] {
  background: linear-gradient(135deg, var(--umdpc-teal), var(--umdpc-blue));
}

@media (max-width: 992px) {
  #hero .container {
    margin: 110px auto 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  #hero .container,
  .contact .php-email-form {
    padding: 24px;
    border-radius: 18px;
  }

  #hero {
    height: 88vh;
  }

  .section-title h2 {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Requested Refinements
--------------------------------------------------------------*/
#header .logo img {
  width: 54px;
  height: 54px;
  max-height: none;
  padding: 4px;
  object-fit: cover;
  border: 2px solid rgba(23, 105, 166, 0.18);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 49, 85, 0.12);
}

.renew-btn,
#hero .btn-get-started,
.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
  box-shadow: 0 12px 26px rgba(23, 105, 166, 0.22);
}

.renew-btn:hover,
#hero .btn-get-started:hover,
.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, var(--umdpc-red), var(--umdpc-blue-dark));
}

#hero .carousel-item {
  align-items: flex-end;
}

#hero .container {
  width: min(360px, calc(100% - 32px));
  margin: 0 auto 66px 7%;
  padding: 18px 20px;
  border-left: 5px solid var(--umdpc-red);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

#hero h3 {
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.08;
  margin-bottom: 8px;
}

#hero p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

#hero .btn-get-started {
  padding: 10px 18px;
  font-size: 12px;
}

.facility-ai-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, var(--umdpc-blue-dark), var(--umdpc-blue) 58%, var(--umdpc-red));
  border-radius: var(--umdpc-radius);
  box-shadow: var(--umdpc-shadow);
}

.facility-ai-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #bfeff2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facility-ai-panel h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.facility-ai-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.facility-ai-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.facility-ai-stats div {
  min-height: 102px;
  padding: 16px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.facility-ai-stats span {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.facility-ai-stats small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  #hero .container {
    margin: 0 auto 58px 24px;
    text-align: left;
  }

  .facility-ai-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  #header .logo img {
    width: 46px;
    height: 46px;
  }

  #hero .container {
    width: calc(100% - 28px);
    margin: 0 14px 42px;
    padding: 16px;
  }

  .facility-ai-stats {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Modern Information Slides
--------------------------------------------------------------*/
.information-slides {
  padding: 64px 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(23, 105, 166, 0.16), transparent 24rem),
    radial-gradient(circle at 92% 82%, rgba(201, 45, 36, 0.14), transparent 22rem),
    linear-gradient(135deg, #f7fbff 0%, #eef6fb 100%);
}

.information-intro {
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, #0b3155, #1769a6);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(11, 49, 85, 0.18);
  min-height: 100%;
}

.information-intro span,
.information-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.information-intro span {
  color: #aee7ef;
}

.information-intro h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.06;
  margin: 0 0 16px;
}

.information-intro p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.information-carousel {
  position: relative;
}

.information-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(11, 49, 85, 0.16);
}

.information-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.information-card-red {
  background: linear-gradient(135deg, #b82020 0%, #1769a6 100%);
}

.information-card-blue {
  background: linear-gradient(135deg, #1769a6 0%, #19a9ad 100%);
}

.information-card-navy {
  background: linear-gradient(135deg, #0b3155 0%, #c92d24 100%);
}

.information-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  color: #fff;
  font-size: 30px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.information-card-body {
  position: relative;
  z-index: 1;
}

.information-label {
  color: #d8f6fb;
}

.information-card h3 {
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 14px;
}

.information-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.information-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.information-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #0b3155;
  background: #fff;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(11, 49, 85, 0.18);
}

.information-actions a:hover {
  color: #fff;
  background: #c92d24;
}

.information-actions small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.information-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.information-carousel .carousel-indicators {
  position: static;
  display: flex;
  gap: 8px;
  margin: 0;
}

.information-carousel .carousel-indicators [data-bs-target] {
  width: 38px;
  height: 6px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 105, 166, 0.25);
  opacity: 1;
}

.information-carousel .carousel-indicators .active {
  background: #c92d24;
}

.information-controls {
  display: flex;
  gap: 10px;
}

.information-controls .carousel-control-prev,
.information-controls .carousel-control-next {
  position: static;
  width: 44px;
  height: 44px;
  color: #fff;
  opacity: 1;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1769a6, #c92d24);
}

.information-controls .carousel-control-prev:hover,
.information-controls .carousel-control-next:hover {
  background: linear-gradient(135deg, #0b3155, #1769a6);
}

@media (max-width: 768px) {
  .information-slides {
    padding: 46px 0;
  }

  .information-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px;
  }

  .information-card-icon {
    width: 62px;
    height: 62px;
    font-size: 24px;
    border-radius: 18px;
  }

  .information-carousel-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Staff News Notice
--------------------------------------------------------------*/
.staff-news-section {
  padding: 68px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 45, 36, 0.14), transparent 23rem),
    radial-gradient(circle at 88% 82%, rgba(23, 105, 166, 0.12), transparent 21rem),
    linear-gradient(135deg, #fff8f7 0%, #f6fbff 100%);
}

.staff-news-section .section-title p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.staff-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.staff-news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(11, 49, 85, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 56px rgba(11, 49, 85, 0.12);
  text-align: center;
}

.staff-news-image-wrap {
  aspect-ratio: 4 / 5.2;
  background: linear-gradient(180deg, #f5f8fc 0%, #eef3f8 100%);
}

.staff-news-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.staff-news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 24px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.staff-news-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  color: var(--umdpc-red);
  background: rgba(201, 45, 36, 0.10);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
}

.staff-news-body h3 {
  margin: 0;
  color: #0b3155;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.staff-news-body small {
  color: #9aa8b7;
  font-size: 13px;
  line-height: 1.4;
}

.staff-news-body p {
  margin: 0;
  color: #516173;
  font-size: 14px;
  line-height: 1.7;
}

.staff-news-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-red), var(--umdpc-blue-dark));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(11, 49, 85, 0.18);
}

.staff-news-body a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue-dark), var(--umdpc-blue));
}

@media (max-width: 991px) {
  .staff-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .staff-news-section {
    padding: 52px 0;
  }

  .staff-news-grid {
    grid-template-columns: 1fr;
  }

  .staff-news-body {
    padding: 22px;
  }

  .staff-news-body h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Targeted Section Polish
--------------------------------------------------------------*/
#mandate,
#functions,
.committees,
.school,
.faq {
  position: relative;
  overflow: hidden;
}

#mandate,
.school {
  background:
    radial-gradient(circle at 8% 18%, rgba(23, 105, 166, 0.10), transparent 22rem),
    radial-gradient(circle at 92% 82%, rgba(201, 45, 36, 0.08), transparent 20rem),
    #ffffff;
}

#functions,
.faq {
  background:
    linear-gradient(135deg, rgba(23, 105, 166, 0.06), rgba(201, 45, 36, 0.05)),
    #f7fbff;
}

.features .image {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(11, 49, 85, 0.18);
  animation: mandateFloat 7s ease-in-out infinite;
}

.features .image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(23, 105, 166, 0.10), transparent 50%),
    linear-gradient(0deg, rgba(11, 49, 85, 0.22), transparent 42%);
  pointer-events: none;
}

@keyframes mandateFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.features .icon-box {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 20px !important;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-left: 5px solid var(--umdpc-red);
  border-radius: 22px;
  box-shadow: var(--umdpc-shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.features .icon-box:hover {
  transform: translateX(8px);
  border-left-color: var(--umdpc-blue);
  box-shadow: var(--umdpc-shadow);
}

.features .icon-box i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #fff;
  font-size: 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
  box-shadow: 0 12px 24px rgba(23, 105, 166, 0.18);
}

.features .icon-box p {
  margin: 0;
  color: #344054;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

#functions .row {
  row-gap: 24px;
}

#functions .box {
  min-height: 100%;
  position: relative;
  isolation: isolate;
  margin-bottom: 0;
  padding: 26px 36px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

#functions .box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 5px;
  z-index: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--umdpc-blue), var(--umdpc-red));
  opacity: 0.85;
}

#functions .box::after {
  content: "";
  position: absolute;
  inset: 0 12px;
  z-index: 0;
  background: #fff;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: 24px;
  box-shadow: var(--umdpc-shadow-soft);
  transition: box-shadow 0.25s ease;
}

#functions .box {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#functions .box:hover {
  transform: translateY(-8px);
}

#functions .box:hover::after {
  box-shadow: var(--umdpc-shadow);
}

#functions .icon {
  position: relative;
  z-index: 1;
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 0 18px;
  color: #fff;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--umdpc-blue-dark), var(--umdpc-blue));
  box-shadow: 0 14px 28px rgba(23, 105, 166, 0.22);
}

#functions .icon i {
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

#functions .description {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  color: #344054;
  font-size: 15.5px;
  line-height: 1.65;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

#functions .box:hover .description {
  color: var(--umdpc-blue-dark);
}

.committees {
  padding: 64px 0;
  background:
    radial-gradient(circle at 0 0, rgba(23, 105, 166, 0.12), transparent 22rem),
    radial-gradient(circle at 100% 100%, rgba(201, 45, 36, 0.10), transparent 20rem),
    #f8fbff;
}

.committees + .committees {
  padding-top: 24px;
}

.committees .container-fluid {
  max-width: 1140px;
}

.committees .row {
  justify-content: center;
}

.committees .accordion-list {
  width: 100%;
  padding: 0 16px 30px;
}

.committees .accordion-list ul {
  display: grid;
  gap: 16px;
}

.committees .accordion-list li,
.committees .accordion-list .accordion-item {
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: 22px;
  box-shadow: var(--umdpc-shadow-soft);
}

.committees .accordion-list li + li {
  margin-top: 0;
}

.committees .accordion-button {
  gap: 14px;
  padding: 22px 58px 22px 24px;
  color: var(--umdpc-blue-dark);
  font-weight: 800;
  background: #fff;
  box-shadow: none;
}

.committees .accordion-button::before {
  content: "";
  width: 12px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--umdpc-red), var(--umdpc-blue));
}

.committees .accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue-dark), var(--umdpc-blue));
}

.committees .accordion-button:not(.collapsed)::before {
  background: #fff;
}

.committees .accordion-button:focus {
  border-color: rgba(23, 105, 166, 0.35);
  box-shadow: 0 0 0 4px rgba(23, 105, 166, 0.12);
}

.committees .accordion-body {
  padding: 24px 28px 26px;
  color: #4b5565;
  background:
    linear-gradient(90deg, rgba(23, 105, 166, 0.06), transparent),
    #fff;
}

.committees .accordion-body strong {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--umdpc-red);
  font-size: 15px;
}

.committees .accordion-body p {
  display: inline-flex;
  margin: 6px 8px 6px 0;
  padding: 8px 12px;
  color: #344054;
  background: #f3f8fc;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: 999px;
  font-size: 14px;
}

.school {
  padding: 72px 0;
}

.school .content {
  height: 100%;
  padding: 30px !important;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.22), transparent 13rem),
    linear-gradient(145deg, var(--umdpc-blue-dark), var(--umdpc-blue));
  border-radius: 28px;
  box-shadow: var(--umdpc-shadow);
}

.school .content h4 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.18;
}

.school .content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.school .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: 22px;
  box-shadow: var(--umdpc-shadow-soft);
}

.school .accordion-button {
  padding: 22px 58px 22px 24px;
  color: var(--umdpc-blue-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  background: #fff;
}

.school .accordion-button .num {
  width: 12px;
  height: 36px;
  margin-right: 14px;
  padding-right: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--umdpc-red), var(--umdpc-blue));
}

.school .accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
}

.school .accordion-button:not(.collapsed) .num {
  background: #fff;
}

.school .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(23, 105, 166, 0.12);
}

.school .accordion-body {
  padding: 24px 28px 28px;
  background: #fff;
}

.school .accordion-body p,
.school .accordion-body P {
  margin: 0 0 10px;
  padding: 12px 14px;
  color: #344054;
  background: #f5f9fc;
  border-left: 4px solid rgba(23, 105, 166, 0.42);
  border-radius: 14px;
  line-height: 1.55;
}

.faq {
  padding: 72px 0;
}

.faq .faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.faq .faq-list li {
  margin-bottom: 16px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-bottom: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: 22px;
  box-shadow: var(--umdpc-shadow-soft);
}

.faq .faq-list .question {
  display: block;
  min-height: 72px;
  padding: 24px 58px 22px 26px;
  color: var(--umdpc-blue-dark);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  cursor: pointer;
}

.faq .faq-list .question:not(.collapsed) {
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue-dark), var(--umdpc-blue));
}

.faq .faq-list i {
  left: auto;
  right: 26px;
  top: 28px;
  color: var(--umdpc-red);
  font-size: 15px;
}

.faq .faq-list .question:not(.collapsed) i {
  color: #fff;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 14px 26px;
  color: #475467;
  line-height: 1.65;
}

.faq .faq-list .title a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-red), var(--umdpc-blue));
  border-radius: 999px;
  font-weight: 800;
}

.faq .faq-list .title a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue-dark), var(--umdpc-blue));
}

@media (prefers-reduced-motion: reduce) {
  .features .image {
    animation: none;
  }
}

@media (max-width: 992px) {
  .features .image {
    min-height: 360px;
    margin-bottom: 12px;
  }

  #functions .description {
    min-height: 150px;
  }
}

@media (max-width: 768px) {
  .features .icon-box {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .features .icon-box:hover,
  #functions .box:hover {
    transform: none;
  }

  #functions .box {
    padding: 24px 32px;
  }

  #functions .box::before {
    left: 32px;
    right: 32px;
  }

  .committees .accordion-list {
    padding: 0 0 24px;
  }

  .committees .accordion-button,
  .school .accordion-button,
  .faq .faq-list .question {
    padding-left: 20px;
  }

  .school .content {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Additional Section Polish
--------------------------------------------------------------*/
#heroo,
#about,
#values,
#bank-details,
#downloads,
#gallery,
#contact-us {
  position: relative;
  overflow: hidden;
}

#heroo,
#values,
#downloads,
#contact-us {
  background:
    radial-gradient(circle at 10% 18%, rgba(23, 105, 166, 0.12), transparent 24rem),
    radial-gradient(circle at 92% 82%, rgba(201, 45, 36, 0.10), transparent 22rem),
    linear-gradient(135deg, #f8fcff 0%, #eef6fb 100%);
}

#heroo {
  padding: 76px 0;
}

#heroo .row {
  align-items: center;
  row-gap: 28px;
}

#heroo img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 30px;
  box-shadow: 0 28px 64px rgba(11, 49, 85, 0.18);
}

#heroo .content {
  padding: 34px !important;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-left: 6px solid var(--umdpc-red);
  border-radius: 28px;
  box-shadow: var(--umdpc-shadow);
}

#heroo .content h3 {
  color: var(--umdpc-blue-dark);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
}

#heroo .content p {
  color: #475467;
  font-size: 16px;
  line-height: 1.75;
}

#heroo .content p strong {
  color: var(--umdpc-blue-dark);
}

#myBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(23, 105, 166, 0.22);
  font-weight: 800;
}

#myBtn:hover {
  background: linear-gradient(135deg, var(--umdpc-red), var(--umdpc-blue-dark));
}

#about {
  padding: 76px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

#about .row,
#values .row {
  row-gap: 24px;
}

#about .card,
#values .card {
  min-height: 360px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background-position: center;
  box-shadow: var(--umdpc-shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

#about .card::before,
#values .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 49, 85, 0.08), rgba(11, 49, 85, 0.60)),
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.26), transparent 14rem);
  transition: opacity 0.28s ease;
}

#about .card:hover,
#values .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--umdpc-shadow);
}

#about .card-body,
#values .card-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(11, 49, 85, 0.14);
  backdrop-filter: blur(8px);
  transition: background 0.28s ease, color 0.28s ease;
}

#about .card-title,
#values .card-title {
  margin-bottom: 10px;
}

#about .card-title a,
#values .card-title a {
  color: var(--umdpc-blue-dark);
  font-weight: 900;
}

#about .card-text,
#values .card-text {
  color: #475467;
  line-height: 1.65;
}

#about .card:hover .card-body {
  background: linear-gradient(135deg, var(--umdpc-blue-dark), var(--umdpc-blue));
}

#values .card:hover .card-body {
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
}

#about .card:hover .card-title a,
#about .card:hover .card-text,
#values .card:hover .card-title a,
#values .card:hover .card-text,
#values .card:hover .read-more a {
  color: #fff;
}

#values {
  padding: 72px 0;
}

#values .read-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 16px;
  color: var(--umdpc-blue);
  background: rgba(23, 105, 166, 0.08);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

#values .card:hover .read-more a {
  background: rgba(255, 255, 255, 0.18);
}

#bank-details {
  padding: 72px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(23, 105, 166, 0.12), transparent 22rem),
    radial-gradient(circle at 88% 70%, rgba(201, 45, 36, 0.10), transparent 20rem),
    #ffffff;
}

#bank-details .bank-details-grid {
  margin-top: 32px !important;
}

#bank-details .bank-details-grid > .row {
  width: 100%;
  row-gap: 24px;
  margin-bottom: 24px;
}

#bank-details .bank-details-grid > br {
  display: none;
}

#bank-details .bank-card {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  padding: 34px 28px;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: 28px;
  box-shadow: var(--umdpc-shadow-soft);
}

#bank-details .bank-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--umdpc-blue), var(--umdpc-red));
}

#bank-details .bank-card i {
  width: 60px;
  height: 60px;
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue-dark), var(--umdpc-blue));
}

#bank-details .bank-card h3 {
  color: var(--umdpc-blue-dark);
  font-size: 23px;
  font-weight: 900;
}

#bank-details .bank-card p {
  margin-bottom: 10px;
  color: #475467;
  font-size: 15px;
  line-height: 1.6;
}

#bank-details .bank-card strong {
  color: var(--umdpc-blue-dark);
}

#downloads {
  padding: 76px 0;
}

#downloads .container-fluid {
  max-width: 1180px;
}

#downloads .row {
  justify-content: center;
  row-gap: 28px;
}

#downloads .content {
  margin-bottom: 24px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.24), transparent 14rem),
    linear-gradient(145deg, var(--umdpc-blue-dark), var(--umdpc-blue));
  border-radius: 28px;
  box-shadow: var(--umdpc-shadow);
}

#downloads .content h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

#downloads .content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

#downloads .img {
  min-height: 520px;
  border: 8px solid #fff;
  border-radius: 30px;
  box-shadow: var(--umdpc-shadow);
}

#downloads .accordion-list {
  padding: 0 0 24px;
}

#downloads .accordion-list ul {
  display: grid;
  gap: 16px;
}

#downloads .accordion-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: 22px;
  box-shadow: var(--umdpc-shadow-soft);
}

#downloads .accordion-button {
  gap: 14px;
  padding: 22px 58px 22px 24px;
  color: var(--umdpc-blue-dark);
  background: #fff;
  font-weight: 900;
  box-shadow: none;
}

#downloads .accordion-button::before {
  content: "";
  width: 12px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--umdpc-red), var(--umdpc-blue));
}

#downloads .accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
}

#downloads .accordion-button:not(.collapsed)::before {
  background: #fff;
}

#downloads .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(23, 105, 166, 0.12);
}

#downloads .accordion-body {
  display: grid;
  gap: 10px;
  padding: 24px 28px 28px;
  background: #fff;
}

#downloads .accordion-body a {
  display: block;
  padding: 12px 14px 12px 42px;
  position: relative;
  color: #344054;
  background: #f5f9fc;
  border: 1px solid rgba(23, 105, 166, 0.08);
  border-radius: 14px;
  font-weight: 700;
}

#downloads .accordion-body a::before {
  content: "\f019";
  position: absolute;
  left: 14px;
  top: 13px;
  color: var(--umdpc-red);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#downloads .accordion-body a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
}

#downloads .accordion-body a:hover::before {
  color: #fff;
}

#gallery {
  padding: 76px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

#gallery .gallery-slider {
  padding: 18px 0 46px;
}

#gallery .swiper-slide {
  transition: transform 0.28s ease, filter 0.28s ease;
}

#gallery .swiper-slide a {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--umdpc-shadow-soft);
}

#gallery .swiper-slide img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

#gallery .swiper-slide a:hover img {
  transform: scale(1.06);
}

#gallery .swiper-slide-active {
  padding: 5px;
  border: 5px solid transparent;
  border-radius: 30px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red)) border-box;
  transform: translateY(-8px);
}

#gallery .swiper-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 105, 166, 0.22);
  opacity: 1;
}

#gallery .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--umdpc-red);
}

#contact-us {
  padding: 76px 0;
}

#contact-us .contact-panel,
#contact-us .contact-form-card {
  position: relative;
  overflow: hidden;
}

#contact-us .contact-panel::before,
#contact-us .contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--umdpc-blue), var(--umdpc-red));
}

#contact-us .contact-panel {
  text-align: left;
}

#contact-us .contact-panel i {
  margin-bottom: 6px;
}

#contact-us .contact-form-card {
  border-radius: 28px;
}

#contact-us .contact-form-card textarea {
  min-height: 170px;
}

@media (max-width: 992px) {
  #heroo img,
  #downloads .img {
    min-height: 340px;
  }

  #downloads .img {
    order: -1;
  }
}

@media (max-width: 768px) {
  #heroo,
  #about,
  #values,
  #bank-details,
  #downloads,
  #gallery,
  #contact-us {
    padding: 52px 0;
  }

  #heroo .content {
    padding: 24px !important;
  }

  #about .card,
  #values .card {
    min-height: 320px;
  }

  #bank-details .bank-card,
  #downloads .content {
    padding: 24px;
  }

  #downloads .accordion-button {
    padding-left: 20px;
  }

  #gallery .swiper-slide img {
    height: 210px;
  }
}

/*--------------------------------------------------------------
# Findings And Resolutions
--------------------------------------------------------------*/
#findings-and-resolutions {
  padding: 76px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(23, 105, 166, 0.12), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(201, 45, 36, 0.10), transparent 22rem),
    linear-gradient(135deg, #ffffff 0%, #f4f9fd 100%);
}

#findings-and-resolutions .row {
  row-gap: 28px;
}

#findings-and-resolutions .row > [class*="col-"] {
  display: flex;
}

#findings-and-resolutions .speaker {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: 26px;
  box-shadow: var(--umdpc-shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

#findings-and-resolutions .speaker::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 2;
  background: linear-gradient(90deg, var(--umdpc-blue), var(--umdpc-red));
}

#findings-and-resolutions .speaker:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 105, 166, 0.18);
  box-shadow: var(--umdpc-shadow);
}

#findings-and-resolutions .speaker img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

#findings-and-resolutions .speaker:hover img {
  transform: scale(1.05);
}

#findings-and-resolutions .speaker .details {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  position: static;
  inset: auto;
  padding: 24px;
  text-align: left;
  background: #fff;
}

#findings-and-resolutions .speaker .details h3,
#findings-and-resolutions .speaker .details h4,
#findings-and-resolutions .speaker .details h5 {
  flex: 1;
  margin: 0 0 18px;
  color: var(--umdpc-blue-dark);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: none;
}

#findings-and-resolutions .speaker .details h3 a,
#findings-and-resolutions .speaker .details h4 a,
#findings-and-resolutions .speaker .details h5 a {
  color: var(--umdpc-blue-dark);
}

#findings-and-resolutions .speaker .details p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

#findings-and-resolutions .speaker .details p + p {
  margin-top: 12px;
}

#findings-and-resolutions .speaker .details p a,
#findings-and-resolutions .speaker .details p a h5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 11px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#findings-and-resolutions .speaker .details p a:hover,
#findings-and-resolutions .speaker .details p a:hover h5 {
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-red), var(--umdpc-blue-dark));
}

@media (max-width: 768px) {
  #findings-and-resolutions {
    padding: 52px 0;
  }

  #findings-and-resolutions .speaker:hover {
    transform: none;
  }

  #findings-and-resolutions .speaker img {
    height: 200px;
  }

  #findings-and-resolutions .speaker .details {
    padding: 22px;
  }
}

/*--------------------------------------------------------------
# Worldwide News Widget
--------------------------------------------------------------*/
.world-news-widget {
  padding: 34px 0 62px;
  background:
    radial-gradient(circle at 8% 20%, rgba(23, 105, 166, 0.12), transparent 22rem),
    radial-gradient(circle at 92% 78%, rgba(201, 45, 36, 0.10), transparent 20rem),
    linear-gradient(135deg, #eef6fb 0%, #ffffff 100%);
}

.hero-flyout-stack {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(24px, 7vh, 70px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: min(390px, calc(100% - 36px));
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.hero-flyout-stack.is-visible,
.hero-flyout-stack.is-interacting {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.hero-flyout-stack.is-visible .hero-news-flyout:nth-child(1) {
  animation: flyout-pop 0.48s ease both;
}

.hero-flyout-stack.is-visible .hero-news-flyout:nth-child(2) {
  animation: flyout-pop 0.48s 0.08s ease both;
}

.hero-flyout-stack.is-visible .hero-news-flyout:nth-child(3) {
  animation: flyout-pop 0.48s 0.16s ease both;
}

@keyframes flyout-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-news-flyout {
  position: static;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0;
  overflow: visible;
  pointer-events: none;
  background: transparent;
}

.hero-news-flyout .world-news-shell {
  width: max-content;
  max-width: 100%;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(14px);
  background: transparent;
}

.hero-news-flyout.world-news-open .world-news-shell {
  width: 100%;
  background: #fff;
}

.staff-alert-toggle {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.22), transparent 16rem),
    linear-gradient(135deg, #8f1717 0%, var(--umdpc-red) 36%, var(--umdpc-blue-dark) 100%);
}

.staff-alert-toggle small {
  color: #ffe7e4;
}

.staff-alert-toggle strong {
  max-width: 28ch;
}

.staff-alert-toggle em {
  color: rgba(255, 255, 255, 0.9);
}

.staff-alert-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0 16px;
  padding: 8px 14px;
  color: #8f1717;
  background: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.staff-alert-readmore:hover {
  color: #8f1717;
  background: #ffe4e1;
}

.staff-alert-toggle .world-news-toggle-icon {
  color: #8f1717;
}

.staff-alert-body {
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 45, 36, 0.12), transparent 22rem),
    linear-gradient(135deg, #fff9f8 0%, #f6fbff 100%);
}

.staff-alert-summary {
  border-left-color: var(--umdpc-red);
}

.staff-alert-list {
  grid-template-columns: 1fr;
}

.staff-alert-item {
  display: flex;
  flex-direction: column;
}

.staff-alert-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.staff-alert-footer .world-news-read {
  text-decoration: none;
}

.umdpc-latest-flyout .world-news-toggle {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.22), transparent 16rem),
    linear-gradient(135deg, var(--umdpc-red), var(--umdpc-blue-dark) 58%, var(--umdpc-blue));
}

.umdpc-latest-flyout .world-news-toggle small {
  color: #ffe6e3;
}

.umdpc-latest-flyout .world-news-toggle-icon {
  color: var(--umdpc-red);
}

.umdpc-latest-flyout .world-news-summary {
  border-left-color: var(--umdpc-blue);
}

.hero-news-flyout .world-news-toggle {
  width: auto;
  min-width: 210px;
  padding: 12px 14px 12px 16px;
  border-radius: 24px;
}

.hero-news-flyout .world-news-toggle small {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.hero-news-flyout .world-news-toggle strong {
  font-size: 16px;
  line-height: 1.1;
}

.hero-news-flyout .world-news-toggle em {
  display: none;
  font-size: 12px;
  line-height: 1.45;
}

.hero-news-flyout .world-news-toggle:not(.collapsed) {
  width: 100%;
  border-radius: 24px 24px 0 0;
}

.hero-news-flyout .world-news-toggle:not(.collapsed) em {
  display: block;
}

.hero-news-flyout .world-news-toggle-icon {
  width: 38px;
  height: 38px;
}

.hero-news-flyout .world-news-body {
  max-height: min(58vh, 520px);
  overflow-y: auto;
  padding: 18px;
}

.hero-news-flyout .world-news-summary {
  padding: 14px 16px;
}

.hero-news-flyout .world-news-list {
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-news-flyout .world-news-item {
  padding: 16px;
}

.hero-news-flyout .world-news-footer {
  align-items: flex-start;
  flex-direction: column;
}

.world-news-shell {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23, 105, 166, 0.12);
  border-radius: 28px;
  box-shadow: var(--umdpc-shadow-soft);
}

.world-news-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 24px 28px;
  text-align: left;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.22), transparent 16rem),
    linear-gradient(135deg, var(--umdpc-blue-dark), var(--umdpc-blue) 60%, var(--umdpc-red));
  border: 0;
}

.world-news-toggle-copy {
  display: grid;
  gap: 5px;
}

.world-news-toggle small {
  color: #bfeff2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.world-news-toggle strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.world-news-toggle em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.world-news-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  color: var(--umdpc-blue-dark);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(11, 49, 85, 0.22);
  transition: transform 0.25s ease;
}

.world-news-toggle:not(.collapsed) .world-news-toggle-icon {
  transform: rotate(180deg);
}

.world-news-body {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(23, 105, 166, 0.05), rgba(201, 45, 36, 0.04)),
    #fff;
}

.world-news-summary {
  margin-bottom: 20px;
  padding: 20px 22px;
  background: #f4f9fd;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-left: 5px solid var(--umdpc-red);
  border-radius: 20px;
}

.world-news-summary span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--umdpc-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.world-news-summary p {
  margin: 0;
  color: var(--umdpc-blue-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.world-news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.world-news-item {
  min-height: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(23, 105, 166, 0.10);
  border-radius: 20px;
  box-shadow: var(--umdpc-shadow-soft);
}

.world-news-item span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--umdpc-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-news-item h4 {
  margin: 0 0 16px;
  color: var(--umdpc-blue-dark);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.world-news-item h4 a {
  color: var(--umdpc-blue-dark);
}

.world-news-item p {
  margin: 0;
  color: #667085;
  line-height: 1.6;
}

.world-news-read {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-blue), var(--umdpc-red));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.world-news-read:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--umdpc-red), var(--umdpc-blue-dark));
}

.world-news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.world-news-footer small {
  color: var(--umdpc-muted);
  font-weight: 700;
}

.world-news-footer button {
  padding: 11px 18px;
  color: var(--umdpc-blue-dark);
  background: #fff;
  border: 1px solid rgba(23, 105, 166, 0.18);
  border-radius: 999px;
  font-weight: 900;
}

.world-news-footer button:hover {
  color: #fff;
  background: var(--umdpc-blue);
}

@media (max-width: 992px) {
  .world-news-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .world-news-widget {
    padding: 26px 0 44px;
  }

  .hero-news-flyout {
    padding: 0;
  }

  .hero-flyout-stack {
    right: 14px;
    bottom: 18px;
    width: calc(100% - 28px);
  }

  .world-news-toggle,
  .world-news-body {
    padding: 22px;
  }

  .hero-news-flyout .world-news-toggle {
    min-width: 0;
    width: 100%;
    padding: 12px 14px;
  }

  .hero-news-flyout .world-news-toggle em {
    display: none;
  }

  .hero-news-flyout .world-news-body {
    max-height: 52vh;
    padding: 16px;
  }

  .staff-alert-footer .world-news-read {
    width: 100%;
  }

  .staff-alert-readmore {
    display: flex;
    margin: 10px 16px 0;
  }

  .world-news-list {
    grid-template-columns: 1fr;
  }

  .world-news-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Hero Slide Fit
--------------------------------------------------------------*/
#hero {
  margin-top: 116px;
  height: calc(100vh - 116px);
  min-height: 620px;
  background:
    radial-gradient(circle at 16% 20%, rgba(23, 105, 166, 0.32), transparent 24rem),
    linear-gradient(135deg, #061e36, var(--umdpc-blue-dark));
}

#hero .carousel-item {
  background-color: #061e36;
  background-position: center top !important;
}

#heroCarousel .carousel-item[data-bg$="slide-10.webp"] {
  background-size: contain !important;
  background-position: center center !important;
}

#heroCarousel .carousel-item[data-bg$="slide-3.webp"] {
  background-size: auto 94% !important;
  background-position: center 44% !important;
}

#heroCarousel .carousel-item[data-bg$="slide-5.webp"],
#heroCarousel .carousel-item[data-bg$="slide-6.webp"],
#heroCarousel .carousel-item[data-bg$="slide-8.webp"],
#heroCarousel .carousel-item[data-bg$="slide-9.webp"] {
  background-position: center 16% !important;
}

#heroCarousel .carousel-item[data-bg$="slide-7.webp"] {
  background-size: contain !important;
  background-position: center center !important;
}

#hero::after {
  background:
    linear-gradient(90deg, rgba(6, 30, 54, 0.44), rgba(6, 30, 54, 0.12) 48%, rgba(6, 30, 54, 0.36)),
    linear-gradient(0deg, rgba(6, 30, 54, 0.34), transparent 46%);
}

#hero .container {
  margin-bottom: 42px;
}

@media (max-width: 991px) {
  #hero {
    margin-top: 116px;
    height: calc(100vh - 116px);
    min-height: 560px;
  }

  #hero .carousel-item {
    background-size: cover !important;
    background-position: center center !important;
  }

  #heroCarousel .carousel-item[data-bg] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 576px) {
  #hero {
    margin-top: 116px;
    height: calc(100vh - 116px);
    min-height: 520px;
  }

  #hero .container {
    margin-bottom: 24px;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: transform !important;
  transition-duration: 0.6s !important;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end,
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev {
  opacity: 1 !important;
}

#hero::after {
  background: transparent;
}

@media (max-width: 991px) {
  #hero .carousel-item {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  #heroCarousel .carousel-item[data-bg] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}

/*--------------------------------------------------------------
# Mobile App Upgrade
--------------------------------------------------------------*/
:root {
  --umdpc-brand-navy: #0c4060;
  --umdpc-brand-blue: #2679b1;
  --umdpc-brand-sky: #5ab7e8;
  --umdpc-brand-gold: #f2c56b;
  --umdpc-ink: #123047;
  --umdpc-soft-ink: #5c7286;
  --umdpc-surface: #ffffff;
  --umdpc-surface-soft: rgba(255, 255, 255, 0.78);
  --umdpc-border: rgba(18, 48, 71, 0.1);
  --umdpc-shadow: 0 20px 45px rgba(7, 36, 58, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(90, 183, 232, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(242, 197, 107, 0.12), transparent 24%),
    linear-gradient(180deg, #f5fbff 0%, #ffffff 26%, #f7fbfe 100%);
  color: var(--umdpc-ink);
}

a {
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

#topbar {
  background: linear-gradient(135deg, #0b466b 0%, #2679b1 100%);
  box-shadow: 0 10px 25px rgba(11, 70, 107, 0.18);
}

.topbar-link {
  color: inherit;
  font-weight: 600;
}

#topbarKampalaTime {
  margin-left: 6px;
  font-weight: 800;
}

.topbar-link:hover,
.topbar-link:focus {
  color: #f8fdff;
  text-decoration: underline;
}

#header {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(12, 64, 96, 0.08);
}

#header .logo a {
  color: var(--umdpc-brand-navy);
}

.renew-btn {
  background: linear-gradient(135deg, var(--umdpc-brand-blue) 0%, var(--umdpc-brand-navy) 100%);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(38, 121, 177, 0.26);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.renew-btn:hover,
.renew-btn:focus {
  background: linear-gradient(135deg, #d66039 0%, #b12626 100%);
  transform: translateY(-1px);
}

#hero::after {
  background: transparent;
}

#hero .container {
  animation: heroRise 0.8s ease both;
}

.app-experience-strip {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 28px 0;
}

.app-experience-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.95fr);
  gap: 24px;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 197, 107, 0.24), transparent 28%),
    linear-gradient(140deg, rgba(12, 64, 96, 0.98) 0%, rgba(23, 95, 146, 0.98) 58%, rgba(75, 171, 215, 0.94) 100%);
  box-shadow: 0 28px 60px rgba(7, 36, 58, 0.16);
  color: #fff;
}

.app-experience-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -55% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(6px);
}

.app-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.app-experience-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: #fff;
}

.app-experience-card p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
}

.app-live-time {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 700;
}

.app-live-time span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-live-time strong {
  font-size: 1.05rem;
}

.app-experience-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.app-primary-action,
.app-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
  touch-action: manipulation;
}

.app-primary-action {
  background: linear-gradient(135deg, #f2c56b 0%, #f6d790 100%);
  color: #123047;
  box-shadow: 0 18px 32px rgba(8, 26, 45, 0.18);
}

.app-secondary-action {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.app-primary-action:hover,
.app-primary-action:focus,
.app-secondary-action:hover,
.app-secondary-action:focus {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(6, 20, 31, 0.18);
}

.app-primary-action.is-disabled,
.app-secondary-action.is-disabled,
.app-primary-action:disabled,
.app-secondary-action:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.app-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.app-quick-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px;
  border: 1px solid var(--umdpc-border);
  border-radius: 22px;
  background: var(--umdpc-surface-soft);
  box-shadow: var(--umdpc-shadow);
  color: var(--umdpc-ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.app-quick-card::after {
  content: "";
  position: absolute;
  inset: auto -25px -35px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(90, 183, 232, 0.11);
}

.app-quick-card i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(38, 121, 177, 0.12) 0%, rgba(12, 64, 96, 0.16) 100%);
  color: var(--umdpc-brand-blue);
  font-size: 1.35rem;
}

.app-quick-card strong,
.app-quick-card small {
  position: relative;
  z-index: 1;
}

.app-quick-card strong {
  font-size: 1.05rem;
  color: var(--umdpc-ink);
}

.app-quick-card small {
  color: var(--umdpc-soft-ink);
  font-size: 0.92rem;
  line-height: 1.55;
}

.app-quick-card:hover,
.app-quick-card:focus {
  color: var(--umdpc-ink);
  transform: translateY(-5px);
  box-shadow: 0 28px 48px rgba(7, 36, 58, 0.16);
}

.app-quick-card.is-preferred {
  border-color: rgba(38, 121, 177, 0.38);
  box-shadow: 0 30px 52px rgba(38, 121, 177, 0.14);
}

.app-quick-card.is-preferred i {
  background: linear-gradient(135deg, rgba(38, 121, 177, 0.92) 0%, rgba(12, 64, 96, 0.92) 100%);
  color: #fff;
}

.contact .info-box a,
#footer .footer-info a {
  color: inherit;
  font-weight: 600;
}

.contact .info-box a:hover,
#footer .footer-info a:hover {
  color: var(--umdpc-brand-blue);
}

.mobile-app-dock {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 995;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: min(92vw, 460px);
  padding: 10px;
  border: 1px solid rgba(18, 48, 71, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 44px rgba(7, 36, 58, 0.18);
  transform: translateX(-50%);
}

.mobile-app-dock a {
  flex: 1 1 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 58px;
  border-radius: 18px;
  color: var(--umdpc-ink);
  font-size: 0.77rem;
  font-weight: 700;
  touch-action: manipulation;
}

.mobile-app-dock a i {
  font-size: 1.12rem;
  color: var(--umdpc-brand-blue);
}

.mobile-app-dock a:hover,
.mobile-app-dock a:focus {
  background: rgba(38, 121, 177, 0.08);
  color: var(--umdpc-brand-navy);
}

.app-toast {
  position: fixed;
  left: 50%;
  bottom: calc(92px + env(safe-area-inset-bottom));
  z-index: 998;
  max-width: min(90vw, 420px);
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(12, 64, 96, 0.94);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 22px 34px rgba(7, 36, 58, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.app-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.mobile-app-dock-ready {
  padding-bottom: 0;
}

@keyframes heroRise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .app-experience-card {
    grid-template-columns: 1fr;
  }

  .app-experience-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .app-primary-action,
  .app-secondary-action {
    flex: 1 1 220px;
  }
}

@media (max-width: 991px) {
  #topbar {
    height: auto;
    padding: 8px 0;
    font-size: 13px;
  }

  #topbar .container {
    gap: 8px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  #header {
    top: 52px;
  }

  #header.header-scrolled {
    top: 0;
  }

  .app-experience-strip {
    margin-top: 0;
    padding-top: 22px;
  }

  .app-experience-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .app-experience-actions {
    flex-direction: column;
  }

  .app-primary-action,
  .app-secondary-action {
    width: 100%;
  }

  .app-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-app-dock {
    display: flex;
  }

  body.mobile-app-dock-ready {
    padding-bottom: 112px;
  }

  .back-to-top {
    bottom: 100px;
  }

  .app-toast {
    bottom: calc(120px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 767px) {
  #topbar {
    display: none !important;
  }

  #header,
  #header.header-scrolled {
    top: 0;
  }

  #hero {
    margin-top: 94px;
    height: 72vh;
    min-height: 480px;
  }

  #hero .container {
    width: calc(100% - 28px);
    padding: 22px 18px;
    border-radius: 24px;
    background: rgba(9, 25, 38, 0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .app-experience-strip {
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .hero-flyout-stack {
    right: 16px;
    bottom: 16px;
    width: min(280px, calc(100% - 32px));
  }

  .app-live-time {
    width: 100%;
    justify-content: center;
  }

  .app-quick-grid {
    grid-template-columns: 1fr;
  }

  .mobile-app-dock {
    width: calc(100vw - 18px);
    padding: 10px 8px;
  }

  .mobile-app-dock a {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*--------------------------------------------------------------
# Hero Carousel Visibility Fix
--------------------------------------------------------------*/
#hero .carousel-inner {
  height: 100%;
}

#hero .carousel-inner .carousel-item {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 1;
}

#hero .carousel-inner .carousel-item.active,
#hero .carousel-inner .carousel-item.carousel-item-next,
#hero .carousel-inner .carousel-item.carousel-item-prev,
#hero .carousel-inner .carousel-item.active.carousel-item-start,
#hero .carousel-inner .carousel-item.active.carousel-item-end,
#hero .carousel-inner .carousel-item.carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item.carousel-item-prev.carousel-item-end {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#hero .carousel-inner .carousel-item.active {
  z-index: 2;
}
