/*--------------------------------------------------------------
/* 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: "Helvetica",  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: #2a5298; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0a1b31; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff8400; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff8400; /* 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: #0a1b31; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff8400; /* 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: #d1d1d1;
}

.dark-background {
  --background-color: #2a5298;
  --default-color: #d1d1d1;
  --heading-color: #d1d1d1;
  --surface-color: #0a1b31;
  --contrast-color: #ffffff;
}

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

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

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

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #ff8400;
  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(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 82, 152, 0.7);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #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;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 75vh;
  padding-top: 60px;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 span {
  text-decoration: underline;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

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

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }

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

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

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

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

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

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

.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: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

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

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

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

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

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Story Callout Section for blog details page
--------------------------------------------------------------*/
.story-callout {
            background: #f4f9ff;
            padding: 1.8rem 2rem;
            border-radius: 24px;
            margin: 2.2rem 0 1.8rem 0;
            border: 1px solid #cde1f2;
}

.story-callout p {
            font-size: 1.15rem;
            margin-bottom: 0.8rem;
}

.story-callout p:last-child {
            margin-bottom: 0;
}

.story-callout strong {
            color: #0b4b7a;
            font-weight: 600;
}

.tool-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0 1.5rem;
}

.tool-card {
            flex: 1 1 200px;
            background: white;
            border-radius: 20px;
            padding: 1.5rem 1.2rem;
            border: 1px solid #e2ebf3;
            box-shadow: 0 6px 12px -8px rgba(0,32,64,0.08);
}

.tool-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1f4b70;
            margin-bottom: 0.75rem;
}

.tool-card p {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: #2d5270;
}

.tool-card ul {
            padding-left: 1.2rem;
            margin-top: 0.3rem;
            color: #1e3f5c;
}

.tool-card li {
            font-size: 0.98rem;
            margin-bottom: 0.25rem;
}

.kpi-badge {
            background: #ebf3fa;
            color: #0b4b7a;
            font-weight: 500;
            padding: 0.3rem 0.9rem;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.9rem;
            margin: 0.8rem 0 1.2rem;
}

.divider {
            height: 2px;
            background: linear-gradient(to right, #ffffff, #bdd8ec, #ffffff);
            margin: 2rem 0;
}

.callout-final {
            background: #ebf3fa;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            margin: 2.8rem 0 1.8rem;
            border-left: 6px solid #2b6c9e;
}

.callout-final p {
            font-size: 1.2rem;
            font-weight: 500;
            color: #103450;
}

.signature-block {
            background: #fafbfe;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin-top: 2.8rem;
            border: 1px dashed #a3c2da;
}

/*--------------------------------------------------------------
# Blog post 2
--------------------------------------------------------------*/
.story-mini {
            background: #f4f9ff;
            border-radius: 20px;
            padding: 1.5rem 1.8rem;
            margin: 1.5rem 0;
            border: 1px solid #cde3f2;
}

.three-pillars {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
}

.pillar {
            flex: 1 1 180px;
            background: #fafdff;
            border-radius: 18px;
            padding: 1.2rem 1rem;
            border: 1px solid #d2e5f5;
}

.pillar h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #0f4a6f;
            margin-bottom: 0.5rem;
}

.pillar p {
            font-size: 0.95rem;
            margin-bottom: 0;
}

.benefit-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 1.5rem 0;
}

.benefit-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
}

.benefit-emoji {
            font-size: 1.6rem;
            background: #e5f0fa;
            width: 2.8rem;
            height: 2.8rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
}

.benefit-text {
            flex: 1;
}

.benefit-text strong {
            font-size: 1.1rem;
            color: #1b4f72;
}

.insight-drive-box {
            background: #e5f0f9;
            border-radius: 24px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 1rem;
}

/*--------------------------------------------------------------
# Blog post 3
--------------------------------------------------------------*/      

.subhead {
            font-size: 1.2rem;
            color: #2d5a7a;
            border-left: 5px solid #1f8cad;
            padding: 1rem 1.8rem;
            background: #f0f8ff;
            border-radius: 0 20px 20px 0;
            margin-bottom: 2.2rem;
}

.highlight-box {
            background: #e8f2fa;
            border-radius: 24px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border-left: 6px solid #1f8cad;
}

.benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
}

.benefit-card {
            background: #f8fcff;
            border: 1px solid #d0e6f5;
            border-radius: 24px;
            padding: 1.8rem 1.4rem;
            transition: all 0.2s;
}

.benefit-card:hover {
            border-color: #6bb4d1;
            box-shadow: 0 8px 18px -8px rgba(0,95,140,0.2);
}

.benefit-icon {
            font-size: 2.2rem;
            margin-bottom: 0.8rem;
}

.benefit-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #144d70;
            margin-bottom: 0.8rem;
}

.benefit-card p {
            font-size: 0.98rem;
            margin-bottom: 0;
            color: #2a4d69;
}

.stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            justify-content: space-between;
            margin: 2rem 0;
}

.stat-item {
            background: white;
            border-radius: 40px;
            padding: 0.8rem 1.4rem;
            border: 1px solid #c3def0;
            font-weight: 600;
            color: #1a577b;
            font-size: 1rem;
}

.myth-box {
            background: #fef7ea;
            border-radius: 24px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #f0d8b0;
}

.myth-box h4 {
            color: #ff8400;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
}

.cta-section {
            background: #d1d1d1;
            color: white;
            border-radius: 28px;
            padding: 2rem 2.2rem;
            margin: 2.8rem 0 1.5rem;
}

.cta-section p {
            color: #e0f0fc;
}

.cta-section strong {
            color: white;
}

.footer-note {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            border-top: 1px solid #cde0ec;
            padding-top: 1.5rem;
            margin-top: 2rem;
            color: #3d7195;
            font-size: 0.9rem;
}

.pill {
            background: #e5f0fa;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            display: inline-block;
            margin-right: 0.5rem;
}

         /* ── Custom Improvements ─────────────────────────── */


    /* ── Logo alt text fix ── */
    .logo img { max-height: 44px; width: auto; }

    /* ── Hero: stronger headline contrast ── */
    .hero .carousel-container h2 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.5px;
    }
    .hero .carousel-container h2 span {
      color: #ff8400;
    }
    .hero .carousel-container p {
      font-size: clamp(1rem, 2.5vw, 1.15rem);
      max-width: 680px;
      line-height: 1.7;
      opacity: 0.92;
    }

    /* ── Stats bar — new section ── */
    .stats-bar {
      background: #0a1b31;
      padding: 36px 0;
      border-bottom: 3px solid #ff8400;
    }
    .stats-bar .stat-item {
      text-align: center;
      color: #fff;
      padding: 12px 20px;
      position: relative;
    }
    .stats-bar .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; height: 60%;
      width: 1px; background: rgba(255,255,255,0.18);
    }
    .stats-bar .stat-number {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: #ff8400;
      line-height: 1;
      display: block;
    }
    .stats-bar .stat-label {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.7);
      margin-top: 6px;
      display: block;
    }

    /* ── About section improvements ── */
    .about .division-card {
      background: #f8faff;
      border-left: 4px solid #2a5298;
      border-radius: 0 8px 8px 0;
      padding: 14px 18px;
      margin-bottom: 14px;
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
    }
    .about .division-card:hover {
      border-color: #ff8400;
      background: #fff5eb;
      transform: translateX(4px);
    }
    .about .division-card strong {
      font-family: 'Sora', sans-serif;
      color: #0a1b31;
      font-size: 0.95rem;
      display: block;
      margin-bottom: 3px;
    }
    .about .division-card span {
      font-size: 0.875rem;
      color: #555;
      line-height: 1.5;
    }

    /* ── Services tab — icon upgrade ── */
    .features .nav-link {
      border-radius: 10px 10px 0 0;
      transition: background 0.2s;
    }
    .features .nav-link i {
      font-size: 1.5rem;
    }
    .features .nav-link h4 {
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 6px;
    }

    /* Outcome badge */
    .outcome-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #0a1b31, #2a5298);
      color: #fff;
      border-radius: 30px;
      padding: 10px 20px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 12px;
    }
    .outcome-badge i { color: #ff8400; font-size: 1rem; }

    /* ── CTA section ── */
    .call-to-action h3 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700;
    }

    /* ── Booking button (hero) ── */
    .btn-get-started {
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 13px 32px;
      border-radius: 4px;
      font-size: 0.95rem;
    }

    /* ── Contact section: service selector ── */
    .contact select.form-control {
      appearance: auto;
      color: #555;
    }

    /* ── Footer: tagline emphasis ── */
    .footer p {
      font-size: 0.95rem;
      opacity: 0.85;
    }

    /* ── Mobile: stack stats 2×2 ── */
    @media (max-width: 576px) {
      .stats-bar .stat-item:not(:last-child)::after { display: none; }
      .stats-bar .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
      .stats-bar .stat-number { font-size: 2rem; }
      .hero .carousel-container { padding: 0 16px; }
      .features .nav-link h4 { font-size: 0.75rem; }
    }

    /* ── Accessibility: focus ring ── */
    a:focus-visible, button:focus-visible {
      outline: 3px solid #ff8400;
      outline-offset: 3px;
      border-radius: 3px;
    }


    /* ── About section lead text ── */
    .about-lead {
      font-size: clamp(1.05rem, 2vw, 1.18rem);
      line-height: 1.8;
      color: #333;
    }

    /* ── Perspective highlight box ── */
    .perspective-quote {
      background: linear-gradient(135deg, #0a1b31 0%, #2a5298 100%);
      border-left: 5px solid #ff8400;
      border-radius: 0 12px 12px 0;
      padding: 28px 32px;
      color: #fff;
      margin: 24px 0;
    }
    .perspective-quote p {
      font-size: clamp(1rem, 2vw, 1.12rem);
      line-height: 1.75;
      margin: 0;
      font-style: italic;
      opacity: 0.95;
    }
    .perspective-quote cite {
      display: block;
      margin-top: 14px;
      font-size: 0.85rem;
      color: #ff8400;
      font-style: normal;
      font-weight: 600;
      letter-spacing: 0.05em;
    }

    /* ── Mission/Vision/Commitment cards ── */
    .mvc-card {
      background: #fff;
      border-top: 4px solid #2a5298;
      border-radius: 4px 4px 10px 10px;
      padding: 32px 28px;
      height: 100%;
      box-shadow: 0 4px 20px rgba(10,27,49,0.07);
      transition: box-shadow 0.25s, transform 0.2s;
    }
    .mvc-card:hover {
      box-shadow: 0 8px 32px rgba(10,27,49,0.13);
      transform: translateY(-4px);
    }
    .mvc-card.orange { border-top-color: #ff8400; }
    .mvc-card .mvc-icon {
      width: 52px; height: 52px;
      background: #f4f7fc;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .mvc-card .mvc-icon i { font-size: 1.5rem; color: #2a5298; }
    .mvc-card.orange .mvc-icon i { color: #ff8400; }
    .mvc-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #0a1b31;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 12px;
    }
    .mvc-card p {
      font-size: 0.93rem;
      line-height: 1.75;
      color: #444;
      margin: 0;
    }

    /* ── Process / Approach section ── */
    .approach-section { background: #f8faff; }
    .approach-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 28px;
    }
    .approach-step .step-num {
      flex-shrink: 0;
      width: 44px; height: 44px;
      background: #0a1b31;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Sora', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: #ff8400;
    }
    .approach-step .step-content h4 {
      font-size: 1rem;
      font-weight: 700;
      color: #0a1b31;
      margin-bottom: 5px;
    }
    .approach-step .step-content p {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.6;
      margin: 0;
    }

    /* ── Why Choose Us ── */
    .why-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 22px;
    }
    .why-item .why-icon {
      flex-shrink: 0;
      width: 40px; height: 40px;
      background: rgba(253,126,20,0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .why-item .why-icon i { color: #ff8400; font-size: 1.2rem; }
    .why-item h4 { font-size: 0.95rem; font-weight: 700; color: #0a1b31; margin-bottom: 4px; }
    .why-item p { font-size: 0.875rem; color: #555; margin: 0; line-height: 1.55; }

    /* ── CTA strip ── */
    .about-cta-strip {
      background: linear-gradient(135deg, #0a1b31 50%, #2a5298 50%);
      padding: 60px 0;
      text-align: center;
      color: #fff;
    }
    .about-cta-strip h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700;
      margin-bottom: 14px;
    }
    .about-cta-strip p {
      font-size: 1rem;
      opacity: 0.85;
      max-width: 560px;
      margin: 0 auto 28px;
      line-height: 1.7;
    }
    .about-cta-strip .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ff8400;
      color: #fff;
      padding: 14px 36px;
      border-radius: 4px;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .about-cta-strip .btn-cta:hover { 
      background: #e06c0a; 
      transform: translateY(-2px); 
      color: #fff; }

    /* ── Mobile ── */
    @media (max-width: 768px) {
      .perspective-quote { padding: 20px 22px; }
      .mvc-card { margin-bottom: 20px; }
    }


    /* ── Base ── */
    body { font-family: 'Plus Jakarta Sans', sans-serif; }
    h1, h2, h3, h4, h5, .sitename { font-family: 'Sora', sans-serif; }

    /* ── Page hero subtitle ── */
    .page-title h2 {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      font-weight: 400;
      font-family: 'Plus Jakarta Sans', sans-serif;
      opacity: 0.85;
    }

    /* ══ DIVISION NAV STRIP ════════════════════════════════════ */
    .division-nav {
      background: #fff;
      border-bottom: 2px solid #f0f3f9;
      position: sticky;
      top: 70px;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(10,27,49,0.07);
    }
    .division-nav .container {
      display: flex;
      overflow-x: auto;
      gap: 0;
      scrollbar-width: none;
    }
    .division-nav .container::-webkit-scrollbar { display: none; }
    .div-nav-btn {
      flex: 1 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 18px 24px;
      text-decoration: none;
      color: #555;
      font-size: 0.82rem;
      font-weight: 600;
      font-family: 'Sora', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-bottom: 3px solid transparent;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .div-nav-btn i { font-size: 1.25rem; }
    .div-nav-btn:hover, .div-nav-btn.active {
      color: #2a5298;
      border-bottom-color: #ff8400;
      background: #f8faff;
    }

    /* ══ INTRO STRIP ═══════════════════════════════════════════ */
    .services-intro {
      background: #f8faff;
      padding: 56px 0 48px;
      border-bottom: 1px solid #e8eef8;
    }
    .services-intro h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      color: #0a1b31;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .services-intro p {
      font-size: 1.05rem;
      color: #444;
      line-height: 1.8;
      max-width: 700px;
    }
    .intro-pillars {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }
    .intro-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1.5px solid #2a5298;
      border-radius: 30px;
      padding: 8px 18px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #2a5298;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .intro-pill i { color: #ff8400; font-size: 0.9rem; }
    .intro-pill:hover {
      background: #0a1b31;
      color: #fff;
      border-color: #0a1b31;
    }

    /* ══ DIVISION SECTION SHARED ══════════════════════════════ */
    .division-section {
      padding: 80px 0;
      scroll-margin-top: 130px;
    }
    .division-section.alt { background: #f8faff; }

    /* Division header badge */
    .division-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #0a1b31;
      color: #ff8400;
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 0.78rem;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }
    .division-badge i { font-size: 1rem; color: #ff8400; }

    .division-title {
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 800;
      color: #0a1b31;
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .division-title span { color: #2a5298; }

    .division-tagline {
      font-size: 1.05rem;
      color: #ff8400;
      font-weight: 600;
      font-style: italic;
      margin-bottom: 20px;
    }

    .division-desc {
      font-size: 0.97rem;
      color: #444;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    /* Service items list */
    .service-list { list-style: none; padding: 0; margin: 0 0 28px; }
    .service-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid #edf1fa;
      font-size: 0.93rem;
      color: #333;
      line-height: 1.5;
    }
    .service-list li:last-child { border-bottom: none; }
    .service-list li i {
      color: #ff8400;
      font-size: 1.05rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .service-list li strong {
      color: #0a1b31;
      display: block;
      font-size: 0.9rem;
      margin-bottom: 2px;
    }

    /* Outcome box */
    .outcome-box {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      background: #fff4eb;
      border: 1px solid rgba(244,123,32,0.3);
      border-radius: 10px;
      padding: 18px 20px;
      margin-bottom: 28px;
    }
    .outcome-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      background: #ff8400;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1rem;
    }
    .outcome-text strong {
      display: block;
      font-family: "Hanken Grotesk", sans-serif;
      font-weight: 700;
      color: #994700;
      font-size: 0.8125rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 4px;
    }
    .outcome-text p {
      font-family: "Inter", sans-serif;
      color: #574237;
      font-size: 0.9375rem;
      line-height: 1.6;
      margin: 0;
    }

    /* CTA link inside division */
    .division-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ff8400;
      color: #fff;
      padding: 12px 28px;
      border-radius: 4px;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      margin-top: 20px;
      transition: background 0.2s, transform 0.15s;
    }
    .division-cta:hover { 
      background: #e06c0a; 
      transform: translateY(-2px); 
      color: #fff; 
    }
    .division-cta.outline {
      background: transparent;
      border: 2px solid #2a5298;
      color: #2a5298;
    }
    .division-cta.outline:hover { 
      background: #2a5298; 
      color: #fff; 
      transform: translateY(-2px); 
    }

    /* Division image panel */
    .division-img-panel {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(10,27,49,0.13);
      position: relative;
    }
    .division-img-panel img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
    }
    .division-img-panel:hover img { transform: scale(1.03); }
    .division-img-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(0deg, rgba(10,27,49,0.85) 0%, transparent 100%);
      padding: 28px 24px 20px;
      color: #fff;
    }
    .division-img-overlay .overlay-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #ff8400;
      font-weight: 700;
      display: block;
      margin-bottom: 4px;
    }
    .division-img-overlay .overlay-title {
      font-family: 'Sora', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin: 0;
    }

    /* Tools / tech tags */
    .tool-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0 24px;
    }
    .tool-tag {
      background: #fff;
      border: 1.5px solid #d0daea;
      border-radius: 6px;
      padding: 5px 12px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #2a5298;
    }

    /* ══ WHO IS THIS FOR ══════════════════════════════════════ */
    .for-whom {
      background: #f7f9fb;
      border: 1px solid #e6e8ea;
      border-radius: 10px;
      padding: 18px 22px;
      margin-bottom: 24px;
    }
    .for-whom h5 {
      font-family: "JetBrains Mono", monospace;
      font-size: 0.75rem;
      font-weight: 500;
      color: #ff8400;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
    }
    .for-whom ul { list-style: none; padding: 0; margin: 0; }
    .for-whom ul li {
      font-family: "Inter", sans-serif;
      font-size: 0.875rem;
      color: #574237;
      padding: 4px 0 4px 18px;
      position: relative;
      line-height: 1.5;
    }
    .for-whom ul li::before { content: "→"; position: absolute; left: 0; color: #ff8400; font-size: 0.8rem; }

    /* ══ HOW IT WORKS STEPS ═══════════════════════════════════ */
    .how-steps {
      counter-reset: steps;
      list-style: none;
      padding: 0; margin: 0;
    }
    .how-steps li {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
      align-items: flex-start;
    }
    .how-steps li .step-dot {
      flex-shrink: 0;
      width: 36px; height: 36px;
      background: #0a1b31;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sora', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: #ff8400;
      counter-increment: steps;
    }
    .how-steps li .step-body strong {
      display: block;
      font-size: 0.9rem;
      color: #0a1b31;
      margin-bottom: 3px;
    }
    .how-steps li .step-body p {
      font-size: 0.85rem;
      color: #555;
      margin: 0;
      line-height: 1.55;
    }

    /* ══ COMPARE TABLE ════════════════════════════════════════ */
    .compare-section { 
      background: #0a1b31; 
      color: #fff; 
      padding: 70px 0; 
    }
    .compare-section h2 { 
      font-size: clamp(1.4rem, 3vw, 1.9rem); 
      font-weight: 800; 
      margin-bottom: 8px; 
      line-height: 1.2; 
      word-break: break-word; 
    }
    .compare-section .lead { 
      -webkit-text-fill-color: #edf1fa;
      color: rgba(255,255,255,0.75); 
      font-size: 1rem; 
      max-width: 580px; 
      margin-bottom: 40px; 
    }
    .compare-table { 
      width: 100%; 
      border-collapse: separate; 
      border-spacing: 0; 
      border-radius: 10px; 
      overflow: hidden; 
    }
    .compare-table thead tr { background: #ff8400; }
    .compare-table thead th {
      padding: 16px 20px;
      font-family: 'Sora', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: #fff;
      text-align: left;
    }
    .compare-table tbody tr { background: rgba(255,255,255,0.04); }
    .compare-table tbody tr:nth-child(even) { 
      background: rgba(255,255,255,0.08); 
    }
    .compare-table tbody td {
      padding: 14px 20px;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.85);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      vertical-align: top;
    }
    .compare-table tbody td:first-child { color: #2a5298; font-weight: 600; }
    .compare-table .check { color: #4ade80; font-size: 1.1rem; }

    /* ══ FINAL CTA ════════════════════════════════════════════ */
    .final-cta {
      background: linear-gradient(135deg, #2a5298 0%, #ff8400 100%);
      padding: 72px 0;
      text-align: center;
      color: #fff;
    }
    .final-cta h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 800;
      margin-bottom: 14px;
    }
    .final-cta p {
      font-size: 1.05rem;
      opacity: 0.92;
      max-width: 540px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }
    .final-cta .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: #0a1b31;
      padding: 15px 40px;
      border-radius: 4px;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .final-cta .btn-white:hover { 
      background: #f0f3ff; 
      transform: translateY(-2px); 
      color: #0a1b31; 
    }
    .final-cta .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #fff;
      padding: 14px 36px;
      border-radius: 4px;
      border: 2px solid rgba(255,255,255,0.6);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      margin-left: 16px;
      transition: background 0.2s, transform 0.15s;
    }
    .final-cta .btn-outline-white:hover { 
      background: rgba(255,255,255,0.15); 
      transform: translateY(-2px); 
      color: #fff; }

    /* ── Mobile ── */
    @media (max-width: 768px) {
      .division-section { padding: 56px 0; }
      .final-cta .btn-outline-white { margin-left: 0; margin-top: 12px; }
      .final-cta .cta-btns { display: flex; 
        flex-direction: column; 
        align-items: center; 
        gap: 12px; 
      }
      .division-img-panel { margin-bottom: 32px; }
      .compare-table thead th, .compare-table tbody td {
        padding: 10px 12px;
        font-size: 0.8rem;
      }
    }

/*==============================================================
# Nexus 4 System — Design Token Overrides & Page Components
# Applied sitewide: index, about, services, blog, blog-details
==============================================================*/

/* ── 1. Global Design Tokens ─────────────────────────────── */
:root {
  --default-font: "Inter", system-ui, -apple-system, sans-serif;
  --heading-font: "Hanken Grotesk", sans-serif;
  --nav-font: "Hanken Grotesk", sans-serif;
  --background-color: #f7f9fb;
  --default-color: #191c1e;
  --heading-color: #191c1e;
  --accent-color: #ff8400;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #191c1e;
  --nav-hover-color: #ff8400;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #191c1e;
  --nav-dropdown-hover-color: #ff8400;
}
.dark-background {
  --background-color: #0a1b31;
  --default-color: #e0e3e5;
  --heading-color: #ffffff;
  --surface-color: #0d2240;
  --contrast-color: #ffffff;
}

/* ── 2. Header ─────────────────────────────────────────────── */
.header {
  --background-color: #ffffff !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid #e6e8ea;
  padding: 12px 0;
}
.header .logo img { max-height: 36px; }
.header .logo h1 {
  color: #191c1e !important;
  font-family: "Hanken Grotesk", sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
}
.scrolled .header {
  --background-color: rgba(255,255,255,0.97) !important;
  background-color: rgba(255,255,255,0.97) !important;
  box-shadow: 0 1px 24px rgba(0,0,0,0.07) !important;
  border-bottom: 1px solid #e6e8ea;
}

/* ── 3. Navigation ─────────────────────────────────────────── */
@media (min-width: 1200px) {
  .navmenu a,
  .navmenu a:focus {
    color: #191c1e !important;
    font-family: "Hanken Grotesk", sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: #fff4eb !important;
    color: #ff8400 !important;
  }
}
@media (max-width: 1199px) {
  .mobile-nav-toggle { color: #191c1e !important; }
  .navmenu a,
  .navmenu a:focus { color: #191c1e !important; }
}

/* ── 4. Section Titles ─────────────────────────────────────── */
.section-title h2 {
  font-family: "Hanken Grotesk", sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #ff8400 !important;
  line-height: 1 !important;
}
.section-title h2::after { background: #ff8400 !important; }
.section-title p {
  color: #191c1e !important;
  font-family: "Hanken Grotesk", sans-serif !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  line-height: 1.15 !important;
}

/* ── 5. Scroll Top ─────────────────────────────────────────── */
.scroll-top { background-color: #ff8400 !important; border-radius: 8px !important; }
.scroll-top:hover { background-color: #e06c14 !important; }

/* ── 6. Footer ─────────────────────────────────────────────── */
.footer.dark-background { background: #0a1b31 !important; }
.footer h3 {
  font-family: "Hanken Grotesk", sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.4rem !important;
  color: #ffffff !important;
}
.footer p { color: #b7c8e1 !important; font-style: normal !important; }
.footer .social-links a {
  background: rgba(244,123,32,0.12) !important;
  color: #ff8400 !important;
  border: 1px solid rgba(244,123,32,0.3) !important;
  border-radius: 8px !important;
}
.footer .social-links a:hover { background: #ff8400 !important; color: #ffffff !important; }
.footer .copyright,
.footer .credits,
.footer .credits a { color: #8e9eb6 !important; }

/* ── 7. Hero outer wrapper (index.html) ────────────────────── */
.hero-outer {
  padding: 84px 1.25rem 2.5rem;
  background: #f7f9fb;
}

/* ── 8. Page Banner — interior pages ──────────────────────── */
.page-banner {
  background: #f7f9fb;
  padding: 106px 0 44px;
  border-bottom: 1px solid #e6e8ea;
}
.page-banner .banner-tag {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ff8400;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-banner h1 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #191c1e;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.page-banner .banner-sub {
  font-family: "Inter", sans-serif;
  color: #574237;
  font-size: 1.0625rem;
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.page-banner .banner-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #8b7265;
}
.page-banner .banner-crumb a { color: #8b7265; text-decoration: none; }
.page-banner .banner-crumb a:hover { color: #ff8400; }

/* ── 9. About page specific ────────────────────────────────── */
.about .about-lead {
  font-size: 1.1rem;
  color: #191c1e;
  font-weight: 500;
  line-height: 1.7;
}
.about .perspective-quote {
  background: #ffffff;
  border-left: 4px solid #ff8400;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.about .perspective-quote p {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #191c1e;
  font-style: italic;
  line-height: 1.65;
  margin: 0 0 8px;
}
.about .perspective-quote cite {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: #ff8400;
  letter-spacing: 0.04em;
  font-style: normal;
}
.mvc-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #e6e8ea;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.mvc-card:hover { box-shadow: 0 8px 28px rgba(6,93,183,0.08); }
.mvc-card.orange { border-top: 3px solid #ff8400; }
.mvc-icon {
  width: 48px;
  height: 48px;
  background: #fff4eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.375rem;
  color: #ff8400;
}
.mvc-card h3 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #191c1e;
  margin-bottom: 12px;
}
.mvc-card p {
  font-family: "Inter", sans-serif;
  color: #574237;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}
.approach-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #ff8400;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
}
.step-content h4 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #191c1e;
  margin-bottom: 6px;
}
.step-content p {
  font-family: "Inter", sans-serif;
  color: #574237;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.why-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #f0f4ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #065db7;
}
.why-item h4 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #191c1e;
  margin-bottom: 4px;
}
.why-item p {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #574237;
  line-height: 1.55;
  margin: 0;
}
.approach-section { background: #ffffff; }
.about-cta-strip {
  /* 1. Transparent background instead of solid #d1d1d1 */
  background: rgba(209, 209, 209, 0.25);
  
  /* 2. Frosted glass blur effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  /* 3. Subtle highlight border and soft depth shadow */
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);

  /* Preserved original structure */
  padding: 72px 0;
  text-align: center;
}

.about-cta-strip h2 {
  font-family: "Hanken Grotesk", sans-serif !important;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.about-cta-strip p {
  color: #0a1b31;
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #ff8400;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-cta:hover { background: #e06c14; color: #ffffff; }

/* ── 10. Services page specific ────────────────────────────── */
.division-nav {
  position: sticky;
  top: 62px;
  z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid #e6e8ea;
  padding: 0;
}
.division-nav .container {
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}
.division-nav .container::-webkit-scrollbar { display: none; }
.div-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #574237;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.div-nav-btn i { font-size: 1rem; }
.div-nav-btn:hover { color: #ff8400; border-bottom-color: #ff8400; }
.div-nav-btn.active { color: #ff8400; border-bottom-color: #ff8400; font-weight: 600; }

.services-intro { background: #f7f9fb; padding: 64px 0; }
.services-intro h2 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #191c1e;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.services-intro > .container > .row p {
  font-family: "Inter", sans-serif;
  color: #574237;
  font-size: 1rem;
  line-height: 1.7;
}
.intro-pillars { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #e0e3e5;
  border-radius: 8px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #191c1e;
  text-decoration: none;
  transition: all 0.2s;
}
.intro-pill:hover { border-color: #ff8400; color: #ff8400; }
.intro-pill i { color: #ff8400; }

.division-section { padding: 80px 0; background: #ffffff; }
.division-section.alt { background: #f7f9fb; }

.division-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #fff4eb;
  border: 1px solid rgba(244,123,32,0.3);
  border-radius: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: #994700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.division-badge i { font-size: 0.875rem; color: #ff8400; }

.division-title {
  font-family: "Hanken Grotesk", sans-serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  color: #191c1e !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  margin-bottom: 10px !important;
}
.division-title span { color: #ff8400; }
.division-tagline {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #065db7;
  font-weight: 500;
  margin-bottom: 18px;
}
.division-desc {
  font-family: "Inter", sans-serif;
  color: #574237;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tool-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tool-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: #f0f4ff;
  border: 1px solid #d6e3ff;
  border-radius: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: #065db7;
  letter-spacing: 0.03em;
}

.service-list { list-style: none; padding: 0; margin-bottom: 24px; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f2f4f6;
}
.service-list li:last-child { border-bottom: none; }
.service-list li i { color: #ff8400 !important; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.service-list li strong {
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  color: #191c1e;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}
.service-list li div {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #574237;
  line-height: 1.55;
}


.division-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #ff8400;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 8px;
}
.division-cta:hover { background: #e06c14; color: #ffffff; }
.division-cta.outline {
  background: transparent;
  color: #191c1e;
  border: 1px solid #e0e3e5;
}
.division-cta.outline:hover { background: #f7f9fb; border-color: #ff8400; color: #ff8400; }

.division-img-panel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.division-img-panel img { width: 100%; display: block; border-radius: 16px; }
.division-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,27,49,0.85) 0%, transparent 100%);
  padding: 28px 24px 20px;
}
.overlay-label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.overlay-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.how-steps { list-style: none; padding: 0; }
.how-steps li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #f2f4f6;
}
.how-steps li:last-child { border-bottom: none; }
.step-dot {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #191c1e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
}
.step-body strong {
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #191c1e;
  margin-bottom: 6px;
}
.step-body p { font-family: "Inter", sans-serif; font-size: 0.9375rem; color: #574237; line-height: 1.6; margin: 0; }

.compare-section { background: #2a5298; padding: 72px 0; }
.compare-section .lead { color: #ffffff; font-family: "Inter", sans-serif; font-size: 1rem; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.compare-table thead th {
  background: #191c1e;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 16px 20px;
  text-align: left;
  letter-spacing: 0.02em;
}
.compare-table tbody td {
  padding: 14px 20px;
  color: #0a1b31;
  border-bottom: 1px solid #f2f4f6;
  vertical-align: middle;
  line-height: 1.5;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: #f7f9fb; }
.compare-table tbody tr:hover { background: #fff4eb; }
.compare-table td:nth-child(2) { font-family: "Hanken Grotesk", sans-serif; font-weight: 600; color: #191c1e; }
.compare-table .check { color: #ff8400; margin-right: 6px; }

.final-cta {
  /* 1. Transparent background instead of solid #d1d1d1 */
  background: rgba(209, 209, 209, 0.25);
  
  /* 2. Frosted glass blur effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  /* 3. Subtle highlight border and soft depth shadow */
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);

  /* Preserved original structure */
  padding: 80px 0;
  text-align: center;
}
.final-cta h2 {
  font-family: "Hanken Grotesk", sans-serif !important;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2a5298;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.final-cta p {
  font-family: "Inter", sans-serif;
  color: #0a1b31;
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.final-cta .cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.final-cta .btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff; color: #0a1b31;
  padding: 14px 32px; border-radius: 8px;
  font-family: "Hanken Grotesk", sans-serif; font-weight: 700; font-size: 0.9375rem;
  text-decoration: none; transition: background 0.2s;
}
.final-cta .btn-white:hover { background: #ff8400; color: #0a1b31; }
.final-cta .btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #0a1b31;
  padding: 13px 30px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-family: "Hanken Grotesk", sans-serif; font-weight: 600; font-size: 0.9375rem;
  text-decoration: none; transition: all 0.2s;
}
.final-cta .btn-outline-white:hover { background: rgba(255,255,255,0.12); color: #ff8400; }

/* ── 11. Division cards (index about section) ──────────────── */
.division-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 14px 18px;
  border-left: 4px solid #ff8400;
  background: #ffffff;
  border-radius: 0 8px 8px 0;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.division-card strong {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  color: #191c1e;
  font-size: 0.9375rem;
}
.division-card span { font-size: 0.875rem; color: #574237; line-height: 1.55; }
.about .read-more {
  background: transparent !important;
  color: #ff8400 !important;
  font-family: "Hanken Grotesk", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
  padding: 0 !important;
  border-radius: 0 !important;
  letter-spacing: 0 !important;
}
.about .read-more:hover { background: transparent !important; color: #e06c14 !important; }

/* ── 12. Features / Services tabs (index) ──────────────────── */
.features .nav-link {
  border-radius: 10px !important;
  border: 1px solid #e0e3e5 !important;
  background: #f7f9fb !important;
  color: #191c1e !important;
  font-family: "Hanken Grotesk", sans-serif !important;
  font-weight: 500 !important;
}
.features .nav-link.active,
.features .nav-link.active:focus {
  background: #ff8400 !important;
  color: #ffffff !important;
  border-color: #ff8400 !important;
  box-shadow: 0 4px 12px rgba(244,123,32,0.25) !important;
}
.features .nav-link:hover:not(.active) { border-color: #ff8400 !important; color: #ff8400 !important; }
.features .tab-pane h3 {
  font-family: "Hanken Grotesk", sans-serif !important;
  font-weight: 700 !important;
  color: #191c1e !important;
  letter-spacing: -0.01em !important;
}
.outcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff4eb;
  border: 1px solid rgba(244,123,32,0.35);
  border-radius: 8px;
  color: #994700;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Hanken Grotesk", sans-serif;
  margin-top: 1rem;
}
.outcome-badge i { color: #ff8400; }

/* ── 13. CTA section (index) ───────────────────────────────── */
.call-to-action.section.dark-background {
  --background-color: #005bb5 !important;
  background-color: #005bb5 !important;
}
.call-to-action h3 { font-family: "Hanken Grotesk", sans-serif !important; font-weight: 700 !important; }
.call-to-action .cta-btn {
  background: #ff8400 !important;
  border-radius: 8px !important;
  font-family: "Hanken Grotesk", sans-serif !important;
  font-weight: 600 !important;
  padding: 13px 32px !important;
}
.call-to-action .cta-btn:hover { background: #e06c14 !important; }

/* ── 14. Blog list overrides ───────────────────────────────── */
.blog-posts article {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e6e8ea;
  transition: box-shadow 0.2s;
  padding-bottom: 20px;
}
.blog-posts article:hover { box-shadow: 0 8px 28px rgba(0,91,181,0.08); }
.blog-posts .post-category {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #ff8400 !important;
}
.blog-posts .title a {
  font-family: "Hanken Grotesk", sans-serif !important;
  font-weight: 700 !important;
  color: #191c1e !important;
  letter-spacing: -0.01em !important;
}
.blog-posts .title a:hover { color: #ff8400 !important; }
.blog-posts .post-author { font-family: "Hanken Grotesk", sans-serif !important; font-weight: 600 !important; color: #191c1e !important; }
.blog-posts .post-date { color: #8b7265 !important; }

/* ── 15. Blog details overrides ────────────────────────────── */
.blog-details .title {
  font-family: "Hanken Grotesk", sans-serif !important;
  font-weight: 800 !important;
  color: #191c1e !important;
  letter-spacing: -0.02em !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  line-height: 1.2 !important;
}
.blog-details .content h2,
.blog-details .content h3 {
  font-family: "Hanken Grotesk", sans-serif !important;
  font-weight: 700 !important;
  color: #191c1e !important;
}
.blog-details .content p { font-family: "Inter", sans-serif !important; color: #574237 !important; line-height: 1.75 !important; }
.blog-details .meta-top i { color: #ff8400 !important; }
.blog-details .meta-top a { color: #574237 !important; }
.blog-details .meta-bottom a { color: #ff8400 !important; }
.blog-details .meta-bottom i { color: #8b7265 !important; }
.widgets-container .widget-title { font-family: "Hanken Grotesk", sans-serif !important; font-weight: 700 !important; color: #191c1e !important; }
.categories-widget a, .recent-posts-widget a { color: #574237 !important; }
.categories-widget a:hover, .recent-posts-widget a:hover { color: #ff8400 !important; }
.tags-widget a {
  background: #f7f9fb !important; border: 1px solid #e6e8ea !important;
  color: #191c1e !important; font-family: "JetBrains Mono", monospace !important;
  font-size: 0.72rem !important; border-radius: 6px !important;
}
.tags-widget a:hover { background: #fff4eb !important; border-color: #ff8400 !important; color: #ff8400 !important; }
.comment-form .btn-primary {
  background: #ff8400 !important; border-color: #ff8400 !important;
  font-family: "Hanken Grotesk", sans-serif !important; font-weight: 600 !important;
  border-radius: 8px !important; padding: 11px 28px !important;
}
.comment-form h4 { font-family: "Hanken Grotesk", sans-serif !important; font-weight: 700 !important; color: #191c1e !important; }

/* ── 16. Recent Posts (index) ──────────────────────────────── */
#recent-posts .post-category { font-family: "JetBrains Mono", monospace !important; font-size: 0.72rem !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; color: #ff8400 !important; }
#recent-posts .title a { font-family: "Hanken Grotesk", sans-serif !important; font-weight: 700 !important; color: #191c1e !important; }
#recent-posts .title a:hover { color: #ff8400 !important; }

/* ── 17. Contact (index) ───────────────────────────────────── */
#contact .info-item h3 { font-family: "Hanken Grotesk", sans-serif !important; font-weight: 600 !important; color: #191c1e !important; }
#contact .info-item i { color: #ff8400 !important; }
#contact .php-email-form button { background: #ff8400 !important; border-radius: 8px !important; font-family: "Hanken Grotesk", sans-serif !important; font-weight: 600 !important; }
#contact .form-control:focus { border-color: #005bb5 !important; box-shadow: 0 0 0 2px rgba(6,93,183,0.15) !important; }

/* ── 18. Mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .page-banner { padding: 90px 0 36px; }
  .hero-outer { padding: 76px 0.75rem 2rem; }
  .division-section { padding: 56px 0; }
  .division-img-panel { margin-bottom: 32px; }
  .about-cta-strip, .final-cta, .compare-section { padding: 56px 0; }
  .division-cta.outline { margin-left: 0 !important; margin-top: 8px; }
  .final-cta .btn-outline-white { margin-left: 0; }
}