/**
* Template Name: Gp
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc451; /* 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: #312f2f; /* 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: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* 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: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* 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: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

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

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

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

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

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    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: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .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: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    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;
    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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    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: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    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;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

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

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

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

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

.footer .footer-links ul i {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

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

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

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

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# 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: black;
  position: relative;
}

.section-title h2::before {
  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: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: transparent; /* replaced by .hero-overlay */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

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

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

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

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

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

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

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.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;
  transform: scale(-1, -1);
}

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

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

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

/*--------------------------------------------------------------
# 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(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  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 .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: 4px;
}

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

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# CTA Banner
--------------------------------------------------------------*/
.cta-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  height: 220px;
  background-image: url('/assets/img/BG.png');
  background-size: cover;
  background-position: center;
}

.cta-banner-content {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 80, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.cta-banner-content h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}

.cta-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn-primary {
  background: #ffc451;
  color: #1a1a1a;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-btn-primary:hover {
  background: #e6b040;
  color: #1a1a1a;
}

.cta-btn-secondary {
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-btn-secondary:hover {
  background: #f0f0f0;
  color: #1a1a1a;
}

@media (max-width: 576px) {
  .cta-banner-content h3 {
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
# Contact Section Redesign
--------------------------------------------------------------*/
.contact-wrapper {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.contact-left {
  background: #f5c518;
  padding: 50px 40px;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.contact-label span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #1a1a1a;
}

.contact-left h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 14px;
  color: #2a2a2a;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-talk {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.contact-socials {
  display: flex;
  gap: 14px;
}

.contact-socials a {
  color: #1a1a1a;
  font-size: 20px;
  transition: opacity 0.2s;
}

.contact-socials a:hover {
  opacity: 0.6;
}

.contact-right {
  background: #ffffff;
  padding: 50px 40px;
}

.contact-right h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.contact-field {
  margin-bottom: 24px;
}

.contact-field label {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  padding: 8px 0;
  font-size: 15px;
  color: #1a1a1a;
  background: transparent;
  transition: border-color 0.2s;
  resize: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-bottom-color: #1a1a1a;
}

.contact-submit {
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  transition: background 0.3s;
}

.contact-submit:hover {
  background: #333;
}

.contact-success {
  color: #059652;
  font-size: 14px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .contact-left,
  .contact-right {
    padding: 36px 24px;
  }

  .contact-left h2 {
    font-size: 28px;
  }

  .contact-submit {
    float: none;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  background-color: #0d1f3c;
  color: #cdd5e0;
  font-size: 14px;
}

.site-footer-top {
  padding: 50px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand */
.footer-brand-name {
  font-size: 37.55px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Source Serif Pro';
  letter-spacing: 2px;
}

.footer-tagline {
  color: #a0aec0;
  font-style: italic;
  font-size: 24px;
  margin-top: 6px;
  font-family: 'Iowan Old Style';
}

/* Nav */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: #cdd5e0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-nav ul li a:hover {
  color: #ffc451;
}

/* Contact Info */
.footer-contact-info h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-contact-info p {
  margin-bottom: 6px;
  color: #cdd5e0;
  line-height: 1.6;
}

.footer-contact-info a {
  color: #5b9bd5;
  text-decoration: none;
}

.footer-contact-info a:hover {
  text-decoration: underline;
}

/* Bottom bar */
.site-footer-bottom {
  padding: 16px 0;
  background-color: #0a1828;
}

.site-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #7a8fa6;
}

.site-footer-bottom a {
  color: #5b9bd5;
  text-decoration: none;
}

.site-footer-bottom a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery-title1 {
  padding-bottom: 60px;
  position: relative;
}

.gallery-title1 h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  position: relative;
}

.gallery-title1 h2::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: white;
  margin: 4px 10px;
}

.gallery-section {
  background-color: #0d1f3c;
  padding: 0;
  overflow: hidden;
}

.gallery-header {
  background-image: url('/assets/img/Rectangle_30.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 60px 0 50px;
}

.gallery-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 70, 0.72);
}

.gallery-header .container {
  position: relative;
  z-index: 1;
}

.gallery-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a0b4cc;
  margin-bottom: 16px;
}

.gallery-label span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #a0b4cc;
}

.gallery-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.gallery-desc {
  font-size: 14px;
  color: #c0cfe0;
  max-width: 780px;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 360 / 534;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-title {
    font-size: 26px;
  }
}

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

/*--------------------------------------------------------------
# Social Responsibility Section
--------------------------------------------------------------*/
.csr-section {
  background: #ffffff;
  padding: 60px 0;
}

.csr-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.csr-desc {
  font-size: 14px;
  color: #444;
  max-width: 100%;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: justify;
}

.csr-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
}

.csr-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.csr-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.csr-item-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Top Info Bar
--------------------------------------------------------------*/
.topbar {
  background-color: #131313;
  color: #cdd5e0;
  font-size: 13px;
  padding: 7px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-brand {
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.topbar-info span,
.topbar-info a {
  color: #cdd5e0;
  text-decoration: none;
  font-size: 12px;
}

.topbar-info a:hover {
  color: #ffc451;
}

.topbar-info i {
  color: #ffc451;
  margin-right: 4px;
}

.topbar-divider {
  color: rgba(255,255,255,0.25);
}

/* Push header below topbar */
.header {
  top: var(--topbar-h, 35px) !important;
}

/* Push hero below header + topbar */
.hero {
  padding-top: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: stretch !important;
  min-height: 100vh;
}

.hero .container {
  width: 100%;
}

.hero-main-content {
  position: relative;
  z-index: 3;
  padding: 0 0 64px 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 20px;
  font-family: var(--nav-font);
  text-align: left;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin-bottom: 32px;
  margin-top: 16px;
  line-height: 1.7;
  text-align: left;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: nowrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
  background: transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.hero-vision-bar {
  position: relative;
  z-index: 3;
  background: rgba(5, 25, 65, 0.78);
  padding: 44px 0;
  backdrop-filter: blur(4px);
}

.vision-title {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}

.vision-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-title { font-size: 38px; }
  .hero-desc  { font-size: 14px; max-width: 100%; }
  .hero-buttons { flex-wrap: wrap; }
  .vision-title { font-size: 22px; }
}

/* Scrolled state — navbar sticks to top */
.header.scrolled {
  top: 0 !important;
}

.header.scrolled .navbar-card {
  margin-top: 8px;
  height: 64px;
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(1, 47, 91, 0.97) 1%, rgba(9, 52, 92, 0.97) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Navbar Card Style
--------------------------------------------------------------*/
.header {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0;
  top: 0 !important;
}

.navbar-card {
  width: 90%;
  max-width: 1282px;
  height: 87px;
  margin: 4.5vw auto 0;
  background: linear-gradient(100deg, rgba(1, 47, 91, 0.25) 1%, rgba(9, 52, 92, 0.62) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.navbar-logo img {
  height: 38px;
  width: auto;
}

.navbar-card .navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.navbar-card .navmenu ul li a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-family: var(--nav-font);
  font-weight: 400;
  padding: 8px 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  display: block;
}

.navbar-card .navmenu ul li a:hover,
.navbar-card .navmenu ul li a.active {
  color: #ffc451;
}

/* ── Mobile hamburger: hidden on desktop ── */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-toggle i {
  color: #ffffff;
  font-size: 26px;
  display: block;
}

/* ── Mobile nav drawer: hidden by default ── */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; /* overridden in media query */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1282px;
  background: rgba(10, 25, 60, 0.97);
  border-radius: 0 0 10px 10px;
  z-index: 9996;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-drawer ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.mobile-nav-drawer ul li a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-family: var(--nav-font);
  font-weight: 400;
  padding: 13px 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav-drawer ul li:last-child a {
  border-bottom: none;
}

.mobile-nav-drawer ul li a:hover {
  color: #ffc451;
  background: rgba(255, 255, 255, 0.04);
}

/* ── ≤1199px: switch to mobile layout ── */
@media (max-width: 1199px) {
  /* Keep the card shape — just reduce top margin and height */
  .navbar-card {
    height: auto !important;
    min-height: 60px;
    margin: 16px auto 0 !important;
    padding: 0 20px !important;
    /* keep border-radius, background, max-width from desktop */
  }

  .header.scrolled .navbar-card {
    margin-top: 8px !important;
  }

  /* Hide both desktop navmenus */
  .navbar-card .navmenu {
    display: none !important;
  }

  /* Show the single hamburger */
  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Drawer drops below the card, matching its width */
  .mobile-nav-drawer {
    width: calc(100% - 40px);
    max-width: 1282px;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 4px);
    border-radius: 0 0 10px 10px;
    border-top: none;
  }
}

/* Smooth navbar transition */
.navbar-card {
  transition: margin-top 0.3s ease, height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

@media (max-width: 1199px) {
  .topbar { display: none; }
  .header { top: 0 !important; }
  .header.scrolled { top: 0 !important; }
  .header.scrolled .navbar-card { margin-top: 8px !important; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .header { top: 0 !important; }
  .header.scrolled { top: 0 !important; }
  .header.scrolled .navbar-card { margin-top: 0 !important; }
}

/* Hide topbar on scroll */
.header.scrolled ~ * .topbar,
body.nav-scrolled .topbar {
  display: none;
}

.topbar {
  transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease;
}

.topbar.hidden {
  opacity: 0;
  transform: translateY(-100%);
  height: 0 !important;
  overflow: hidden;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  pointer-events: none;
}

/*--------------------------------------------------------------
# Stats Banner
--------------------------------------------------------------*/
.stats-banner {
  position: relative;
  width: 100%;
  height: 190.22px;
  margin-top: 50px;
  background-image: url('/assets/img/Rectangle_24.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
}

.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 42, 115, 0.766);
}

.stats-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 10px 20px;
  text-align: center;
}

.stats-number {
  font-family: 'Inter', sans-serif;
  font-size: 74.59px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-label {
  font-family: 'Inter', sans-serif;
  font-size: 14.63px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  max-width: 160px;
}

.stats-divider {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stats-banner {
    flex-direction: column;
    gap: 24px;
  }
  .stats-divider {
    width: 80px;
    height: 1px;
  }
  .stats-number {
    font-size: 48px;
  }
}

/* Location Services Section */
.location-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
}

.features-item .bi-check2-square {
  font-size: 1.4rem;
  color: #e6b800;
  margin-right: 12px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Vision & Mission Section
--------------------------------------------------------------*/
.vm-section {
  background-color: #ffffff;
  padding: 60px 0 70px;
}

.vm-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 40px 36px;
  height: 100%;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vm-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.vm-icon {
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.vm-icon i {
  font-size: 28px;
  color: #1a1a1a;
}

.vm-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.vm-divider {
  width: 48px;
  height: 3px;
  background: #ffc451;
  border-radius: 2px;
  margin: 0 auto 20px;
}

.vm-card-text {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .vm-card {
    padding: 32px 24px;
  }
  .vm-card-title {
    font-size: 20px;
  }
  .vm-card-text {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Projects Section — Cards + Modal
--------------------------------------------------------------*/
.proj-section {
  background: #f9f9f9;
  padding: 60px 0 80px;
}

.proj-intro {
  font-size: 15px;
  color: #555;
  max-width: 780px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Tab filters */
.proj-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.proj-tab {
  background: #ffffff;
  border: 1px solid #ddd;
  color: #444;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--nav-font);
}

.proj-tab:hover,
.proj-tab.active {
  background: #ffc451;
  border-color: #ffc451;
  color: #1a1a1a;
}

/* Card */
.proj-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.proj-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

/* Placeholder image */
.proj-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.proj-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
}

.proj-placeholder i {
  font-size: 40px;
  color: rgba(255, 196, 81, 0.4);
}

.proj-placeholder span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.proj-placeholder--lg {
  height: 240px;
}

/* Status badge */
.proj-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proj-badge--active {
  background: #e6f9ee;
  color: #1a8a45;
}

.proj-badge--upcoming {
  background: #fff4e0;
  color: #b07800;
}

/* Card body */
.proj-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.proj-card-name {
  font-size: 17px;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 6px;
  font-family: var(--heading-font);
}

.proj-card-location {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.proj-card-location i {
  color: #ffc451;
  margin-right: 4px;
}

.proj-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.proj-card-stat {
  background: #f4f7fb;
  border-left: 3px solid #ffc451;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 16px;
}

.proj-stat-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0d1f3c;
  font-family: var(--heading-font);
  line-height: 1.1;
}

.proj-stat-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proj-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0d1f3c;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
  width: 100%;
  justify-content: center;
  font-family: var(--nav-font);
}

.proj-view-btn:hover {
  background: #ffc451;
  color: #1a1a1a;
}

/*--------------------------------------------------------------
# Project Side Panel (slides in from left)
--------------------------------------------------------------*/

/* Backdrop */
.proj-panel-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 50, 0.55);
  z-index: 99998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.proj-panel-backdrop.open {
  display: block;
}

/* Panel */
.proj-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  max-width: 92vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 6px 0 40px rgba(0, 0, 0, 0.18);
}

.proj-panel.open {
  transform: translateX(0);
}

/* Panel header image area */
.proj-panel-header {
  position: relative;
  flex-shrink: 0;
  height: 220px;
  overflow: hidden;
}

.proj-panel-header .proj-placeholder--lg {
  height: 220px;
}

/* Close button */
.proj-panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.proj-panel-close:hover {
  background: #ffc451;
  transform: rotate(90deg);
}

/* Scrollable body */
.proj-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 26px 40px;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

.proj-panel-body::-webkit-scrollbar {
  width: 4px;
}

.proj-panel-body::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

/* Content inside panel reuses existing classes */
.proj-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 6px;
  font-family: var(--heading-font);
  line-height: 1.25;
}

.proj-modal-location {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}

.proj-modal-location i {
  color: #ffc451;
  margin-right: 4px;
}

.proj-modal-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Divider */
.proj-panel-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 20px 0;
}

/* Services */
.proj-modal-services h5,
.proj-stats-heading {
  font-size: 12px;
  font-weight: 700;
  color: #0d1f3c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.proj-modal-services h5 i,
.proj-stats-heading i {
  color: #ffc451;
  font-size: 14px;
}

.proj-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.proj-services-list li {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #f8f9fb;
  padding: 8px 12px;
  border-radius: 6px;
}

.proj-services-list li i {
  color: #ffc451;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Stats grid — 2 columns inside the panel */
.proj-modal-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #0d1f3c;
  border-radius: 10px;
  overflow: hidden;
}

.proj-modal-stat-item {
  background: #0d2347;
  padding: 14px 14px;
}

.proj-modal-stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  font-weight: 600;
}

.proj-modal-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #ffc451;
  line-height: 1.1;
  margin-bottom: 3px;
  font-family: var(--heading-font);
}

.proj-modal-stat-note {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* Mobile — full width panel */
@media (max-width: 480px) {
  .proj-panel {
    width: 100vw;
    max-width: 100vw;
  }
}

/* Remove old centered modal rules that no longer apply */
.proj-modal-overlay { display: none !important; }
.proj-modal { display: none !important; }

/*--------------------------------------------------------------
# View All Projects Button (homepage)
--------------------------------------------------------------*/
.proj-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d1f3c;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  font-family: var(--nav-font);
}

.proj-view-all-btn:hover {
  background: #ffc451;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# All Projects Page
--------------------------------------------------------------*/
.all-projects-section {
  background: #f4f6f9;
  min-height: 100vh;
}

/* Hero banner */
.all-proj-hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  padding: 100px 0 50px;
  color: #ffffff;
}

.all-proj-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.all-proj-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.all-proj-breadcrumb a:hover {
  color: #ffc451;
}

.all-proj-breadcrumb i {
  font-size: 11px;
}

.all-proj-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--heading-font);
  margin-bottom: 10px;
  line-height: 1.1;
}

.all-proj-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

/* Summary stats row in hero */
.all-proj-summary {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.all-proj-summary-item {
  display: flex;
  flex-direction: column;
  padding-right: 32px;
}

.summary-val {
  font-size: 36px;
  font-weight: 800;
  color: #ffc451;
  font-family: var(--heading-font);
  line-height: 1;
}

.summary-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.all-proj-summary-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  margin: 0 32px 0 0;
}

/* Body / grid area */
.all-proj-body {
  padding-top: 48px;
  padding-bottom: 60px;
}

/* Filter tabs */
.all-proj-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.all-proj-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #444;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--nav-font);
}

.all-proj-tab:hover,
.all-proj-tab.active {
  background: #0d1f3c;
  border-color: #0d1f3c;
  color: #ffffff;
}

.tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tab-dot--active   { background: #22c55e; }
.tab-dot--upcoming { background: #f59e0b; }

/* Back button */
.all-proj-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d1f3c;
  border: 1px solid #0d1f3c;
  padding: 11px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--nav-font);
}

.all-proj-back-btn:hover {
  background: #0d1f3c;
  color: #ffffff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .all-proj-hero {
    padding: 80px 0 36px;
  }
  .all-proj-title {
    font-size: 28px;
  }
  .summary-val {
    font-size: 28px;
  }
  .all-proj-summary-divider {
    display: none;
  }
  .all-proj-summary {
    gap: 20px;
  }
  .all-proj-summary-item {
    padding-right: 0;
  }
}

/*--------------------------------------------------------------
# Hero Slideshow — left-aligned content, per-slide text
--------------------------------------------------------------*/

/* Slide backgrounds */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 2;
}

/* Hero main content above overlay */
.hero-main-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: flex-end;
  /* top padding = navbar card margin (~4.5vw) + card height (~87px) + buffer */
  padding: clamp(160px, 18vh, 260px) 0 64px 0;
}

/* Per-slide text — hidden by default, shown when .active */
.hero-slide-content {
  display: none;
  max-width: 540px;
  animation: heroFadeUp 0.6s ease forwards;
}

.hero-slide-content.active {
  display: block;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Title and desc — left aligned */
.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 18px;
  font-family: var(--nav-font);
  text-align: left;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  line-height: 1.7;
  text-align: left;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Dots — left aligned below text */
.hero-dots {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 28px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.hero-dot.active {
  background: #ffc451;
  border-color: #ffc451;
  transform: scale(1.3);
}

.hero-dot:hover {
  border-color: #ffc451;
}

/* Remove old centered card styles */
.hero-card {
  all: unset;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title { font-size: 36px; }
  .hero-desc  { font-size: 14px; }
  .hero-main-content { padding: clamp(80px, 14vh, 140px) 0 40px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# By the Numbers Section — Option A (5-column icon cards)
--------------------------------------------------------------*/
.btn-section {
  background: #ffffff;
  padding: 60px 0 70px;
}

.btn-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 36px 20px 30px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ffc451;
  border-radius: 14px 14px 0 0;
}

.btn-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.10);
  transform: translateY(-5px);
}

.btn-icon {
  width: 64px;
  height: 64px;
  background: #f0f5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.btn-icon i {
  font-size: 26px;
  color: #0d1f3c;
}

.btn-value {
  font-size: 32px;
  font-weight: 800;
  color: #0d1f3c;
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: 10px;
}

.btn-label {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  font-family: var(--default-font);
}

@media (max-width: 992px) {
  .btn-value {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .btn-card {
    padding: 28px 14px 22px;
  }
  .btn-value {
    font-size: 22px;
  }
  .btn-label {
    font-size: 12px;
  }
  .btn-icon {
    width: 52px;
    height: 52px;
  }
  .btn-icon i {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# By the Numbers — Option A (light gray bg, 5-column)
--------------------------------------------------------------*/
.btn-section {
  background: #f4f6f9;
  padding: 70px 0 80px;
  position: relative;
}

/* Heading */
.btn-heading {
  text-align: center;
  margin-bottom: 40px;
}

.btn-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffc451;
  margin-bottom: 10px;
}

.btn-main-title {
  font-size: 36px;
  font-weight: 800;
  color: #0d1f3c;
  font-family: var(--heading-font);
  margin: 0;
}

/* Cards */
.btn-card-b {
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 14px;
  padding: 36px 20px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.btn-card-b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ffc451;
  border-radius: 14px 14px 0 0;
}

.btn-card-b:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.10);
  transform: translateY(-5px);
}

/* Icon */
.btn-icon-b {
  width: 64px;
  height: 64px;
  background: #eef2fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s;
}

.btn-card-b:hover .btn-icon-b {
  background: #ffc451;
}

.btn-icon-b i {
  font-size: 26px;
  color: #0d1f3c;
  transition: color 0.3s;
}

.btn-card-b:hover .btn-icon-b i {
  color: #1a1a1a;
}

/* Value */
.btn-value-b {
  font-size: 36px;
  font-weight: 800;
  color: #0d1f3c;
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: 10px;
}

/* Label */
.btn-label-b {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.btn-label-b small {
  font-size: 11px;
  color: #999;
}

/* Responsive */
@media (max-width: 992px) {
  .btn-value-b { font-size: 28px; }
  .btn-main-title { font-size: 28px; }
}

@media (max-width: 576px) {
  .btn-section { padding: 50px 0 60px; }
  .btn-card-b { padding: 28px 14px 22px; }
  .btn-value-b { font-size: 22px; }
  .btn-icon-b { width: 52px; height: 52px; }
  .btn-icon-b i { font-size: 20px; }
}

/*--------------------------------------------------------------
# Homepage About — Teaser Cards
--------------------------------------------------------------*/
.about-teaser-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.about-teaser-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  padding: 14px 18px;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  color: inherit;
}

.about-teaser-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateX(4px);
  border-color: #ffc451;
  color: inherit;
}

.about-teaser-icon {
  width: 44px;
  height: 44px;
  background: #eef2fb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.about-teaser-card:hover .about-teaser-icon {
  background: #ffc451;
}

.about-teaser-icon i {
  font-size: 18px;
  color: #0d1f3c;
}

.about-teaser-text {
  flex: 1;
}

.about-teaser-title {
  font-size: 14px;
  font-weight: 700;
  color: #0d1f3c;
  line-height: 1.2;
}

.about-teaser-desc {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.about-teaser-arrow {
  color: #ccc;
  font-size: 14px;
  transition: color 0.25s, transform 0.25s;
}

.about-teaser-card:hover .about-teaser-arrow {
  color: #ffc451;
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-page-hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  padding: 100px 0 50px;
  color: #ffffff;
}

.about-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.about-breadcrumb a:hover { color: #ffc451; }
.about-breadcrumb i { font-size: 11px; }

.about-page-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--heading-font);
  margin-bottom: 10px;
}

.about-page-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}

/* Sections */
.about-page-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-page-section--gray {
  background: #f4f6f9;
}

.about-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffc451;
  margin-bottom: 10px;
}

.about-section-title {
  font-size: 32px;
  font-weight: 800;
  color: #0d1f3c;
  font-family: var(--heading-font);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-section-subtext {
  font-size: 15px;
  color: #666;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-section-text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.about-img {
  width: 100%;
  display: block;
}

/* Ownership card */
.ownership-card {
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ownership-title {
  font-size: 14px;
  font-weight: 700;
  color: #0d1f3c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.ownership-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ownership-item {
  text-align: center;
}

.ownership-logo {
  width: 56px;
  height: 56px;
  background: #eef2fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.ownership-logo i {
  font-size: 22px;
  color: #0d1f3c;
}

.ownership-name {
  font-size: 12px;
  font-weight: 600;
  color: #0d1f3c;
  max-width: 100px;
  line-height: 1.3;
}

.ownership-pct {
  font-size: 20px;
  font-weight: 800;
  color: #ffc451;
  margin-top: 4px;
  font-family: var(--heading-font);
}

.ownership-plus {
  font-size: 20px;
  color: #ccc;
}

.ownership-arrow {
  font-size: 24px;
  color: #ccc;
  margin: 16px 0;
}

.ownership-result {
  background: #0d1f3c;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ownership-result-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

/* Corporate structure */
.structure-img-wrap {
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.structure-img {
  max-width: 100%;
  border-radius: 6px;
}

.structure-note {
  font-size: 11px;
  color: #999;
  margin-top: 14px;
  font-style: italic;
}

.structure-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot--yellow  { background: #f5c518; }
.legend-dot--green   { background: #22c55e; }
.legend-dot--orange  { background: #f97316; }

/* Mobile */
@media (max-width: 768px) {
  .about-page-title { font-size: 28px; }
  .about-section-title { font-size: 24px; }
  .about-page-section { padding: 50px 0; }
  .ownership-row { gap: 10px; }
}

/*--------------------------------------------------------------
# Corporate Structure Placeholder
--------------------------------------------------------------*/
.structure-placeholder {
  width: 100%;
  min-height: 360px;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  padding: 40px;
}

.structure-placeholder i {
  font-size: 64px;
  color: rgba(255, 196, 81, 0.35);
}

.structure-placeholder span {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.structure-placeholder small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

/*--------------------------------------------------------------
# Board Members — Option E Flip Cards
--------------------------------------------------------------*/
.bm-flip-card {
  position: relative;
  width: 100%;
  height: 340px;
  perspective: 1200px;
  cursor: pointer;
}

.bm-front,
.bm-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  overflow: hidden;
}

/* Front face */
.bm-front {
  background: #ffffff;
  border: 1px solid #e4e8ef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: rotateY(0deg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

/* Photo placeholder */
.bm-photo-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 4px solid #ffc451;
}

.bm-photo-placeholder i {
  font-size: 52px;
  color: rgba(255, 255, 255, 0.4);
}

.bm-front-info {
  text-align: center;
  padding: 0 16px;
}

.bm-name {
  font-size: 16px;
  font-weight: 700;
  color: #0d1f3c;
  font-family: var(--heading-font);
  margin-bottom: 6px;
}

.bm-role {
  font-size: 12px;
  font-weight: 600;
  color: #ffc451;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bm-hint {
  position: absolute;
  bottom: 16px;
  font-size: 11px;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bm-hint i {
  font-size: 13px;
}

/* Back face */
.bm-back {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 28px;
  text-align: center;
  transform: rotateY(180deg);
}

.bm-back-role {
  font-size: 12px;
  font-weight: 700;
  color: #ffc451;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.bm-back-divider {
  width: 40px;
  height: 2px;
  background: #ffc451;
  border-radius: 2px;
  margin: 0 auto 18px;
}

.bm-back-bio {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin: 0;
}

/* Flip on hover (desktop) */
.bm-flip-card:hover .bm-front {
  transform: rotateY(-180deg);
}

.bm-flip-card:hover .bm-back {
  transform: rotateY(0deg);
}

/* Flip on tap (mobile) — toggled via JS */
.bm-flip-card.flipped .bm-front {
  transform: rotateY(-180deg);
}

.bm-flip-card.flipped .bm-back {
  transform: rotateY(0deg);
}

/* Top gold accent bar */
.bm-front::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ffc451;
  border-radius: 14px 14px 0 0;
}

@media (max-width: 768px) {
  .bm-flip-card {
    height: 300px;
  }
  .bm-photo-placeholder {
    width: 90px;
    height: 90px;
  }
  .bm-photo-placeholder i {
    font-size: 42px;
  }
  .bm-back-bio {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Navbar Dropdowns — Desktop
--------------------------------------------------------------*/
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-caret {
  font-size: 11px;
  transition: transform 0.25s;
}

.nav-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}

/* Dropdown menu — hidden by default, shown on hover */
.nav-dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;           /* flush — no gap */
  left: 0;
  min-width: 230px;
  background: rgba(10, 25, 60, 0.97);
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  list-style: none;
  padding: 4px 0 8px;
  margin: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Right-align dropdown for right-side nav */
.nav-dropdown-menu--right {
  left: auto;
  right: 0;
}

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: rgba(255,255,255,0.82) !important;
  font-size: 14px;
  font-family: var(--nav-font);
  font-weight: 400;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu li a i {
  font-size: 14px;
  color: #ffc451;
  flex-shrink: 0;
  width: 16px;
}

.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.07);
  color: #ffc451 !important;
}

.nav-dropdown-menu li + li {
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Invisible bridge fills the gap between link and menu so hover doesn't break */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px; /* catches mouse movement between link and panel */
}

/* Show on hover with a tiny delay so it doesn't flicker on fast mouse moves */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block !important;
}

/*--------------------------------------------------------------
# Mobile Accordion Sub-menus
--------------------------------------------------------------*/
.mob-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  font-family: var(--nav-font);
  font-weight: 400;
  padding: 13px 24px;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mob-accordion-toggle:hover {
  color: #ffc451;
  background: rgba(255,255,255,0.04);
}

.mob-accordion-toggle i {
  font-size: 13px;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.mob-accordion-body {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(255,255,255,0.03);
}

.mob-accordion-body li a {
  display: block;
  padding: 10px 24px 10px 40px;
  color: rgba(255,255,255,0.65) !important;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s;
}

.mob-accordion-body li a:hover {
  color: #ffc451 !important;
  background: rgba(255,255,255,0.04);
}


/*--------------------------------------------------------------
# Investor Relations Page
--------------------------------------------------------------*/

/* Hero — matches .about-page-hero / .all-proj-hero */
.ir-page-hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  padding: 100px 0 50px;
  color: #ffffff;
}
.ir-page-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--heading-font);
  margin-bottom: 10px;
}
.ir-page-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}
.ir-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ir-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.ir-breadcrumb a:hover { color: #ffc451; }
.ir-breadcrumb i { font-size: 11px; }

/* Body */
.ir-body {
  background: #f4f6f9;
  padding: 52px 0 72px;
}

/* Layout */
.ir-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

/* ---- Sidebar ---- */
.ir-sidebar {
  flex: 0 0 255px;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ir-sidebar-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e4e8ef;
  padding: 22px 0 16px;
  overflow: hidden;
}
.ir-sidebar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffc451;
  padding: 0 20px 12px;
  margin: 0;
}
.ir-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ir-nav-list li {
  border-top: 1px solid #f0f2f5;
}
.ir-nav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: none;
  border: none;
  text-align: left;
  color: #444;
  font-size: 14px;
  font-family: var(--nav-font);
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.ir-nav-btn > i:first-child {
  font-size: 15px;
  color: #0d1f3c;
  flex-shrink: 0;
  opacity: .6;
}
.ir-nav-btn span { flex: 1; }
.ir-nav-arrow {
  font-size: 10px;
  color: #bbb;
  transition: transform .2s, color .2s;
}
.ir-nav-btn:hover {
  background: #f4f6f9;
  color: #0d1f3c;
}
.ir-nav-btn:hover > i:first-child { opacity: 1; }
.ir-nav-btn.active {
  background: #f4f6f9;
  color: #0d1f3c;
  font-weight: 700;
  border-right: 3px solid #ffc451;
}
.ir-nav-btn.active > i:first-child { opacity: 1; }
.ir-nav-btn.active .ir-nav-arrow { transform: rotate(90deg); color: #ffc451; }

/* Contact box under sidebar */
.ir-contact-box {
  background: #0d1f3c;
  border-radius: 14px;
  padding: 20px;
}
.ir-contact-box .ir-sidebar-label { color: #ffc451; padding: 0 0 10px; }
.ir-contact-line {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
}
.ir-contact-line i { color: #ffc451; }
.ir-contact-line a { color: rgba(255,255,255,0.85); text-decoration: none; }
.ir-contact-line a:hover { color: #ffc451; }

/* ---- Content panels ---- */
.ir-panels { flex: 1; min-width: 0; }
.ir-panel { display: none; }
.ir-panel.active { display: block; animation: irFadeIn .2s ease; }
@keyframes irFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.ir-panel-title {
  font-size: 30px;
  font-weight: 800;
  color: #0d1f3c;
  font-family: var(--heading-font);
  margin: 4px 0 16px;
  line-height: 1.2;
}

/* Pillar cards (IR Program) */
.ir-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0 20px;
}
.ir-pillar {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  border: 1px solid #e4e8ef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border-top: 3px solid #ffc451;
}
.ir-pillar i { font-size: 26px; color: #0d1f3c; display: block; margin-bottom: 8px; }
.ir-pillar span { font-size: 13px; font-weight: 600; color: #0d1f3c; }

/* Contact strip */
.ir-contact-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0d1f3c;
  color: rgba(255,255,255,0.8);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.ir-contact-strip i { color: #ffc451; }
.ir-contact-strip a { color: #ffc451; text-decoration: none; }
.ir-contact-strip a:hover { text-decoration: underline; }
.ir-strip-sep { color: rgba(255,255,255,0.3); }

/* Stock info grid */
.ir-stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 8px 0 24px;
}
.ir-stock-card {
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ir-stock-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 5px;
}
.ir-stock-value {
  font-size: 15px;
  font-weight: 700;
  color: #0d1f3c;
  margin: 0;
}

/* Sub heading inside panels */
.ir-sub-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0d1f3c;
  margin: 0 0 14px;
}

/* Year filter tabs */
.ir-year-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ir-year-tab {
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid #dce2ea;
  background: #ffffff;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  font-family: var(--nav-font);
  transition: all .15s;
}
.ir-year-tab:hover { border-color: #0d1f3c; color: #0d1f3c; }
.ir-year-tab.active {
  background: #0d1f3c;
  border-color: #0d1f3c;
  color: #ffffff;
}

/* Doc list */
.ir-doc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ir-doc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow .2s, border-color .2s;
}
.ir-doc-row:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-color: #c8d6e4;
}
/* Featured doc gets yellow left accent */
.ir-doc-row--featured {
  border-left: 4px solid #ffc451;
}
.ir-pdf-icon {
  width: 44px;
  height: 44px;
  background: #fff5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ir-pdf-icon i { font-size: 22px; color: #e74c3c; }
.ir-doc-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.ir-doc-name {
  font-size: 14px;
  font-weight: 600;
  color: #0d1f3c;
  margin: 0 0 3px;
}
.ir-doc-meta {
  font-size: 12px;
  color: #999;
  margin: 0;
}
.ir-doc-desc {
  font-size: 13px;
  color: #666;
  margin: 5px 0 0;
}
.ir-doc-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
/* Matches the site's .all-proj-back-btn style */
.ir-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 6px;
  border: 1px solid #0d1f3c;
  color: #0d1f3c;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--nav-font);
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.ir-btn-outline:hover { background: #0d1f3c; color: #ffffff; }
.ir-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 6px;
  background: #ffc451;
  border: 1px solid #ffc451;
  color: #0d1f3c;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--nav-font);
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.ir-btn-solid:hover { background: #e6ae3a; border-color: #e6ae3a; color: #0d1f3c; }

/* Tag badge */
.ir-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  background: #f0f2f5;
  color: #0d1f3c;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Mobile nav */
.ir-mobile-nav { margin-bottom: 20px; }
.ir-mobile-nav .form-select {
  border-color: #dce2ea;
  font-size: 14px;
  color: #0d1f3c;
  font-family: var(--nav-font);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .ir-layout { flex-direction: column; }
  .ir-sidebar { position: static; width: 100%; flex: none; }
  .ir-sidebar-card { padding: 16px 0 10px; }
  .ir-nav-list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .ir-nav-list li { border-top: none; border: 1px solid #f0f2f5; }
  .ir-pillars { grid-template-columns: repeat(2, 1fr); }
  .ir-stock-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .ir-page-title { font-size: 28px; }
  .ir-panel-title { font-size: 24px; }
  .ir-nav-list { grid-template-columns: repeat(2, 1fr); }
  .ir-doc-row { flex-wrap: wrap; }
  .ir-doc-btns { width: 100%; justify-content: flex-end; margin-top: 6px; }
  .ir-pillars { grid-template-columns: repeat(2, 1fr); }
  .ir-stock-grid { grid-template-columns: 1fr 1fr; }
  .ir-contact-strip { font-size: 13px; }
}


/*--------------------------------------------------------------
# Governance Page
--------------------------------------------------------------*/

/* Hero — same as .about-page-hero / .all-proj-hero / .ir-page-hero */
.gov-page-hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  padding: 100px 0 50px;
  color: #ffffff;
}
.gov-page-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--heading-font);
  margin-bottom: 10px;
}
.gov-page-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}
.gov-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gov-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.gov-breadcrumb a:hover { color: #ffc451; }
.gov-breadcrumb i { font-size: 11px; }

/* Committee cards — Board Committees panel */
.gov-committee-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-left: 4px solid #ffc451;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  height: 100%;
  transition: box-shadow .2s;
}
.gov-committee-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.gov-committee-icon {
  width: 44px;
  height: 44px;
  background: #f4f6f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gov-committee-icon i { font-size: 20px; color: #0d1f3c; }
.gov-committee-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 6px;
  font-family: var(--heading-font);
}

/* ERM body text block */
.gov-erm-body {
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-left: 4px solid #ffc451;
  border-radius: 12px;
  padding: 28px 28px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 8px;
}
.gov-erm-body .about-section-text:last-child { margin-bottom: 0; }

/* ERM risk grid — list layout matching doc rows */
.gov-risk-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gov-risk-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow .2s;
}
.gov-risk-item:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.gov-risk-icon {
  width: 44px;
  height: 44px;
  background: #0d1f3c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gov-risk-icon i { font-size: 20px; color: #ffc451; }
.gov-risk-label {
  font-size: 14px;
  font-weight: 700;
  color: #0d1f3c;
  margin: 0 0 2px;
  font-family: var(--heading-font);
}
.gov-risk-desc {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .gov-page-title { font-size: 28px; }
  .gov-committee-card { flex-direction: column; }
  .gov-erm-body { padding: 20px 18px 14px; }
}

/*--------------------------------------------------------------
# Disclosure Accordion
--------------------------------------------------------------*/

/* Top-level category block */
.disc-category {
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.disc-cat-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #0d1f3c;
  border: none;
  cursor: pointer;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  transition: background .15s;
}
.disc-cat-toggle:hover { background: #162d52; }
.disc-cat-toggle span { display: flex; align-items: center; }
.disc-cat-toggle i.bi-folder2-open { color: #ffc451; }
.disc-cat-arrow {
  font-size: 12px;
  color: #ffc451;
  transition: transform .25s;
  flex-shrink: 0;
}

.disc-cat-body {
  display: none;
  padding: 12px 12px 4px;
  background: #f8f9fb;
}
.disc-cat-body.open { display: block; }

/* Sub-section block */
.disc-sub {
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
}

.disc-sub-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #f4f6f9;
  border: none;
  cursor: pointer;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 700;
  color: #0d1f3c;
  text-align: left;
  border-left: 4px solid #ffc451;
  transition: background .15s;
}
.disc-sub-toggle:hover { background: #edf0f5; }
.disc-sub-toggle span { display: flex; align-items: center; }
.disc-sub-arrow {
  font-size: 11px;
  color: #0d1f3c;
  transition: transform .25s;
  flex-shrink: 0;
}

.disc-sub-body {
  display: none;
  padding: 8px 0 4px;
}
.disc-sub-body.open { display: block; }

/* Year group label */
.disc-year-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffc451;
  background: #0d1f3c;
  padding: 5px 18px;
  margin: 6px 0 0;
}

/* Individual document row */
.disc-doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid #f0f2f5;
  transition: background .15s;
}
.disc-doc-row:last-child { border-bottom: none; }
.disc-doc-row:hover { background: #f8f9fb; }
.disc-doc-row--link { background: #f0f7ff; }
.disc-doc-row--link:hover { background: #e4f0fc; }

.disc-doc-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.disc-pdf-icon {
  font-size: 18px;
  color: #e74c3c;
  flex-shrink: 0;
}
.disc-link-icon {
  font-size: 18px;
  color: #0d1f3c;
  flex-shrink: 0;
}
.disc-doc-name {
  font-size: 13px;
  color: #0d1f3c;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.disc-dl-btn {
  flex-shrink: 0;
  padding: 5px 14px !important;
  font-size: 12px !important;
}

@media (max-width: 575px) {
  .disc-doc-row { flex-wrap: wrap; gap: 8px; }
  .disc-dl-btn { width: 100%; justify-content: center; }
  .disc-doc-name { white-space: normal; }
}


/*--------------------------------------------------------------
# IR Sidebar — Nested Disclosure Navigation
--------------------------------------------------------------*/

/* Group header (Disclosures, SEC Forms) — not a panel trigger */
.ir-nav-group {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: none;
  border: none;
  text-align: left;
  color: #444;
  font-size: 14px;
  font-family: var(--nav-font);
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.ir-nav-group > i:first-child {
  font-size: 15px;
  color: #0d1f3c;
  flex-shrink: 0;
  opacity: .6;
}
.ir-nav-group span { flex: 1; }
.ir-nav-group-arrow {
  font-size: 10px;
  color: #bbb;
  transition: transform .25s, color .25s;
  flex-shrink: 0;
}
.ir-nav-group:hover {
  background: #f4f6f9;
  color: #0d1f3c;
}
.ir-nav-group:hover > i:first-child { opacity: 1; }
.ir-nav-group.open .ir-nav-group-arrow {
  transform: rotate(90deg);
  color: #ffc451;
}
.ir-nav-group.open > i:first-child { opacity: 1; color: #0d1f3c; }

/* Indented child list */
.ir-nav-children {
  display: none;
  padding-left: 0;
  border-left: 2px solid #f0f2f5;
  margin-left: 20px;
}
.ir-nav-children.open { display: block; }

/* Child nav button (leaf item) */
.ir-nav-child {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 12px;
  background: none;
  border: none;
  text-align: left;
  color: #666;
  font-size: 12px;
  font-family: var(--nav-font);
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.ir-nav-child > i:first-child {
  font-size: 12px;
  color: #0d1f3c;
  flex-shrink: 0;
  opacity: .5;
}
.ir-nav-child span { flex: 1; }
.ir-nav-child-arrow {
  font-size: 9px;
  color: #ccc;
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.ir-nav-child:hover {
  background: #f4f6f9;
  color: #0d1f3c;
}
.ir-nav-child:hover > i:first-child { opacity: 1; }
.ir-nav-child.active {
  background: #f4f6f9;
  color: #0d1f3c;
  font-weight: 700;
  border-right: 3px solid #ffc451;
}
.ir-nav-child.active > i:first-child { opacity: 1; }
.ir-nav-child.active .ir-nav-child-arrow { color: #ffc451; transform: rotate(90deg); }

/* Sub-group header inside children (e.g. SEC Forms) */
.ir-nav-subgroup {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 12px;
  background: none;
  border: none;
  text-align: left;
  color: #555;
  font-size: 12px;
  font-family: var(--nav-font);
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.ir-nav-subgroup > i:first-child {
  font-size: 12px;
  color: #0d1f3c;
  flex-shrink: 0;
  opacity: .6;
}
.ir-nav-subgroup span { flex: 1; }
.ir-nav-subgroup-arrow {
  font-size: 9px;
  color: #bbb;
  flex-shrink: 0;
  transition: transform .25s, color .25s;
}
.ir-nav-subgroup:hover {
  background: #f4f6f9;
  color: #0d1f3c;
}
.ir-nav-subgroup.open .ir-nav-subgroup-arrow {
  transform: rotate(90deg);
  color: #ffc451;
}

/* Grandchildren (SEC Form sub-items) */
.ir-nav-grandchildren {
  display: none;
  border-left: 2px solid #f0f2f5;
  margin-left: 16px;
}
.ir-nav-grandchildren.open { display: block; }

/* Grandchild leaf items */
.ir-nav-grandchild {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: none;
  border: none;
  text-align: left;
  color: #777;
  font-size: 11px;
  font-family: var(--nav-font);
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.ir-nav-grandchild > i:first-child {
  font-size: 11px;
  color: #aaa;
  flex-shrink: 0;
}
.ir-nav-grandchild span { flex: 1; }
.ir-nav-grandchild-arrow {
  font-size: 9px;
  color: #ddd;
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.ir-nav-grandchild:hover {
  background: #f4f6f9;
  color: #0d1f3c;
}
.ir-nav-grandchild.active {
  background: #f4f6f9;
  color: #0d1f3c;
  font-weight: 700;
  border-right: 3px solid #ffc451;
}
.ir-nav-grandchild.active > i:first-child { color: #0d1f3c; }
.ir-nav-grandchild.active .ir-nav-grandchild-arrow { color: #ffc451; transform: rotate(90deg); }

/* Mobile: flatten nested items */
@media (max-width: 991px) {
  .ir-nav-children,
  .ir-nav-grandchildren {
    margin-left: 0;
    border-left: none;
  }
  .ir-nav-child,
  .ir-nav-grandchild {
    padding-left: 20px;
  }
}

/* PSE Edge sidebar link */
.ir-pse-link {
  display: block;
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-left: 4px solid #ffc451;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.ir-pse-link:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  border-color: #ffc451;
}
.ir-pse-link-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.ir-pse-link-icon {
  width: 38px;
  height: 38px;
  background: #0d1f3c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ir-pse-link-icon i { font-size: 16px; color: #ffc451; }
.ir-pse-link-label {
  font-size: 13px;
  font-weight: 700;
  color: #0d1f3c;
  margin: 0 0 1px;
  font-family: var(--heading-font);
}
.ir-pse-link-sub {
  font-size: 11px;
  color: #888;
  margin: 0;
}
.ir-pse-arrow {
  font-size: 11px;
  color: #bbb;
  margin-left: auto;
  flex-shrink: 0;
}
.ir-pse-link:hover .ir-pse-arrow { color: #ffc451; }

/*--------------------------------------------------------------
# IR Filter Bar, Year Dropdown & Pagination
--------------------------------------------------------------*/

/* Filter bar row above doc list */
.ir-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.ir-filter-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  white-space: nowrap;
}

/* Year dropdown — styled to match the site */
.ir-year-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  background-image: 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='%230d1f3c' 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");
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1.5px solid #dce2ea;
  border-radius: 6px;
  padding: 7px 32px 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #0d1f3c;
  font-family: var(--nav-font);
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  min-width: 140px;
}
.ir-year-select:hover { border-color: #0d1f3c; }
.ir-year-select:focus {
  outline: none;
  border-color: #ffc451;
  box-shadow: 0 0 0 3px rgba(255,196,81,.2);
}

/* Pagination container */
.ir-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Pagination buttons */
.ir-page-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #dce2ea;
  border-radius: 6px;
  background: #ffffff;
  color: #0d1f3c;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--nav-font);
  cursor: pointer;
  transition: all .15s;
  padding: 0;
}
.ir-page-btn:hover:not(.disabled):not(.active) {
  border-color: #0d1f3c;
  background: #f4f6f9;
}
.ir-page-btn.active {
  background: #0d1f3c;
  border-color: #0d1f3c;
  color: #ffc451;
  font-weight: 700;
}
.ir-page-btn.disabled {
  opacity: .35;
  cursor: not-allowed;
}
.ir-page-btn i { font-size: 12px; }

@media (max-width: 575px) {
  .ir-filter-bar { gap: 8px; }
  .ir-year-select { min-width: 120px; font-size: 12px; }
  .ir-page-btn { width: 32px; height: 32px; font-size: 12px; }
}

/* Back to Home button inside page heroes */
.hero-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--nav-font);
  transition: all 0.2s;
}
.hero-back-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
}
.hero-back-btn i { font-size: 13px; }
