/**
* Template Name: Bootslander
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

a {
  color: #1acc8d;
  text-decoration: none;
}

a:hover {
  color: #34e5a6;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", 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 #1acc8d;
  border-top-color: #d2f9eb;
  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: #1acc8d;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #2be4a2;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(1, 4, 136, 0.9);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(1, 4, 136, 0.9);
  height: 60px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# 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-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #1acc8d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

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

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #01036f;
}

.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: #1acc8d;
}

.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 {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

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

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

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

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

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

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #1acc8d;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: url("../img/hero-bg.jpg");
  position: relative;
  padding: 120px 0 0 0;
}

#hero:before {
  content: "";
  background: rgba(2, 5, 161, 0.91);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #1acc8d;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1acc8d;
}

#hero .btn-get-started:hover {
  background: #17b57d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    max-width: 50%;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #1acc8d;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #010483;
}

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

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  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;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 40px 0 0 0;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #010483;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #7ceec6;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #1acc8d;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #1acc8d;
  border-color: #1acc8d;
}

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

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1acc8d;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about.png") center center no-repeat;
  background-size: contain;
  min-height: 300px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f5ff;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #010483;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #01036f;
}

.features .icon-box:hover {
  background: #ebebff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #1acc8d;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #010483;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content+.content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #010483;
}

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

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

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1acc8d;
}

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

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/cta-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 3, 111, 0.8);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1acc8d;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.team .member img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #01036f;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #0d12fc;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #01036f;
}

.team .member .social {
  margin-top: 10px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #01036f;
}

.team .member .social a:hover {
  color: #1acc8d;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Procurement Tracking
--------------------------------------------------------------*/
.procurement {
  background: #f7f9ff;
}

/* KPI strip */
.procurement .pt-kpi-row {
  margin-bottom: 28px;
}

.procurement .pt-kpi {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 18px rgba(1, 4, 131, 0.07);
  border: 1px solid #e8eaf4;
  height: 100%;
}

.procurement .pt-kpi-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.procurement .pt-kpi-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.procurement .pt-kpi-val {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #010483;
  line-height: 1;
}

.procurement .pt-kpi-label {
  font-size: 12px;
  color: #7d829f;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Toolbar */
.procurement .pt-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  justify-content: space-between;
}

.procurement .pt-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.procurement .pt-fpill {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid #e2e6f3;
  background: #fff;
  font-size: 12.5px;
  font-weight: 600;
  color: #6b708c;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font-family: "Open Sans", sans-serif;
}

.procurement .pt-fpill:hover {
  border-color: #1acc8d;
  color: #010483;
  background: #edfaf4;
}

.procurement .pt-fpill.active {
  background: #010483;
  border-color: #010483;
  color: #fff;
}

/* Search */
.procurement .pt-search-wrap {
  position: relative;
  flex-shrink: 0;
}

.procurement .pt-search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9197b5;
  font-size: 14px;
  pointer-events: none;
}

.procurement .pt-search-wrap input {
  padding: 9px 14px 9px 36px;
  border: 1.5px solid #e2e6f3;
  border-radius: 999px;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  color: #1b1f3b;
  background: #fff;
  outline: none;
  width: 240px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.procurement .pt-search-wrap input:focus {
  border-color: #1acc8d;
  box-shadow: 0 0 0 3px rgba(26, 204, 141, 0.14);
}

/* Table wrap */
.procurement .pt-table-wrap {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e6f3;
  box-shadow: 0 8px 32px rgba(1, 4, 131, 0.07);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Header row */
.procurement .pt-table-head {
  display: flex;
  align-items: center;
  padding: 13px 20px;
  background: #010483;
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-width: 760px;
}

/* Column widths */
.procurement .pt-col-ref    { width: 130px; flex-shrink: 0; }
.procurement .pt-col-title  { flex: 1; min-width: 0; padding: 0 12px; }
.procurement .pt-col-mode   { width: 130px; flex-shrink: 0; text-align: center; }
.procurement .pt-col-budget { width: 120px; flex-shrink: 0; text-align: right; }
.procurement .pt-col-status { width: 120px; flex-shrink: 0; text-align: center; }
.procurement .pt-col-date   { width: 110px; flex-shrink: 0; text-align: center; }

/* Data rows */
.procurement .pt-table-body {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 760px;
}

.procurement .pt-row {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f3fb;
  transition: background 0.18s;
  gap: 0;
}

.procurement .pt-row:last-child {
  border-bottom: none;
}

.procurement .pt-row:hover {
  background: #f5f7ff;
}

/* Ref chip */
.procurement .pt-ref-chip {
  display: inline-block;
  padding: 4px 10px;
  background: #f0f3ff;
  color: #010483;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Title cell */
.procurement .pt-col-title strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1b1f3b;
  margin-bottom: 3px;
  line-height: 1.4;
}

.procurement .pt-col-title span {
  font-size: 12px;
  color: #7d829f;
  line-height: 1.4;
}

/* Mode badges */
.procurement .pt-mode-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.procurement .pt-mode-badge.bidding { background: #e8f4ff; color: #0d69c7; }
.procurement .pt-mode-badge.svp     { background: #e8fff5; color: #139c69; }
.procurement .pt-mode-badge.nego    { background: #fff5e8; color: #d47c00; }
.procurement .pt-mode-badge.direct  { background: #f3e8ff; color: #7c3aed; }

/* Budget */
.procurement .pt-col-budget {
  font-size: 13px;
  font-weight: 600;
  color: #1b1f3b;
  font-family: "Poppins", sans-serif;
}

/* Status */
.procurement .pt-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
}

.procurement .pt-status i {
  font-size: 7px;
}

.procurement .pt-status.completed { color: #1a7a50; }
.procurement .pt-status.ongoing   { color: #d47c00; }
.procurement .pt-status.pending   { color: #c0392b; }

/* Date */
.procurement .pt-col-date {
  font-size: 12.5px;
  color: #7d829f;
}

/* Empty state */
.procurement .pt-empty {
  padding: 50px 20px;
  text-align: center;
  color: #9197b5;
  min-width: 760px;
}

.procurement .pt-empty i {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
  opacity: 0.4;
}

.procurement .pt-empty p {
  font-size: 14px;
  margin: 0;
}

/* Footer note */
.procurement .pt-note {
  margin-top: 14px;
  font-size: 13px;
  color: #7d829f;
  display: flex;
  align-items: center;
  gap: 7px;
}

.procurement .pt-note i {
  color: #1acc8d;
  font-size: 14px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .procurement .pt-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .procurement .pt-search-wrap input {
    width: 100%;
  }
  .procurement .pt-search-wrap {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .procurement .pt-kpi {
    padding: 14px 14px;
    gap: 10px;
  }
  .procurement .pt-kpi-val {
    font-size: 22px;
  }
  .procurement .pt-fpill {
    font-size: 11.5px;
    padding: 6px 12px;
  }
  .procurement .pt-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/*--------------------------------------------------------------
# MOOE Fund Monitoring
--------------------------------------------------------------*/
.mooe-fund {
  background: #fff;
}

/* ── Filter bar ─────────────────────────────────────────────── */
.mooe-fund .mf-filters {
  background: #f7f9ff;
  border: 1px solid #e2e6f3;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 28px;
}

.mooe-fund .mf-filter-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #6b708c;
  margin-bottom: 6px;
}

.mooe-fund .mf-select {
  width: 100%;
  padding: 9px 32px 9px 12px;
  border: 1.5px solid #e2e6f3;
  border-radius: 10px;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  color: #1b1f3b;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%239197b5' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.mooe-fund .mf-select:focus {
  border-color: #1acc8d;
  box-shadow: 0 0 0 3px rgba(26,204,141,0.14);
}

.mooe-fund .mf-search-wrap {
  position: relative;
}

.mooe-fund .mf-search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9197b5;
  font-size: 14px;
  pointer-events: none;
}

.mooe-fund .mf-search {
  width: 100%;
  padding: 9px 14px 9px 36px;
  border: 1.5px solid #e2e6f3;
  border-radius: 10px;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  color: #1b1f3b;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mooe-fund .mf-search:focus {
  border-color: #1acc8d;
  box-shadow: 0 0 0 3px rgba(26,204,141,0.14);
}

/* ── KPI Cards ──────────────────────────────────────────────── */
.mooe-fund .mf-kpi-row {
  margin-bottom: 28px;
}

.mooe-fund .mf-kpi {
  background: #fff;
  border: 1px solid #e8eaf4;
  border-radius: 14px;
  padding: 18px 16px 14px;
  box-shadow: 0 4px 18px rgba(1,4,131,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mooe-fund .mf-kpi:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(1,4,131,0.1);
}

.mooe-fund .mf-kpi::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #010483, #1acc8d);
  border-radius: 14px 14px 0 0;
}

.mooe-fund .mf-kpi-rate::before { background: linear-gradient(90deg, #0d69c7, #1acc8d); }
.mooe-fund .mf-kpi-alert::before { background: linear-gradient(90deg, #c0392b, #e74c3c); }

.mooe-fund .mf-kpi-icon {
  font-size: 18px;
  color: #9197b5;
  margin-bottom: 2px;
}

.mooe-fund .mf-kpi-rate .mf-kpi-icon { color: #0d69c7; }
.mooe-fund .mf-kpi-alert .mf-kpi-icon { color: #e74c3c; }

.mooe-fund .mf-kpi-val {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #010483;
  line-height: 1.2;
  word-break: break-all;
}

.mooe-fund .mf-kpi-alert .mf-kpi-val { color: #c0392b; }

.mooe-fund .mf-kpi-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #7d829f;
}

.mooe-fund .mf-kpi-sub {
  font-size: 11px;
  color: #aab0c8;
  min-height: 14px;
}

/* ── Charts ─────────────────────────────────────────────────── */
.mooe-fund .mf-chart-row {
  margin-bottom: 28px;
}

.mooe-fund .mf-chart-card {
  background: #fff;
  border: 1px solid #e2e6f3;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(1, 4, 131, 0.06);
  padding: 20px 20px 16px;
  height: 100%;
}

.mooe-fund .mf-chart-head {
  margin-bottom: 14px;
}

.mooe-fund .mf-chart-head h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #010483;
  font-family: "Montserrat", sans-serif;
}

.mooe-fund .mf-chart-head span {
  display: block;
  font-size: 12.5px;
  color: #7d829f;
}

.mooe-fund .mf-chart-canvas-wrap {
  position: relative;
  height: 260px;
}

.mooe-fund .mf-chart-canvas-wrap-bar {
  height: 280px;
}

.mooe-fund .mf-chart-canvas-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Mini progress bar inside rate cards */
.mooe-fund .mf-kpi-bar-wrap {
  margin-top: 6px;
  height: 4px;
  background: #e8eaf4;
  border-radius: 4px;
  overflow: hidden;
}

.mooe-fund .mf-kpi-bar {
  height: 100%;
  background: linear-gradient(90deg, #0d69c7, #1acc8d);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* ── Table ──────────────────────────────────────────────────── */
.mooe-fund .mf-table-wrap {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e6f3;
  box-shadow: 0 8px 32px rgba(1,4,131,0.07);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mooe-fund .mf-table-head,
.mooe-fund .mf-row {
  display: flex;
  align-items: center;
  min-width: 860px;
}

.mooe-fund .mf-table-head {
  background: #010483;
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 12px 18px;
}

.mooe-fund .mf-tc.school { flex: 1.8; min-width: 0; padding-right: 8px; }
.mooe-fund .mf-tc.head   { flex: 1.4; min-width: 0; padding-right: 8px; }
.mooe-fund .mf-tc.amt    { width: 110px; flex-shrink: 0; text-align: right; padding-right: 8px; }
.mooe-fund .mf-tc.rate   { width: 76px;  flex-shrink: 0; text-align: center; }
.mooe-fund .mf-tc.warn   { color: #ffb3ae; }

.mooe-fund .mf-table-body {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 860px;
}

.mooe-fund .mf-row {
  padding: 14px 18px;
  border-bottom: 1px solid #f0f3fb;
  gap: 0;
  transition: background 0.18s;
}

.mooe-fund .mf-row:last-child { border-bottom: none; }
.mooe-fund .mf-row:hover      { background: #f5f7ff; }

/* Populated cell classes added by JS */
.mooe-fund .mf-cell-school  { flex: 1.8; min-width: 0; }
.mooe-fund .mf-cell-head    { flex: 1.4; min-width: 0; }
.mooe-fund .mf-cell-amt     { width: 110px; flex-shrink: 0; text-align: right; padding-right: 8px; }
.mooe-fund .mf-cell-rate    { width: 76px;  flex-shrink: 0; text-align: center; }

.mooe-fund .mf-cell-school strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1b1f3b;
}

.mooe-fund .mf-cell-school span {
  font-size: 11.5px;
  color: #7d829f;
}

.mooe-fund .mf-cell-head {
  font-size: 13px;
  color: #444;
}

.mooe-fund .mf-cell-amt {
  font-size: 12.5px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #1b1f3b;
  padding-right: 8px;
}

.mooe-fund .mf-cell-amt.warn {
  color: #c0392b;
}

/* Rate pill */
.mooe-fund .mf-rate-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.mooe-fund .mf-rate-pill.high   { background: #edfaf4; color: #1a7a50; }
.mooe-fund .mf-rate-pill.mid    { background: #fff8e8; color: #d47c00; }
.mooe-fund .mf-rate-pill.low    { background: #fff0f0; color: #c0392b; }

/* Empty state */
.mooe-fund .mf-empty {
  padding: 50px 20px;
  text-align: center;
  color: #9197b5;
  min-width: 860px;
}

.mooe-fund .mf-empty i {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
  opacity: 0.4;
}

.mooe-fund .mf-empty p { font-size: 14px; margin: 0; }

/* Footer note */
.mooe-fund .mf-note {
  margin-top: 14px;
  font-size: 13px;
  color: #7d829f;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.mooe-fund .mf-note i { color: #1acc8d; font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  .mooe-fund .mf-filters { padding: 16px; }
  .mooe-fund .mf-kpi-val { font-size: 15px; }
  .mooe-fund .mf-chart-canvas-wrap {
    height: 220px;
  }
  .mooe-fund .mf-chart-canvas-wrap-bar {
    height: 240px;
  }
}

@media (max-width: 575px) {
  .mooe-fund .mf-select,
  .mooe-fund .mf-search { font-size: 16px; }
  .mooe-fund .mf-chart-card {
    padding: 16px 16px 12px;
  }
  .mooe-fund .mf-chart-head h4 {
    font-size: 14px;
  }
  .mooe-fund .mf-chart-head span {
    font-size: 11.5px;
  }
}

/*--------------------------------------------------------------
# Financial Reports
--------------------------------------------------------------*/
.financial-reports {
  background: #f7f9ff;
}

/* Banner */
.financial-reports .fr-banner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, #010483 0%, #0d12fc 100%);
  color: #fff;
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 36px;
  box-shadow: 0 8px 30px rgba(1, 4, 131, 0.18);
}

.financial-reports .fr-banner-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 22px;
}

.financial-reports .fr-banner-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.financial-reports .fr-banner-text span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

/* Tabs */
.financial-reports .fr-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
  border-bottom: 2px solid #e2e6f3;
  padding-bottom: 0;
  flex-wrap: wrap;
}

.financial-reports .fr-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 14px 22px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: background 0.2s, color 0.2s;
  color: #6b708c;
}

.financial-reports .fr-tab i {
  font-size: 20px;
  margin-bottom: 4px;
  color: #9197b5;
  transition: color 0.2s;
}

.financial-reports .fr-tab span {
  font-size: 13.5px;
  font-weight: 700;
  color: inherit;
}

.financial-reports .fr-tab em {
  font-style: normal;
  font-size: 11px;
  color: #9197b5;
}

.financial-reports .fr-tab:hover {
  background: #eef1fb;
  color: #010483;
}

.financial-reports .fr-tab.active {
  color: #010483;
  border-bottom-color: #1acc8d;
  background: #fff;
}

.financial-reports .fr-tab.active i {
  color: #1acc8d;
}

/* Panel wrap */
.financial-reports .fr-panel-wrap {
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 32px rgba(1, 4, 131, 0.07);
  border: 1px solid #e2e6f3;
  border-top: none;
  overflow: hidden;
}

/* Panels */
.financial-reports .fr-panel {
  display: none;
}

.financial-reports .fr-panel.active {
  display: block;
}

/* Table header row */
.financial-reports .fr-panel-head {
  display: flex;
  align-items: center;
  padding: 13px 24px;
  background: #f3f6ff;
  border-bottom: 1px solid #e2e6f3;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8b90ac;
}

.financial-reports .fr-col-title  { flex: 1; }
.financial-reports .fr-col-date   { width: 110px; text-align: center; }
.financial-reports .fr-col-type   { width: 110px; text-align: center; }
.financial-reports .fr-col-action { width: 140px; text-align: center; }

/* List */
.financial-reports .fr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each row */
.financial-reports .fr-item {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #f0f3fb;
  transition: background 0.18s;
  gap: 12px;
}

.financial-reports .fr-item:last-child {
  border-bottom: none;
}

.financial-reports .fr-item:hover {
  background: #f8faff;
}

/* Document cell */
.financial-reports .fr-item-main {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.financial-reports .fr-item-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3f3;
  border-radius: 10px;
  font-size: 20px;
  color: #e74c3c;
}

.financial-reports .fr-item-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #1b1f3b;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.financial-reports .fr-item-text span {
  font-size: 13px;
  color: #7d829f;
  line-height: 1.5;
}

/* Date / Type cells */
.financial-reports .fr-item-date {
  width: 110px;
  text-align: center;
  font-size: 13px;
  color: #aab0c8;
  flex-shrink: 0;
}

.financial-reports .fr-item-type {
  width: 110px;
  text-align: center;
  flex-shrink: 0;
}

/* Badges */
.financial-reports .fr-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.financial-reports .fr-badge.memo      { background: #e8f4ff; color: #0d69c7; }
.financial-reports .fr-badge.update    { background: #fff5e8; color: #d47c00; }
.financial-reports .fr-badge.guideline { background: #e8fff5; color: #139c69; }
.financial-reports .fr-badge.form      { background: #eef1ff; color: #4b56d2; }
.financial-reports .fr-badge.checklist { background: #fff0f0; color: #c0392b; }

/* Action cell */
.financial-reports .fr-item-action {
  width: 140px;
  text-align: center;
  flex-shrink: 0;
}

.financial-reports .fr-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  background: #1acc8d;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 204, 141, 0.28);
  white-space: nowrap;
}

.financial-reports .fr-btn-download:hover {
  background: #17b57d;
  color: #fff;
  box-shadow: 0 6px 18px rgba(26, 204, 141, 0.38);
}

.financial-reports .fr-btn-download.pending {
  background: #f2f4fb;
  color: #9197b5;
  box-shadow: none;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 767px) {
  .financial-reports .fr-panel-head { display: none; }

  .financial-reports .fr-item {
    flex-wrap: wrap;
    padding: 16px;
  }

  .financial-reports .fr-item-main  { flex: 0 0 100%; }
  .financial-reports .fr-item-date  { display: none; }
  .financial-reports .fr-item-type  { width: auto; }
  .financial-reports .fr-item-action { width: auto; margin-left: auto; }

  .financial-reports .fr-tab {
    padding: 10px 14px;
  }

  .financial-reports .fr-tab em { display: none; }
}


.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #1acc8d;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #1acc8d;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #1acc8d;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #149f6e;
}

.pricing .featured h3 {
  color: #fff;
  background: #1acc8d;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #1acc8d;
  color: #fff;
}

/*--------------------------------------------------------------
# Deadlines and Advisories
--------------------------------------------------------------*/
.deadlines-advisories {
  background: #f7f9ff;
}

.deadlines-advisories .da-banner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, #010483 0%, #0d12fc 100%);
  color: #fff;
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(1, 4, 131, 0.16);
}

.deadlines-advisories .da-banner-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 22px;
  color: #1acc8d;
}

.deadlines-advisories .da-banner-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.deadlines-advisories .da-banner-text span {
  display: block;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.deadlines-advisories .da-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e2e6f3;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(1, 4, 131, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deadlines-advisories .da-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(1, 4, 131, 0.1);
}

.deadlines-advisories .da-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.deadlines-advisories .da-card-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
}

.deadlines-advisories .da-card-deadline .da-card-icon {
  background: #eef1ff;
  color: #4b56d2;
}

.deadlines-advisories .da-card-memo .da-card-icon {
  background: #e8f4ff;
  color: #0d69c7;
}

.deadlines-advisories .da-card-coa .da-card-icon {
  background: #edfaf4;
  color: #139c69;
}

.deadlines-advisories .da-card-head h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #010483;
  font-family: "Montserrat", sans-serif;
}

.deadlines-advisories .da-card-head p {
  margin: 0;
  font-size: 12.5px;
  color: #7d829f;
  line-height: 1.6;
}

.deadlines-advisories .da-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deadlines-advisories .da-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #eef1fb;
}

.deadlines-advisories .da-list li:first-child {
  padding-top: 0;
  border-top: none;
}

.deadlines-advisories .da-date-chip {
  width: 54px;
  flex-shrink: 0;
  background: #f7f9ff;
  border: 1px solid #e2e6f3;
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}

.deadlines-advisories .da-date-chip span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7d829f;
  letter-spacing: 0.5px;
}

.deadlines-advisories .da-date-chip strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  color: #010483;
  font-family: "Poppins", sans-serif;
}

.deadlines-advisories .da-item-body {
  min-width: 0;
}

.deadlines-advisories .da-item-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1b1f3b;
  margin-bottom: 4px;
  line-height: 1.5;
}

.deadlines-advisories .da-item-body span {
  display: block;
  font-size: 12.8px;
  color: #6b708c;
  line-height: 1.7;
}

.deadlines-advisories .da-list-plain li {
  gap: 0;
}

@media (max-width: 575px) {
  .deadlines-advisories .da-banner {
    flex-direction: column;
    padding: 18px 20px;
  }

  .deadlines-advisories .da-card {
    padding: 20px 16px;
  }

  .deadlines-advisories .da-card-head h3 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Helpdesk
--------------------------------------------------------------*/
.helpdesk {
  background: #fff;
}

/* Outer card */
.helpdesk .hd-card-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1, 4, 131, 0.1);
  border: 1px solid #e2e6f3;
}

/* ── Left info panel ─── */
.helpdesk .hd-info-panel {
  background: linear-gradient(160deg, #010483 0%, #0c12e0 100%);
  color: #fff;
}

.helpdesk .hd-info-inner {
  padding: 44px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.helpdesk .hd-info-logo {
  margin-bottom: 20px;
}

.helpdesk .hd-info-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.helpdesk .hd-info-inner h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 14px;
}

.helpdesk .hd-info-inner h3 span {
  color: #1acc8d;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.helpdesk .hd-info-inner > p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Contact list */
.helpdesk .hd-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}

.helpdesk .hd-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.helpdesk .hd-contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 14px;
  color: #1acc8d;
}

.helpdesk .hd-contact-list strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}

.helpdesk .hd-contact-list span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* Social icons */
.helpdesk .hd-social {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.helpdesk .hd-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.helpdesk .hd-social a:hover {
  background: #1acc8d;
  color: #fff;
}

/* ── Right form panel ─── */
.helpdesk .hd-form-panel {
  background: #fff;
}

.helpdesk .hd-form-inner {
  padding: 44px 40px;
}

.helpdesk .hd-form-title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #010483;
  margin: 0 0 4px;
}

.helpdesk .hd-form-sub {
  font-size: 13.5px;
  color: #7d829f;
  margin-bottom: 22px;
}

/* Concern pills */
.helpdesk .hd-concern-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.helpdesk .hd-pill {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid #e2e6f3;
  background: #f8f9ff;
  font-size: 12.5px;
  font-weight: 600;
  color: #6b708c;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font-family: "Open Sans", sans-serif;
}

.helpdesk .hd-pill:hover {
  border-color: #1acc8d;
  color: #010483;
  background: #edfaf4;
}

.helpdesk .hd-pill.active {
  background: #1acc8d;
  border-color: #1acc8d;
  color: #fff;
}

/* Fields */
.helpdesk .hd-field {
  display: flex;
  flex-direction: column;
}

.helpdesk .hd-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #6b708c;
  margin-bottom: 7px;
}

.helpdesk .hd-req {
  color: #e74c3c;
}

.helpdesk .hd-input-wrap {
  position: relative;
}

.helpdesk .hd-input-wrap i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #9197b5;
  pointer-events: none;
}

.helpdesk .hd-input-wrap input,
.helpdesk .hd-form textarea {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1.5px solid #e2e6f3;
  border-radius: 10px;
  font-size: 13.5px;
  font-family: "Open Sans", sans-serif;
  color: #1b1f3b;
  background: #f8f9ff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.helpdesk .hd-form textarea {
  padding: 12px 14px;
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.helpdesk .hd-input-wrap input:focus,
.helpdesk .hd-form textarea:focus {
  border-color: #1acc8d;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,204,141,0.14);
}

.helpdesk .hd-input-wrap input::placeholder,
.helpdesk .hd-form textarea::placeholder {
  color: #b0b6ce;
  font-size: 13px;
}

/* Alert boxes */
.helpdesk .hd-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.helpdesk .hd-alert i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.helpdesk .hd-alert-error  { background: #fff3f3; border: 1px solid #f5c6c6; color: #c0392b; }
.helpdesk .hd-alert-success { background: #edfaf4; border: 1px solid #a8e6cf; color: #1a7a50; }

/* Form footer */
.helpdesk .hd-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.helpdesk .hd-req-note {
  font-size: 12px;
  color: #9197b5;
}

.helpdesk .hd-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: linear-gradient(135deg, #1acc8d, #17b57d);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(26,204,141,0.32);
  transition: transform 0.15s, box-shadow 0.15s;
}

.helpdesk .hd-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(26,204,141,0.42);
}

.helpdesk .hd-btn-submit:active { transform: translateY(0); }

/* Responsive */
@media (max-width: 991px) {
  .helpdesk .hd-info-inner {
    padding: 36px 28px;
  }
  .helpdesk .hd-form-inner {
    padding: 36px 28px;
  }
}

@media (max-width: 767px) {
  .helpdesk .hd-card-wrap {
    border-radius: 14px;
  }
  .helpdesk .hd-social {
    margin-top: 20px;
  }
  .helpdesk .hd-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .helpdesk .hd-btn-submit {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
  background: #f7f9ff;
}

.faq-section .faq-item {
  background: #fff;
  border: 1px solid #e2e6f3;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(1,4,131,0.05);
  transition: box-shadow 0.2s;
}

.faq-section .faq-item:last-child {
  margin-bottom: 0;
}

.faq-section .faq-item.open {
  box-shadow: 0 8px 28px rgba(1,4,131,0.1);
  border-color: #1acc8d;
}

/* Question button */
.faq-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s;
  font-family: "Open Sans", sans-serif;
}

.faq-section .faq-question:hover {
  background: #f5f7ff;
}

.faq-section .faq-item.open .faq-question {
  background: #f5f7ff;
}

.faq-section .faq-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edfaf4;
  border-radius: 50%;
  font-size: 16px;
  color: #1acc8d;
  transition: background 0.2s, color 0.2s;
}

.faq-section .faq-item.open .faq-icon {
  background: #1acc8d;
  color: #fff;
}

.faq-section .faq-q-text {
  flex: 1;
  font-size: 14.5px;
  font-weight: 700;
  color: #1b1f3b;
  line-height: 1.45;
}

.faq-section .faq-item.open .faq-q-text {
  color: #010483;
}

.faq-section .faq-chevron {
  flex-shrink: 0;
  font-size: 14px;
  color: #9197b5;
  transition: transform 0.25s ease, color 0.2s;
}

.faq-section .faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: #1acc8d;
}

/* Answer panel */
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px 0 70px;
}

.faq-section .faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 20px 20px 70px;
}

.faq-section .faq-answer p {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: #444;
  line-height: 1.8;
}

.faq-section .faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-section .faq-answer ul {
  margin: 8px 0 10px;
  padding-left: 20px;
}

.faq-section .faq-answer ul li {
  font-size: 13.5px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2px;
}

.faq-section .faq-link {
  color: #1acc8d;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.faq-section .faq-link:hover {
  color: #17b57d;
}

/* CTA strip */
.faq-section .faq-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  background: linear-gradient(135deg, #010483 0%, #0c12e0 100%);
  color: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 14px;
}

.faq-section .faq-cta i {
  font-size: 22px;
  flex-shrink: 0;
  color: #1acc8d;
}

.faq-section .faq-cta a {
  color: #1acc8d;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.faq-section .faq-cta a:hover {
  color: #34e5a6;
}

@media (max-width: 575px) {
  .faq-section .faq-answer {
    padding: 0 14px 0 14px;
  }
  .faq-section .faq-item.open .faq-answer {
    padding: 0 14px 16px 14px;
  }
  .faq-section .faq-q-text {
    font-size: 13.5px;
  }
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

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

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

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

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

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #34e5a6;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

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

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

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

.faq .faq-list a.collapsed:hover {
  color: #1acc8d;
}

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

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

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #3f43fd;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #010483;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #0205a1;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #1acc8d;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.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: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

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

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

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

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

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

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

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

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #010246;
  color: #fff;
  border-top: 4px solid #1acc8d;
  text-align: center;
  padding: 30px 20px;
}

#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: "Montserrat", sans-serif;
}

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

#footer .footer-top .social-links a:hover {
  background: #1acc8d;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  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: #61ebba;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #4be8b0;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

#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: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1acc8d;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

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

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

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

/* Enhanced Footer Styles */
#footer {
  padding: 50px 0 0 0;
}

#footer .footer-main {
  padding-bottom: 40px;
  align-items: center;
}

/* Transparency Seal Column */
#footer .footer-seal-col {
  padding-right: 30px;
}

#footer .seal-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid #1acc8d;
  border-radius: 4px;
}

#footer .seal-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

#footer .seal-img:hover {
  transform: scale(1.08);
}

#footer .seal-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

#footer .seal-title {
  font-size: 12px;
  font-weight: 700;
  color: #1acc8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#footer .seal-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

#footer .footer-org-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

#footer .footer-org-name strong {
  color: #fff;
  font-weight: 700;
}

/* Vertical divider */
#footer .footer-divider-col {
  justify-content: center;
  padding: 0;
}

#footer .footer-vdivider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  min-height: 140px;
  align-self: stretch;
}

/* Footer sections */
#footer .footer-section {
  padding-left: 20px;
  padding-top: 22px;
}

#footer .footer-heading {
  font-size: 12px;
  font-weight: 700;
  color: #1acc8d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

#footer .footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #1acc8d;
  border-radius: 2px;
}

/* Contact list */
#footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

#footer .footer-contact-list li i {
  color: #1acc8d;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Quick links list */
#footer .footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links-list li {
  margin-bottom: 10px;
}

#footer .footer-links-list li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}

#footer .footer-links-list li a:hover {
  color: #1acc8d;
  padding-left: 6px;
}

/* About text */
#footer .footer-about-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0;
}

/* Footer bottom bar */
#footer .footer-hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0;
}

#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0;
}

#footer .footer-bottom .copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 0;
  border-top: none;
}

#footer .footer-bottom .credits {
  font-size: 13px;
  padding-top: 0;
}

@media (max-width: 767px) {
  #footer .footer-seal-col {
    margin-bottom: 30px;
  }
  #footer .footer-section {
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 25px;
  }
  #footer .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/* ============================================================
   RESPONSIVE OVERRIDES — SDO Ligao City Finance Portal
   Breakpoints: 991px (tablet landscape) | 767px (tablet portrait)
                575px (phone) | 400px (small phone)
   ============================================================ */

/* ── Scroll offset so fixed header never covers section tops ── */
section[id],
footer[id] {
  scroll-margin-top: 80px;
}

/* ── Header / Logo ─────────────────────────────────────────── */
@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 16px;
    letter-spacing: 0;
  }
}

@media (max-width: 575px) {
  #header .logo h1 {
    font-size: 13px;
  }
}

/* ── Section title ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-title {
    padding-bottom: 24px;
  }
  .section-title p {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .section-title p {
    font-size: 20px;
  }
}

/* ── Team / Accounts cards ─────────────────────────────────── */
/* Convert absolute-positioned info overlay to a natural flow
   element on mobile so cards stack cleanly without overlap     */
@media (max-width: 767px) {
  .team .member {
    margin-bottom: 28px;
  }
  .team .member .member-info {
    position: static;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
    padding: 16px 12px;
  }
}

/* On md (768-991px) 3-col layout is tight — give cards more breathing room */
@media (min-width: 768px) and (max-width: 991px) {
  .team .member h4 {
    font-size: 14px;
  }
  .team .member .member-info {
    padding: 12px 6px;
  }
}

/* ── Financial Reports ─────────────────────────────────────── */
@media (max-width: 767px) {
  /* Make tabs horizontally scrollable instead of wrapping */
  .financial-reports .fr-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #1acc8d #e2e6f3;
    padding-bottom: 0;
    gap: 0;
  }

  .financial-reports .fr-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .financial-reports .fr-tabs::-webkit-scrollbar-thumb {
    background: #1acc8d;
    border-radius: 4px;
  }

  .financial-reports .fr-tab {
    flex-shrink: 0;
    padding: 12px 16px;
    border-radius: 0;
  }

  /* Remove text clipping on document titles */
  .financial-reports .fr-item-text strong {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

@media (max-width: 575px) {
  /* Stack the info banner vertically */
  .financial-reports .fr-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
  }

  .financial-reports .fr-banner-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Compact download button */
  .financial-reports .fr-item-action {
    width: auto;
  }

  .financial-reports .fr-btn-download {
    padding: 8px 12px;
    font-size: 11.5px;
    min-width: unset;
  }

  /* Tighten panel padding */
  .financial-reports .fr-item {
    padding: 14px 14px;
  }

  .financial-reports .fr-panel-wrap {
    border-radius: 0 0 10px 10px;
  }
}

/* ── Helpdesk / Contact form ───────────────────────────────── */
@media (max-width: 767px) {
  .helpdesk .hd-info-inner {
    padding: 28px 22px 22px;
  }
  .helpdesk .hd-form-inner {
    padding: 28px 22px;
  }
}

@media (max-width: 575px) {
  .helpdesk .hd-card-wrap {
    border-radius: 12px;
  }
  .helpdesk .hd-info-inner {
    padding: 24px 18px;
  }
  .helpdesk .hd-form-inner {
    padding: 24px 18px;
  }
  .helpdesk .hd-form-title {
    font-size: 18px;
  }
  .helpdesk .hd-concern-pills {
    gap: 6px;
  }
  .helpdesk .hd-pill {
    font-size: 11.5px;
    padding: 6px 12px;
  }
  /* font-size 16px prevents iOS Safari from auto-zooming on input focus */
  .helpdesk .hd-input-wrap input,
  .helpdesk .hd-form textarea {
    font-size: 16px;
  }
  .helpdesk .hd-form-inner .row {
    --bs-gutter-y: 0.625rem;
  }
}

/* ── Footer ────────────────────────────────────────────────── */
@media (max-width: 991px) {
  #footer .footer-main {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  #footer {
    padding: 40px 0 0 0;
  }
  #footer .footer-main {
    padding-bottom: 24px;
  }
  /* Center the seal block when stacked */
  #footer .footer-seal-col {
    padding-right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 28px;
  }
  #footer .seal-wrapper {
    justify-content: center;
  }
  #footer .footer-org-name {
    text-align: center;
  }
  #footer .footer-section {
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 22px;
  }
  /* Center bottom bar on mobile */
  #footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 16px 0;
  }
}

/* ── Hero wave — extra space on very small phones ──────────── */
@media (max-width: 400px) {
  .hero-waves {
    margin-top: 20px;
    height: 40px;
  }
  #hero h1 {
    font-size: 22px;
    line-height: 28px;
  }
  #hero h2 {
    font-size: 14px;
  }
}