
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ef6603; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #030bef; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ef6603; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #030404;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 62px;
  margin-right: 8px;
  
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }


.navmenu .dropdown.active ul {
  display: block;
}
  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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



/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }



    .mobile-nav-active .mobile-nav-toggle {
        color: #ffa900;
        position: absolute;
        font-size: 50px;
        top: 51px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }


  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}




/* ===============================
   CALL TO ACTION – PROFESSIONAL
================================ */

.call-to-action {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #ffffff;
  padding: 80px 0;
}

.call-to-action .cta-tagline {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #fbbf24;
  margin-bottom: 10px;
}

.call-to-action .cta-slogan {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.call-to-action .cta-subtext {
  font-size: 17px;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.call-to-action .cta-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 4px;
  margin: 25px 0;
}

.call-to-action .cta-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.call-to-action .cta-description {
  font-size: 15px;
  color: #d1d5db;
  line-height: 1.7;
  max-width: 720px;
}

.call-to-action .cta-author {
  margin-top: 16px;
  font-size: 14px;
  color: #9ca3af;
}

/* CTA BUTTON */
.call-to-action .cta-btn {
  display: inline-block;
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
  transition: all 0.3s ease;
}

.call-to-action .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.45);
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .call-to-action {
    padding: 60px 20px;
    text-align: center;
  }

  .call-to-action .cta-divider {
    margin: 25px auto;
  }
}

/* ===============================
   PRESIDENT MESSAGE CARD
================================ */

.president-card {
  border-radius: 18px;
  background: #ffffff;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.president-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

/* LEFT IMAGE */
.president-id {
  max-width: 260px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* TITLE */
.president-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111827;
  position: relative;
}

.president-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #f59e0b);
  border-radius: 4px;
  margin-top: 10px;
}

/* TEXT */
.president-text {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
}

/* DIVIDER */
.message-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #d1d5db,
    transparent
  );
}

/* MOBILE */
@media (max-width: 991px) {
  .president-card {
    text-align: center;
  }

  .president-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}




/* ===============================
   OUR MISSION – PROFESSIONAL
================================ */

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  max-width: 700px;
  margin: 10px auto 0;
  color: #6b7280;
  font-size: 16px;
}

.latest-news-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

.latest-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* Badge */
.news-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}

/* Title */
.news-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
}

/* Text (AUTO CUT LONG CONTENT) */
.news-text {
  margin-top: 12px;
  font-size: 15px;
  color: #374151;
  line-height: 1.7;

  display: -webkit-box;
  -webkit-line-clamp: 4;   /* show only 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer */
.news-footer {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
}

.news-date {
  font-size: 14px;
  color: #6b7280;
}

.news-link {
  font-size: 14px;
  font-weight: 600;
  color: #f59e0b;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}

.page-header {
  background: #000; /* pure black */
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Title */
.page-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

/* Breadcrumb */
.breadcrumb-wrapper {
  font-size: 14px;
  color: #cbd5e1;
}

.breadcrumb-wrapper a {
  color: #fbbf24; /* gold accent */
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-wrapper a:hover {
  text-decoration: underline;
}

.breadcrumb-wrapper .separator {
  margin: 0 6px;
  color: #9ca3af;
}

.breadcrumb-wrapper .current {
  color: #ffffff;
  font-weight: 500;
}

/* Mobile fix */
@media (max-width: 767px) {
  .page-title {
    font-size: 22px;
  }

  .breadcrumb-wrapper {
    text-align: left;
  }
}
/* card */
/* ===============================
   ACF PROFESSIONAL CARDS
================================ */
.acf-card {
  border: none;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.35s ease;
}

.acf-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.2);
}

/* Card Title */
.acf-card .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

/* Card Text */
.acf-card .card-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
}

/* Mobile Optimization */
@media (max-width: 767px) {
  .acf-card {
    border-radius: 14px;
  }

  .acf-card .card-title {
    font-size: 18px;
  }
}

/* gallery */
/* ===============================
   BEAUTIFUL GALLERY
================================ */
.gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.1)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: all 0.35s ease;
}

.gallery-overlay h6 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

/* Hover Effects */
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.25);
}

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

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* Mobile */
@media (max-width: 767px) {
  .gallery-card img {
    height: 220px;
  }
}

/* power and duties */
 /* ===============================
   ACF ROLE CARDS
================================ */
.acf-card {
  border: none;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition: all 0.35s ease;
}

.acf-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.2);
}

/* Card Title */
.acf-card .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

/* List Styling */
.acf-list {
  padding-left: 18px;
  margin: 0;
}

.acf-list li {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 767px) {
  .acf-card {
    border-radius: 14px;
  }

  .acf-card .card-title {
    font-size: 18px;
  }
}

/* ===============================
   PROFESSIONAL FLOATING COMPLAINT TAB
================================ */
.floating-complaint-vertical {
  position: fixed;
  right: -46px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;

  background: linear-gradient(
    to bottom,
    #1f4ed8,
    #1e40af
  );
  color: #ffffff;

  padding: 12px 24px;
  border-radius: 10px 10px 0 0;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;

  /* ✅ Clean 3D Depth */
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset, /* soft top highlight */
    0 8px 0 #1e3a8a,                       /* solid base */
    0 16px 30px rgba(0,0,0,0.35);          /* natural shadow */

  transition: all 0.25s ease;
  z-index: 9999;
}

/* Hover – Subtle, Professional */
.floating-complaint-vertical:hover {
  right: -38px;
  color: #fff;

  box-shadow:
    0 1px 0 rgba(255,255,255,0.45) inset,
    0 10px 0 #1e3a8a,
    0 22px 40px rgba(0,0,0,0.45);
}

/* Active – Press Effect */
.floating-complaint-vertical:active {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 4px 0 #1e3a8a,
    0 8px 16px rgba(0,0,0,0.3);
}

/* Mobile */
@media (max-width: 767px) {
  .floating-complaint-vertical {
    right: -52px;
    font-size: 12px;
    padding: 10px 20px;
  }
}
.page-banner {
    position: relative;

    width: 100%;
    margin-left: 0;

    height: 60vh;
    min-height: 360px;
    max-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-repeat: no-repeat;
    background-position: center center;

    background-size: cover;   
    background-color: #000;  

    overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
    .page-banner {
        height: 42vh;
        min-height: unset;
        max-height: unset;
        background-size: cover;
        background-position: center;
        margin-top: -28px;
    }
}

/* Overlay */
.page-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Content */
.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Breadcrumb clean */
.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 8px;
}

.breadcrumbs ol li::after {
    content: "/";
    margin-left: 8px;
    color: rgba(255,255,255,0.6);
}

.breadcrumbs ol li:last-child::after {
    content: "";
}
